Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

is-arguments.js 402B

12345678910111213141516
  1. "use strict";
  2. var getClass = require("./get-class");
  3. /**
  4. * Returns `true` when `object` is an `arguments` object, `false` otherwise
  5. *
  6. * @alias module:samsam.isArguments
  7. * @param {*} object - The object to examine
  8. * @returns {boolean} `true` when `object` is an `arguments` object
  9. */
  10. function isArguments(object) {
  11. return getClass(object) === "Arguments";
  12. }
  13. module.exports = isArguments;