Sha256: c44545562ac6784522ccae12c33cabc8b88caf8e1f1e01d93e364a0d90594d84

Contents?: true

Size: 1.14 KB

Versions: 8

Compression:

Stored size: 1.14 KB

Contents

/*!
 * Chai - addMethod utility
 * Copyright(c) 2012-2014 Jake Luer <jake@alogicalparadox.com>
 * MIT Licensed
 */

var config = require('../config');

/**
 * ### .addMethod (ctx, name, method)
 *
 * Adds a method to the prototype of an object.
 *
 *     utils.addMethod(chai.Assertion.prototype, 'foo', function (str) {
 *       var obj = utils.flag(this, 'object');
 *       new chai.Assertion(obj).to.be.equal(str);
 *     });
 *
 * Can also be accessed directly from `chai.Assertion`.
 *
 *     chai.Assertion.addMethod('foo', fn);
 *
 * Then can be used as any other assertion.
 *
 *     expect(fooStr).to.be.foo('bar');
 *
 * @param {Object} ctx object to which the method is added
 * @param {String} name of method to add
 * @param {Function} method function to be used for name
 * @name addMethod
 * @api public
 */
var flag = require('./flag');

module.exports = function (ctx, name, method) {
  ctx[name] = function () {
    var old_ssfi = flag(this, 'ssfi');
    if (old_ssfi && config.includeStack === false)
      flag(this, 'ssfi', ctx[name]);
    var result = method.apply(this, arguments);
    return result === undefined ? this : result;
  };
};

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ende-0.5.22 components/indefinido/indemma/master/components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.21 components/indefinido/indemma/master/components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.6 components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.5 components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.4 components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.3 components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.2 components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js
ende-0.5.1 components/chaijs/chai/1.9.1/lib/chai/utils/addMethod.js