doipjs/node_modules/@sinonjs/samsam/lib/create-matcher/is-matcher.js

19 lines
437 B
JavaScript
Raw Normal View History

2020-10-23 14:35:53 -06:00
"use strict";
var isPrototypeOf = require("@sinonjs/commons").prototypes.object.isPrototypeOf;
var matcherPrototype = require("./matcher-prototype");
/**
* Returns `true` when `object` is a matcher
*
* @private
* @param {*} object A value to examine
* @returns {boolean} Returns `true` when `object` is a matcher
*/
function isMatcher(object) {
return isPrototypeOf(matcherPrototype, object);
}
module.exports = isMatcher;