to-string.js 273 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var is_nil_1 = require("./is-nil");
  4. exports.default = (function (value) {
  5. if (is_nil_1.default(value))
  6. return '';
  7. return value.toString();
  8. });
  9. //# sourceMappingURL=to-string.js.map