prc b6c02717e6 Upload complete no-internet building environment. | пре 1 година | |
---|---|---|
.. | ||
test | пре 1 година | |
.eslintrc | пре 1 година | |
CHANGELOG.md | пре 1 година | |
LICENSE | пре 1 година | |
README.md | пре 1 година | |
index.js | пре 1 година | |
package.json | пре 1 година |
A helper to optimistically set Symbol.toStringTag, when possible.
Most common usage:
var assert = require('assert');
var setToStringTag = require('es-set-tostringtag');
var obj = {};
assert.equal(Object.prototype.toString.call(obj), '[object Object]');
setToStringTag(obj, 'tagged!');
assert.equal(Object.prototype.toString.call(obj), '[object tagged!]');
Simply clone the repo, npm install
, and run npm test