tag-reg
v0.0.1
Published
JavaScript структура данных для хранения записей вида ключ-значение, где ключ - это набор тегов.
Downloads
2
Readme
Пример использования
var dataStore = new TagRegistry();
dataStore.set(["K1", "K2"], "AAA");
console.log(dataStore.get(["K1", "K2"])); // AAA
console.log(dataStore.get(["K2", "K1"])); // AAA
dataStore.set(["K1", "K3", "K2"], "BBB");
console.log(dataStore.get(["K1", "K2", "K3"])); // BBB
console.log(dataStore.get(["K1", "K3", "K2"])); // BBB
console.log(dataStore.get(["K2", "K1", "K3"])); // BBB
console.log(dataStore.get(["K2", "K3", "K1"])); // BBB
console.log(dataStore.get(["K3", "K1", "K2"])); // BBB
console.log(dataStore.get(["K3", "K2", "K1"])); // BBB
Вывод:
$ node example1.js
AAA
AAA
BBB
BBB
BBB
BBB
BBB
BBB