gofish-graphics 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5457,11 +5457,8 @@ class Sn {
|
|
|
5457
5457
|
}) {
|
|
5458
5458
|
return fu(i, { width: r, height: a, transform: f, debug: l, defs: g, axes: h }, this);
|
|
5459
5459
|
}
|
|
5460
|
-
|
|
5461
|
-
return this._name;
|
|
5462
|
-
}
|
|
5463
|
-
set name(i) {
|
|
5464
|
-
this._name = i;
|
|
5460
|
+
name(i) {
|
|
5461
|
+
return this._name = i, this;
|
|
5465
5462
|
}
|
|
5466
5463
|
}
|
|
5467
5464
|
const hd = (s) => "intrinsicDims" in s && "transform" in s && "dims" in s, cu = (s, i = "") => {
|