uawdijnntqw1x1x1
IP : 216.73.216.55
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
yapwebtv.com
/
..
/
talentgenesis_admin_backend
/
node_modules
/
is-expression
/
README.md
/
/
# is-expression Validates a string as a JavaScript expression [](https://travis-ci.org/pugjs/is-expression) [](https://david-dm.org/pugjs/is-expression) [](https://rollingversions.com/pugjs/is-expression) [](https://www.npmjs.org/package/is-expression) ## Installation npm install is-expression ## Usage ### `isExpression(src[, options])` Validates a string as a JavaScript expression. `src` contains the source. `options` can contain any Acorn options (since we use Acorn under-the-hood), or any of the following: - `throw`: Throw an error if the string is not an expression. The error can be an Acorn error, with location information in `err.loc` and `err.pos`. Defaults to `false`. - `strict`: Use strict mode when trying to parse the string. Defaults to `false`. Even if this option is `false`, if you have provided `options.sourceType === 'module'` which imples strict mode under ES2015, strict mode will be used. - `lineComment`: When `true`, allows line comments in the expression. Defaults to `false` for safety. See the examples below for usage. ## Examples ```js var isExpression = require('is-expression') isExpression('myVar') //=> true isExpression('var') //=> false isExpression('["an", "array", "\'s"].indexOf("index")') //=> true isExpression('var', {throw: true}) // SyntaxError: Unexpected token (1:0) // at Parser.pp.raise (acorn/dist/acorn.js:940:13) // at ... isExpression('public') //=> true isExpression('public', {strict: true}) //=> false isExpression('abc // my comment') //=> false isExpression('abc // my comment', {lineComment: true}) //=> true ``` ## License MIT
/var/www/yapwebtv.com/../talentgenesis_admin_backend/node_modules/is-expression/README.md