mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
42 lines
1.7 KiB
JavaScript
42 lines
1.7 KiB
JavaScript
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
import _inherits from "@babel/runtime/helpers/inherits";
|
|
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
|
|
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
|
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
// Published as 'yaml/scalar'
|
|
import { toJSON as _toJSON } from '../toJSON';
|
|
import { Node } from './Node';
|
|
export var Scalar = /*#__PURE__*/function (_Node) {
|
|
_inherits(Scalar, _Node);
|
|
|
|
var _super = _createSuper(Scalar);
|
|
|
|
function Scalar(value) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, Scalar);
|
|
|
|
_this = _super.call(this);
|
|
_this.value = value;
|
|
return _this;
|
|
}
|
|
|
|
_createClass(Scalar, [{
|
|
key: "toJSON",
|
|
value: function toJSON(arg, ctx) {
|
|
return ctx && ctx.keep ? this.value : _toJSON(this.value, arg, ctx);
|
|
}
|
|
}, {
|
|
key: "toString",
|
|
value: function toString() {
|
|
return String(this.value);
|
|
}
|
|
}]);
|
|
|
|
return Scalar;
|
|
}(Node); |