_.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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
_.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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.