23 lines
751 B
JavaScript
23 lines
751 B
JavaScript
"use strict";
|
|
|
|
var walk = require("./util/core/walk");
|
|
var getPropertyDescriptor = require("./util/core/get-property-descriptor");
|
|
var hasOwnProperty = require("@sinonjs/commons").prototypes.object.hasOwnProperty;
|
|
var push = require("@sinonjs/commons").prototypes.array.push;
|
|
|
|
function collectMethod(methods, object, prop, propOwner) {
|
|
if (typeof getPropertyDescriptor(propOwner, prop).value === "function" && hasOwnProperty(object, prop)) {
|
|
push(methods, object[prop]);
|
|
}
|
|
}
|
|
|
|
// This function returns an array of all the own methods on the passed object
|
|
function collectOwnMethods(object) {
|
|
var methods = [];
|
|
|
|
walk(object, collectMethod.bind(null, methods, object));
|
|
|
|
return methods;
|
|
}
|
|
|
|
module.exports = collectOwnMethods;
|