expression.cjs 201 B

1234567891011
  1. 'use strict';
  2. // legacy IE function
  3. // expression( <any-value> )
  4. function expressionFn() {
  5. return this.createSingleNodeList(
  6. this.Raw(null, false)
  7. );
  8. }
  9. module.exports = expressionFn;