biofriction-wp-theme/node_modules/es5-ext/function/is-arguments.js

13 lines
211 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
"use strict";
var objToString = Object.prototype.toString
, id = objToString.call(
(function () {
return arguments;
})()
);
module.exports = function (value) {
return objToString.call(value) === id;
};