1. with
Compile time `with` for strict mode JavaScript
with
Package: with
Created by: pugjs
Last modified: Wed, 29 Jun 2022 02:41:51 GMT
Version: 7.0.2
License: MIT
Downloads: 7,663,657
Repository: https://github.com/pugjs/with

Install

npm install with
yarn add with

with

Compile time with for strict mode JavaScript

Build Status
Rolling Versions
NPM version

Installation

$ npm install with

Usage

 var addWith = require('with');

addWith('obj', 'console.log(a)');
// => ';(function (console, a) {
//       console.log(a)
//     }("console" in obj ? obj.console :
//                          typeof console!=="undefined" ? console : undefined,
//       "a" in obj ? obj.a :
//                    typeof a !== "undefined" ? a : undefined));'

addWith('obj', 'console.log(a)', ['console']);
// => ';(function (console, a) {
//       console.log(a)
//     }("a" in obj ? obj.a :
//                    typeof a !== "undefined" ? a : undefined));'

API

addWith(obj, src[, exclude])

The idea is that this is roughly equivallent to:

 with (obj) {
  src;
}

There are a few differences though. For starters, assignments to variables will always remain contained within the with block.

e.g.

 var foo = 'foo';
with ({}) {
  foo = 'bar';
}
assert(foo === 'bar'); // => This fails for compile time with but passes for native with

var obj = {foo: 'foo'};
with ({}) {
  foo = 'bar';
}
assert(obj.foo === 'bar'); // => This fails for compile time with but passes for native with

It also makes everything be declared, so you can always do:

 if (foo === undefined)

instead of

 if (typeof foo === 'undefined')

This is not the case if foo is in exclude. If a variable is excluded, we ignore it entirely. This is useful if you know a variable will be global as it can lead to efficiency improvements.

It is also safe to use in strict mode (unlike with) and it minifies properly (with disables virtually all minification).

Parsing Errors

with internally uses babylon to parse code passed to addWith. If babylon throws an error, probably due to a syntax error, addWith returns an error wrapping the babylon error, so you can
retrieve location information. error.component is "src" if the error is in the body or "obj" if it's in the object part of the with expression. error.babylonError is
the error thrown from babylon.

License

MIT

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code