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.un-this.js 352B

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