mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-16 02:58:23 -05:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
"use strict";
|
|
|
|
var objToString = Object.prototype.toString
|
|
, id = objToString.call((function () { return arguments; })());
|
|
|
|
module.exports = function (value) { return objToString.call(value) === id; };
|