expression.js 156 B

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