You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nathan Steel 84b28d60b2 Add NPM build config 3 years ago
..
test Add NPM build config 3 years ago
.eslintrc Add NPM build config 3 years ago
CHANGELOG.md Add NPM build config 3 years ago
LICENSE Add NPM build config 3 years ago
README.md Add NPM build config 3 years ago
index.js Add NPM build config 3 years ago
package.json Add NPM build config 3 years ago

README.md

es-set-tostringtag Version Badge

github actions coverage License Downloads

npm badge

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!]');

Tests

Simply clone the repo, npm install, and run npm test