mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-04-22 22:29:05 +00:00
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
'use strict';
|
|
|
|
// legacy IE function
|
|
// expression( <any-value> )
|
|
function expressionFn() {
|
|
return this.createSingleNodeList(
|
|
this.Raw(this.tokenIndex, null, false)
|
|
);
|
|
}
|
|
|
|
module.exports = expressionFn;
|