_.runInContext

_.runInContext([context=root])

Create a new pristine lodash function using the context object.

Since

1.1.0

Arguments

  1. [context=root] (Object): The context object.

Returns

(Function): Returns a new lodash function.

Example

_.mixin({ 'foo': _.constant('foo') });
 

var lodash = _.runInContext();
lodash.mixin({ 'bar': lodash.constant('bar') });
 
_.isFunction(_.foo);
// => true
_.isFunction(_.bar);
// => false
 
lodash.isFunction(lodash.foo);
// => false
lodash.isFunction(lodash.bar);
// => true
 
// Create a suped-up `defer` in Node.js.

var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;
doc_Lodash
2016-11-27 16:40:11
Comments
Leave a Comment

Please login to continue.