Initial commit

This commit is contained in:
Arnaud Nelissen
2021-07-16 10:18:13 +02:00
commit 3af7ddab06
5894 changed files with 590836 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
env:
mocha: true
rules:
no-unused-vars: off
+1879
View File
File diff suppressed because it is too large Load Diff
+30
View File
@@ -0,0 +1,30 @@
'use strict';
const assert = require('assert');
const stringToParts = require('../lib/stringToParts');
describe('stringToParts', function() {
it('handles brackets for numbers', function() {
assert.deepEqual(stringToParts('list[0].name'), ['list', '0', 'name']);
assert.deepEqual(stringToParts('list[0][1].name'), ['list', '0', '1', 'name']);
});
it('handles dot notation', function() {
assert.deepEqual(stringToParts('a.b.c'), ['a', 'b', 'c']);
assert.deepEqual(stringToParts('a..b.d'), ['a', '', 'b', 'd']);
});
it('ignores invalid numbers in square brackets', function() {
assert.deepEqual(stringToParts('foo[1mystring]'), ['foo[1mystring]']);
assert.deepEqual(stringToParts('foo[1mystring].bar[1]'), ['foo[1mystring]', 'bar', '1']);
assert.deepEqual(stringToParts('foo[1mystring][2]'), ['foo[1mystring]', '2']);
});
it('handles empty string', function() {
assert.deepEqual(stringToParts(''), ['']);
});
it('handles trailing dot', function() {
assert.deepEqual(stringToParts('a.b.'), ['a', 'b', '']);
});
});