mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
9 lines
188 B
JavaScript
Vendored
9 lines
188 B
JavaScript
Vendored
var ALLOW_OF_CLAUSE = true;
|
|
|
|
module.exports = {
|
|
parse: function nthWithOfClause() {
|
|
return this.createSingleNodeList(
|
|
this.Nth(ALLOW_OF_CLAUSE)
|
|
);
|
|
}
|
|
};
|