Files
2023-08-01 13:49:46 +02:00

11 lines
222 B
JavaScript

var List = require('../../../utils/list');
var DISALLOW_OF_CLAUSE = false;
module.exports = {
parse: function nth() {
return new List().appendData(
this.Nth(DISALLOW_OF_CLAUSE)
);
}
};