ship-gis/node_modules/core-js-pure/internals/function-demethodize.js

8 lines
216 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
'use strict';
var uncurryThis = require('../internals/function-uncurry-this');
var aCallable = require('../internals/a-callable');
module.exports = function demethodize() {
return uncurryThis(aCallable(this));
};