Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

classof-raw.js 242B

123456789
  1. 'use strict';
  2. var uncurryThis = require('../internals/function-uncurry-this');
  3. var toString = uncurryThis({}.toString);
  4. var stringSlice = uncurryThis(''.slice);
  5. module.exports = function (it) {
  6. return stringSlice(toString(it), 8, -1);
  7. };