examTeamApp/node_modules/core-js/internals/function-demethodize.js

8 lines
216 B
JavaScript
Raw Permalink Normal View History

2024-09-27 17:35:10 +08:00
'use strict';
var uncurryThis = require('../internals/function-uncurry-this');
var aCallable = require('../internals/a-callable');
module.exports = function demethodize() {
return uncurryThis(aCallable(this));
};