mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-20 19:09:12 +08:00
11 lines
218 B
Text
11 lines
218 B
Text
'use strict';
|
|
|
|
// legacy IE function
|
|
// expression( <any-value> )
|
|
function expressionFn() {
|
|
return this.createSingleNodeList(
|
|
this.Raw(this.tokenIndex, null, false)
|
|
);
|
|
}
|
|
|
|
module.exports = expressionFn;
|