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.

esnext.function.demethodize.js 308B

123456789
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var demethodize = require('../internals/function-demethodize');
  4. // `Function.prototype.demethodize` method
  5. // https://github.com/js-choi/proposal-function-demethodize
  6. $({ target: 'Function', proto: true, forced: true }, {
  7. demethodize: demethodize
  8. });