caoge c760052ff9 机车状态修改 | 8 meses atrás | |
---|---|---|
.. | ||
test | 8 meses atrás | |
.eslintrc | 8 meses atrás | |
CHANGELOG.md | 8 meses atrás | |
LICENSE | 8 meses atrás | |
README.md | 8 meses atrás | |
index.js | 8 meses atrás | |
package.json | 8 meses atrás |
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