UNPKG

a_mock

Version:

Sub package of a. Mocking framework

19 lines (11 loc) 260 B
function mutableAnd() { var and = require('./and'); function execute() { return and.apply(null,arguments); } execute.add = function() { and = and.add.apply(null,arguments); }; return execute; } module.exports = mutableAnd;