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-matcher.js 437B

123456789101112131415161718
  1. "use strict";
  2. var isPrototypeOf = require("@sinonjs/commons").prototypes.object.isPrototypeOf;
  3. var matcherPrototype = require("./matcher-prototype");
  4. /**
  5. * Returns `true` when `object` is a matcher
  6. *
  7. * @private
  8. * @param {*} object A value to examine
  9. * @returns {boolean} Returns `true` when `object` is a matcher
  10. */
  11. function isMatcher(object) {
  12. return isPrototypeOf(matcherPrototype, object);
  13. }
  14. module.exports = isMatcher;