All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.helpers.toPrimitive.js Maven / Gradle / Ivy

The newest version!
var _typeof = require("./typeof.js")["default"];
function toPrimitive(t, r) {
  if ("object" != _typeof(t) || !t) return t;
  var e = t[Symbol.toPrimitive];
  if (void 0 !== e) {
    var i = e.call(t, r || "default");
    if ("object" != _typeof(i)) return i;
    throw new TypeError("@@toPrimitive must return a primitive value.");
  }
  return ("string" === r ? String : Number)(t);
}
module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy