expression.js 184 B

1234567
  1. // legacy IE function
  2. // expression( <any-value> )
  3. module.exports = function() {
  4. return this.createSingleNodeList(
  5. this.Raw(this.scanner.tokenIndex, null, false)
  6. );
  7. };