/
dany
/
ReshenijaBotInformationSite
Обзор
Документация
Войти
/
dany
/
ReshenijaBotInformationSite
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/jsonpath/include/module.js
34 строки
585 B
Daniil
Initial commit
31 окт 2023, 01:10
31 окт 2023, 01:10
a171ae1
Код
Авторство
О чём код?
var _ast = { initialize: function() { this._nodes = []; this._node = {}; this._stash = []; }, set: function(props) { for (var k in props) this._node[k] = props[k]; return this._node; }, node: function(obj) { if (arguments.length) this._node = obj; return this._node; }, push: function() { this._nodes.push(this._node); this._node = {}; }, unshift: function() { this._nodes.unshift(this._node); this._node = {}; }, yield: function() { var _nodes = this._nodes; this.initialize(); return _nodes; } };