mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 11:17:44 +00:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
// legacy IE function
|
||
|
|
// expression( <any-value> )
|
||
|
|
function expressionFn() {
|
||
|
|
return this.createSingleNodeList(
|
||
|
|
this.Raw(null, false)
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = expressionFn;
|