From c9659637c0fb6600c237e59ec84023ce51b06f26 Mon Sep 17 00:00:00 2001 From: "LAPTOP-4ONCPGNL\\Mtran" Date: Sat, 16 Nov 2019 11:39:25 +1100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Critical=20bug=20fix=20of?= =?UTF-8?q?=20NPM=20imports=20not=20working?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docs/ast/source/AjaxDatasource.js.json | 11944 +++---- .../docs/ast/source/ArrayDatasource.js.json | 7088 ++-- .../docs/ast/source/DatasourceBase.js.json | 4408 +-- .../docs/ast/source/QueryBuilder.js.json | 7752 ++-- .../js/AjaxDatasource.js~AjaxDatasource.html | 32 +- .../ArrayDatasource.js~ArrayDatasource.html | 73 +- .../js/DatasourceBase.js~DatasourceBase.html | 8 +- .../js/QueryBuilder.js~QueryBuilder.html | 33 +- .../docs/file/js/AjaxDatasource.js.html | 12 +- .../docs/file/js/ArrayDatasource.js.html | 59 + .../docs/file/js/DatasourceBase.js.html | 12 +- .../docs/file/js/QueryBuilder.js.html | 13 + .../docs/index.html | 250 +- .../docs/index.json | 94 +- .../docs/manual/development.html | 15 +- .../docs/manual/index.html | 250 +- .../docs/manual/installation.html | 8 + .../docs/manual/usage.html | 260 +- .../docs/source.html | 22 +- .../manual/development.md | 7 +- .../manual/usage.md | 261 + .../lib/index.js | 297 +- projects/mitch-datasource/.npmignore | 1 - projects/mitch-datasource/dest/js/index.js | 27928 +++++++-------- .../mitch-datasource/dest/js/index.min.js | 1617 +- projects/mitch-datasource/lib/index.js | 29603 +++++++--------- .../mitch-datasource/src/js/AjaxDatasource.js | 12 +- .../src/js/ArrayDatasource.js | 59 + .../mitch-datasource/src/js/DatasourceBase.js | 12 +- .../mitch-datasource/src/js/QueryBuilder.js | 13 + projects/mitch-datasource/webpack.config.js | 4 +- 31 files changed, 43871 insertions(+), 48276 deletions(-) diff --git a/projects/mitch-datasource-documentation/docs/ast/source/AjaxDatasource.js.json b/projects/mitch-datasource-documentation/docs/ast/source/AjaxDatasource.js.json index 67ff559..61af42d 100644 --- a/projects/mitch-datasource-documentation/docs/ast/source/AjaxDatasource.js.json +++ b/projects/mitch-datasource-documentation/docs/ast/source/AjaxDatasource.js.json @@ -1,28 +1,28 @@ { "type": "File", "start": 0, - "end": 7005, + "end": 7240, "loc": { "start": { "line": 1, "column": 0 }, "end": { - "line": 256, + "line": 266, "column": 0 } }, "program": { "type": "Program", "start": 0, - "end": 7005, + "end": 7240, "loc": { "start": { "line": 1, "column": 0 }, "end": { - "line": 256, + "line": 266, "column": 0 } }, @@ -237,16 +237,16 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to this library\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to the datasource package,\n * // it's not actually part of Axios\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 118, - "end": 1804, + "end": 2039, "loc": { "start": { "line": 5, "column": 0 }, "end": { - "line": 56, + "line": 66, "column": 3 } } @@ -255,29 +255,29 @@ }, { "type": "Identifier", - "start": 1805, - "end": 6629, + "start": 2040, + "end": 6864, "loc": { "start": { - "line": 57, + "line": 67, "column": 0 }, "end": { - "line": 239, + "line": 249, "column": 1 } }, "id": { "type": "Identifier", - "start": 1811, - "end": 1825, + "start": 2046, + "end": 2060, "loc": { "start": { - "line": 57, + "line": 67, "column": 6 }, "end": { - "line": 57, + "line": 67, "column": 20 }, "identifierName": "AjaxDatasource" @@ -287,15 +287,15 @@ }, "superClass": { "type": "Identifier", - "start": 1834, - "end": 1848, + "start": 2069, + "end": 2083, "loc": { "start": { - "line": 57, + "line": 67, "column": 29 }, "end": { - "line": 57, + "line": 67, "column": 43 }, "identifierName": "DatasourceBase" @@ -304,30 +304,30 @@ }, "body": { "type": "ClassBody", - "start": 1849, - "end": 6629, + "start": 2084, + "end": 6864, "loc": { "start": { - "line": 57, + "line": 67, "column": 44 }, "end": { - "line": 239, + "line": 249, "column": 1 } }, "body": [ { "type": "ClassMethod", - "start": 2292, - "end": 3802, + "start": 2527, + "end": 4037, "loc": { "start": { - "line": 71, + "line": 81, "column": 2 }, "end": { - "line": 134, + "line": 144, "column": 3 } }, @@ -335,15 +335,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2292, - "end": 2303, + "start": 2527, + "end": 2538, "loc": { "start": { - "line": 71, + "line": 81, "column": 2 }, "end": { - "line": 71, + "line": 81, "column": 13 }, "identifierName": "constructor" @@ -359,29 +359,29 @@ "params": [ { "type": "AssignmentPattern", - "start": 2304, - "end": 2316, + "start": 2539, + "end": 2551, "loc": { "start": { - "line": 71, + "line": 81, "column": 14 }, "end": { - "line": 71, + "line": 81, "column": 26 } }, "left": { "type": "Identifier", - "start": 2304, - "end": 2311, + "start": 2539, + "end": 2546, "loc": { "start": { - "line": 71, + "line": 81, "column": 14 }, "end": { - "line": 71, + "line": 81, "column": 21 }, "identifierName": "options" @@ -390,15 +390,15 @@ }, "right": { "type": "ObjectExpression", - "start": 2314, - "end": 2316, + "start": 2549, + "end": 2551, "loc": { "start": { - "line": 71, + "line": 81, "column": 24 }, "end": { - "line": 71, + "line": 81, "column": 26 } }, @@ -408,74 +408,74 @@ ], "body": { "type": "BlockStatement", - "start": 2318, - "end": 3802, + "start": 2553, + "end": 4037, "loc": { "start": { - "line": 71, + "line": 81, "column": 28 }, "end": { - "line": 134, + "line": 144, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 2324, - "end": 2347, + "start": 2559, + "end": 2582, "loc": { "start": { - "line": 72, + "line": 82, "column": 4 }, "end": { - "line": 72, + "line": 82, "column": 27 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 2328, - "end": 2346, + "start": 2563, + "end": 2581, "loc": { "start": { - "line": 72, + "line": 82, "column": 8 }, "end": { - "line": 72, + "line": 82, "column": 26 } }, "id": { "type": "ObjectPattern", - "start": 2328, - "end": 2336, + "start": 2563, + "end": 2571, "loc": { "start": { - "line": 72, + "line": 82, "column": 8 }, "end": { - "line": 72, + "line": 82, "column": 16 } }, "properties": [ { "type": "ObjectProperty", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 } }, @@ -484,15 +484,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 }, "identifierName": "ajax" @@ -501,15 +501,15 @@ }, "value": { "type": "Identifier", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 }, "identifierName": "ajax" @@ -524,15 +524,15 @@ }, "init": { "type": "Identifier", - "start": 2339, - "end": 2346, + "start": 2574, + "end": 2581, "loc": { "start": { - "line": 72, + "line": 82, "column": 19 }, "end": { - "line": 72, + "line": 82, "column": 26 }, "identifierName": "options" @@ -545,43 +545,43 @@ }, { "type": "IfStatement", - "start": 2352, - "end": 2489, + "start": 2587, + "end": 2724, "loc": { "start": { - "line": 73, + "line": 83, "column": 4 }, "end": { - "line": 78, + "line": 88, "column": 5 } }, "test": { "type": "LogicalExpression", - "start": 2356, - "end": 2388, + "start": 2591, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 8 }, "end": { - "line": 73, + "line": 83, "column": 40 } }, "left": { "type": "Identifier", - "start": 2356, - "end": 2360, + "start": 2591, + "end": 2595, "loc": { "start": { - "line": 73, + "line": 83, "column": 8 }, "end": { - "line": 73, + "line": 83, "column": 12 }, "identifierName": "ajax" @@ -591,29 +591,29 @@ "operator": "&&", "right": { "type": "BinaryExpression", - "start": 2364, - "end": 2388, + "start": 2599, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 16 }, "end": { - "line": 73, + "line": 83, "column": 40 } }, "left": { "type": "UnaryExpression", - "start": 2364, - "end": 2375, + "start": 2599, + "end": 2610, "loc": { "start": { - "line": 73, + "line": 83, "column": 16 }, "end": { - "line": 73, + "line": 83, "column": 27 } }, @@ -621,15 +621,15 @@ "prefix": true, "argument": { "type": "Identifier", - "start": 2371, - "end": 2375, + "start": 2606, + "end": 2610, "loc": { "start": { - "line": 73, + "line": 83, "column": 23 }, "end": { - "line": 73, + "line": 83, "column": 27 }, "identifierName": "ajax" @@ -643,15 +643,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 2380, - "end": 2388, + "start": 2615, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 32 }, "end": { - "line": 73, + "line": 83, "column": 40 } }, @@ -665,59 +665,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 2390, - "end": 2489, + "start": 2625, + "end": 2724, "loc": { "start": { - "line": 73, + "line": 83, "column": 42 }, "end": { - "line": 78, + "line": 88, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 2398, - "end": 2483, + "start": 2633, + "end": 2718, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 77, + "line": 87, "column": 8 } }, "expression": { "type": "AssignmentExpression", - "start": 2398, - "end": 2482, + "start": 2633, + "end": 2717, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 77, + "line": 87, "column": 7 } }, "operator": "=", "left": { "type": "Identifier", - "start": 2398, - "end": 2402, + "start": 2633, + "end": 2637, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 74, + "line": 84, "column": 10 }, "identifierName": "ajax" @@ -726,86 +726,86 @@ }, "right": { "type": "ObjectExpression", - "start": 2405, - "end": 2482, + "start": 2640, + "end": 2717, "loc": { "start": { - "line": 74, + "line": 84, "column": 13 }, "end": { - "line": 77, + "line": 87, "column": 7 } }, "properties": [ { "type": "SpreadProperty", - "start": 2415, - "end": 2456, + "start": 2650, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 8 }, "end": { - "line": 75, + "line": 85, "column": 49 } }, "argument": { "type": "MemberExpression", - "start": 2418, - "end": 2456, + "start": 2653, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 49 } }, "object": { "type": "MemberExpression", - "start": 2418, - "end": 2451, + "start": 2653, + "end": 2686, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 44 } }, "object": { "type": "MemberExpression", - "start": 2418, - "end": 2442, + "start": 2653, + "end": 2677, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 35 } }, "object": { "type": "Identifier", - "start": 2418, - "end": 2432, + "start": 2653, + "end": 2667, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 25 }, "identifierName": "AjaxDatasource" @@ -814,15 +814,15 @@ }, "property": { "type": "Identifier", - "start": 2433, - "end": 2442, + "start": 2668, + "end": 2677, "loc": { "start": { - "line": 75, + "line": 85, "column": 26 }, "end": { - "line": 75, + "line": 85, "column": 35 }, "identifierName": "prototype" @@ -833,15 +833,15 @@ }, "property": { "type": "Identifier", - "start": 2443, - "end": 2451, + "start": 2678, + "end": 2686, "loc": { "start": { - "line": 75, + "line": 85, "column": 36 }, "end": { - "line": 75, + "line": 85, "column": 44 }, "identifierName": "defaults" @@ -852,15 +852,15 @@ }, "property": { "type": "Identifier", - "start": 2452, - "end": 2456, + "start": 2687, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 45 }, "end": { - "line": 75, + "line": 85, "column": 49 }, "identifierName": "ajax" @@ -872,29 +872,29 @@ }, { "type": "SpreadProperty", - "start": 2466, - "end": 2473, + "start": 2701, + "end": 2708, "loc": { "start": { - "line": 76, + "line": 86, "column": 8 }, "end": { - "line": 76, + "line": 86, "column": 15 } }, "argument": { "type": "Identifier", - "start": 2469, - "end": 2473, + "start": 2704, + "end": 2708, "loc": { "start": { - "line": 76, + "line": 86, "column": 11 }, "end": { - "line": 76, + "line": 86, "column": 15 }, "identifierName": "ajax" @@ -913,44 +913,44 @@ }, { "type": "VariableDeclaration", - "start": 2495, - "end": 2599, + "start": 2730, + "end": 2834, "loc": { "start": { - "line": 80, + "line": 90, "column": 4 }, "end": { - "line": 84, + "line": 94, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 2501, - "end": 2598, + "start": 2736, + "end": 2833, "loc": { "start": { - "line": 80, + "line": 90, "column": 10 }, "end": { - "line": 84, + "line": 94, "column": 5 } }, "id": { "type": "Identifier", - "start": 2501, - "end": 2514, + "start": 2736, + "end": 2749, "loc": { "start": { - "line": 80, + "line": 90, "column": 10 }, "end": { - "line": 80, + "line": 90, "column": 23 }, "identifierName": "mergedOptions" @@ -959,72 +959,72 @@ }, "init": { "type": "ObjectExpression", - "start": 2517, - "end": 2598, + "start": 2752, + "end": 2833, "loc": { "start": { - "line": 80, + "line": 90, "column": 26 }, "end": { - "line": 84, + "line": 94, "column": 5 } }, "properties": [ { "type": "SpreadProperty", - "start": 2525, - "end": 2561, + "start": 2760, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 6 }, "end": { - "line": 81, + "line": 91, "column": 42 } }, "argument": { "type": "MemberExpression", - "start": 2528, - "end": 2561, + "start": 2763, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 42 } }, "object": { "type": "MemberExpression", - "start": 2528, - "end": 2552, + "start": 2763, + "end": 2787, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 33 } }, "object": { "type": "Identifier", - "start": 2528, - "end": 2542, + "start": 2763, + "end": 2777, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 23 }, "identifierName": "AjaxDatasource" @@ -1033,15 +1033,15 @@ }, "property": { "type": "Identifier", - "start": 2543, - "end": 2552, + "start": 2778, + "end": 2787, "loc": { "start": { - "line": 81, + "line": 91, "column": 24 }, "end": { - "line": 81, + "line": 91, "column": 33 }, "identifierName": "prototype" @@ -1052,15 +1052,15 @@ }, "property": { "type": "Identifier", - "start": 2553, - "end": 2561, + "start": 2788, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 34 }, "end": { - "line": 81, + "line": 91, "column": 42 }, "identifierName": "defaults" @@ -1072,29 +1072,29 @@ }, { "type": "SpreadProperty", - "start": 2569, - "end": 2579, + "start": 2804, + "end": 2814, "loc": { "start": { - "line": 82, + "line": 92, "column": 6 }, "end": { - "line": 82, + "line": 92, "column": 16 } }, "argument": { "type": "Identifier", - "start": 2572, - "end": 2579, + "start": 2807, + "end": 2814, "loc": { "start": { - "line": 82, + "line": 92, "column": 9 }, "end": { - "line": 82, + "line": 92, "column": 16 }, "identifierName": "options" @@ -1104,15 +1104,15 @@ }, { "type": "ObjectProperty", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 } }, @@ -1121,15 +1121,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 }, "identifierName": "ajax" @@ -1138,15 +1138,15 @@ }, "value": { "type": "Identifier", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 }, "identifierName": "ajax" @@ -1165,43 +1165,43 @@ }, { "type": "ExpressionStatement", - "start": 2605, - "end": 2626, + "start": 2840, + "end": 2861, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 25 } }, "expression": { "type": "CallExpression", - "start": 2605, - "end": 2625, + "start": 2840, + "end": 2860, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 24 } }, "callee": { "type": "Super", - "start": 2605, - "end": 2610, + "start": 2840, + "end": 2845, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 9 } } @@ -1209,15 +1209,15 @@ "arguments": [ { "type": "Identifier", - "start": 2611, - "end": 2624, + "start": 2846, + "end": 2859, "loc": { "start": { - "line": 86, + "line": 96, "column": 10 }, "end": { - "line": 86, + "line": 96, "column": 23 }, "identifierName": "mergedOptions" @@ -1230,15 +1230,15 @@ { "type": "CommentBlock", "value": "*\n * The total amount of data items to page through.\n *\n * @access private\n * @type {Number}\n ", - "start": 2632, - "end": 2750, + "start": 2867, + "end": 2985, "loc": { "start": { - "line": 88, + "line": 98, "column": 4 }, "end": { - "line": 93, + "line": 103, "column": 7 } } @@ -1247,58 +1247,58 @@ }, { "type": "ExpressionStatement", - "start": 2755, - "end": 2774, + "start": 2990, + "end": 3009, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 23 } }, "expression": { "type": "AssignmentExpression", - "start": 2755, - "end": 2773, + "start": 2990, + "end": 3008, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 22 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2755, - "end": 2766, + "start": 2990, + "end": 3001, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 15 } }, "object": { "type": "ThisExpression", - "start": 2755, - "end": 2759, + "start": 2990, + "end": 2994, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 8 } }, @@ -1306,15 +1306,15 @@ }, "property": { "type": "Identifier", - "start": 2760, - "end": 2766, + "start": 2995, + "end": 3001, "loc": { "start": { - "line": 94, + "line": 104, "column": 9 }, "end": { - "line": 94, + "line": 104, "column": 15 }, "identifierName": "_total" @@ -1326,15 +1326,15 @@ }, "right": { "type": "NullLiteral", - "start": 2769, - "end": 2773, + "start": 3004, + "end": 3008, "loc": { "start": { - "line": 94, + "line": 104, "column": 18 }, "end": { - "line": 94, + "line": 104, "column": 22 } } @@ -1345,15 +1345,15 @@ { "type": "CommentBlock", "value": "*\n * The total amount of data items to page through.\n *\n * @access private\n * @type {Number}\n ", - "start": 2632, - "end": 2750, + "start": 2867, + "end": 2985, "loc": { "start": { - "line": 88, + "line": 98, "column": 4 }, "end": { - "line": 93, + "line": 103, "column": 7 } } @@ -1363,15 +1363,15 @@ { "type": "CommentBlock", "value": "*\n * The array of data items.\n *\n * @access private\n * @type {?Array}\n ", - "start": 2780, - "end": 2875, + "start": 3015, + "end": 3110, "loc": { "start": { - "line": 96, + "line": 106, "column": 4 }, "end": { - "line": 101, + "line": 111, "column": 7 } } @@ -1380,58 +1380,58 @@ }, { "type": "ExpressionStatement", - "start": 2880, - "end": 2898, + "start": 3115, + "end": 3133, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 22 } }, "expression": { "type": "AssignmentExpression", - "start": 2880, - "end": 2897, + "start": 3115, + "end": 3132, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 21 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2880, - "end": 2890, + "start": 3115, + "end": 3125, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 2880, - "end": 2884, + "start": 3115, + "end": 3119, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 8 } }, @@ -1439,15 +1439,15 @@ }, "property": { "type": "Identifier", - "start": 2885, - "end": 2890, + "start": 3120, + "end": 3125, "loc": { "start": { - "line": 102, + "line": 112, "column": 9 }, "end": { - "line": 102, + "line": 112, "column": 14 }, "identifierName": "_data" @@ -1459,15 +1459,15 @@ }, "right": { "type": "NullLiteral", - "start": 2893, - "end": 2897, + "start": 3128, + "end": 3132, "loc": { "start": { - "line": 102, + "line": 112, "column": 17 }, "end": { - "line": 102, + "line": 112, "column": 21 } } @@ -1478,15 +1478,15 @@ { "type": "CommentBlock", "value": "*\n * The array of data items.\n *\n * @access private\n * @type {?Array}\n ", - "start": 2780, - "end": 2875, + "start": 3015, + "end": 3110, "loc": { "start": { - "line": 96, + "line": 106, "column": 4 }, "end": { - "line": 101, + "line": 111, "column": 7 } } @@ -1495,57 +1495,57 @@ }, { "type": "IfStatement", - "start": 2904, - "end": 3407, + "start": 3139, + "end": 3642, "loc": { "start": { - "line": 104, + "line": 114, "column": 4 }, "end": { - "line": 118, + "line": 128, "column": 5 } }, "test": { "type": "BinaryExpression", - "start": 2908, - "end": 2958, + "start": 3143, + "end": 3193, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 58 } }, "left": { "type": "MemberExpression", - "start": 2908, - "end": 2934, + "start": 3143, + "end": 3169, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 34 } }, "object": { "type": "Identifier", - "start": 2908, - "end": 2921, + "start": 3143, + "end": 3156, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 21 }, "identifierName": "mergedOptions" @@ -1554,15 +1554,15 @@ }, "property": { "type": "Identifier", - "start": 2922, - "end": 2934, + "start": 3157, + "end": 3169, "loc": { "start": { - "line": 104, + "line": 114, "column": 22 }, "end": { - "line": 104, + "line": 114, "column": 34 }, "identifierName": "queryBuilder" @@ -1574,15 +1574,15 @@ "operator": "instanceof", "right": { "type": "Identifier", - "start": 2946, - "end": 2958, + "start": 3181, + "end": 3193, "loc": { "start": { - "line": 104, + "line": 114, "column": 46 }, "end": { - "line": 104, + "line": 114, "column": 58 }, "identifierName": "QueryBuilder" @@ -1592,73 +1592,73 @@ }, "consequent": { "type": "BlockStatement", - "start": 2960, - "end": 3290, + "start": 3195, + "end": 3525, "loc": { "start": { - "line": 104, + "line": 114, "column": 60 }, "end": { - "line": 116, + "line": 126, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3237, - "end": 3284, + "start": 3472, + "end": 3519, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 53 } }, "expression": { "type": "AssignmentExpression", - "start": 3237, - "end": 3283, + "start": 3472, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 52 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3237, - "end": 3254, + "start": 3472, + "end": 3489, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 3237, - "end": 3241, + "start": 3472, + "end": 3476, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 10 } }, @@ -1666,15 +1666,15 @@ }, "property": { "type": "Identifier", - "start": 3242, - "end": 3254, + "start": 3477, + "end": 3489, "loc": { "start": { - "line": 115, + "line": 125, "column": 11 }, "end": { - "line": 115, + "line": 125, "column": 23 }, "identifierName": "queryBuilder" @@ -1686,29 +1686,29 @@ }, "right": { "type": "MemberExpression", - "start": 3257, - "end": 3283, + "start": 3492, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 26 }, "end": { - "line": 115, + "line": 125, "column": 52 } }, "object": { "type": "Identifier", - "start": 3257, - "end": 3270, + "start": 3492, + "end": 3505, "loc": { "start": { - "line": 115, + "line": 125, "column": 26 }, "end": { - "line": 115, + "line": 125, "column": 39 }, "identifierName": "mergedOptions" @@ -1717,15 +1717,15 @@ }, "property": { "type": "Identifier", - "start": 3271, - "end": 3283, + "start": 3506, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 40 }, "end": { - "line": 115, + "line": 125, "column": 52 }, "identifierName": "queryBuilder" @@ -1740,15 +1740,15 @@ { "type": "CommentBlock", "value": "*\n * The query builder which constructs\n * either the query object to pass to\n * post/delete/put requests, or the\n * query string to pass to get\n * requests.\n *\n * @access public\n * @type {QueryBuilder}\n ", - "start": 2968, - "end": 3230, + "start": 3203, + "end": 3465, "loc": { "start": { - "line": 105, + "line": 115, "column": 6 }, "end": { - "line": 114, + "line": 124, "column": 9 } } @@ -1760,43 +1760,43 @@ }, "alternate": { "type": "IfStatement", - "start": 3296, - "end": 3407, + "start": 3531, + "end": 3642, "loc": { "start": { - "line": 116, + "line": 126, "column": 11 }, "end": { - "line": 118, + "line": 128, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3300, - "end": 3326, + "start": 3535, + "end": 3561, "loc": { "start": { - "line": 116, + "line": 126, "column": 15 }, "end": { - "line": 116, + "line": 126, "column": 41 } }, "object": { "type": "Identifier", - "start": 3300, - "end": 3313, + "start": 3535, + "end": 3548, "loc": { "start": { - "line": 116, + "line": 126, "column": 15 }, "end": { - "line": 116, + "line": 126, "column": 28 }, "identifierName": "mergedOptions" @@ -1805,15 +1805,15 @@ }, "property": { "type": "Identifier", - "start": 3314, - "end": 3326, + "start": 3549, + "end": 3561, "loc": { "start": { - "line": 116, + "line": 126, "column": 29 }, "end": { - "line": 116, + "line": 126, "column": 41 }, "identifierName": "queryBuilder" @@ -1824,88 +1824,88 @@ }, "consequent": { "type": "BlockStatement", - "start": 3328, - "end": 3407, + "start": 3563, + "end": 3642, "loc": { "start": { - "line": 116, + "line": 126, "column": 43 }, "end": { - "line": 118, + "line": 128, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3336, - "end": 3401, + "start": 3571, + "end": 3636, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 3336, - "end": 3400, + "start": 3571, + "end": 3635, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3336, - "end": 3353, + "start": 3571, + "end": 3588, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 3336, - "end": 3340, + "start": 3571, + "end": 3575, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 10 } } }, "property": { "type": "Identifier", - "start": 3341, - "end": 3353, + "start": 3576, + "end": 3588, "loc": { "start": { - "line": 117, + "line": 127, "column": 11 }, "end": { - "line": 117, + "line": 127, "column": 23 }, "identifierName": "queryBuilder" @@ -1916,29 +1916,29 @@ }, "right": { "type": "NewExpression", - "start": 3356, - "end": 3400, + "start": 3591, + "end": 3635, "loc": { "start": { - "line": 117, + "line": 127, "column": 26 }, "end": { - "line": 117, + "line": 127, "column": 70 } }, "callee": { "type": "Identifier", - "start": 3360, - "end": 3372, + "start": 3595, + "end": 3607, "loc": { "start": { - "line": 117, + "line": 127, "column": 30 }, "end": { - "line": 117, + "line": 127, "column": 42 }, "identifierName": "QueryBuilder" @@ -1948,29 +1948,29 @@ "arguments": [ { "type": "MemberExpression", - "start": 3373, - "end": 3399, + "start": 3608, + "end": 3634, "loc": { "start": { - "line": 117, + "line": 127, "column": 43 }, "end": { - "line": 117, + "line": 127, "column": 69 } }, "object": { "type": "Identifier", - "start": 3373, - "end": 3386, + "start": 3608, + "end": 3621, "loc": { "start": { - "line": 117, + "line": 127, "column": 43 }, "end": { - "line": 117, + "line": 127, "column": 56 }, "identifierName": "mergedOptions" @@ -1979,15 +1979,15 @@ }, "property": { "type": "Identifier", - "start": 3387, - "end": 3399, + "start": 3622, + "end": 3634, "loc": { "start": { - "line": 117, + "line": 127, "column": 57 }, "end": { - "line": 117, + "line": 127, "column": 69 }, "identifierName": "queryBuilder" @@ -2011,15 +2011,15 @@ { "type": "CommentBlock", "value": "*\n * Property defining the behavior\n * of the AJAX call.\n * If a string, remote endpoint\n * to contact. If a function,\n * it'll call the function when\n * data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n *\n * @access public\n * @type {String|Function|Object}\n ", - "start": 3413, - "end": 3762, + "start": 3648, + "end": 3997, "loc": { "start": { - "line": 120, + "line": 130, "column": 4 }, "end": { - "line": 132, + "line": 142, "column": 7 } } @@ -2028,58 +2028,58 @@ }, { "type": "ExpressionStatement", - "start": 3767, - "end": 3798, + "start": 4002, + "end": 4033, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 35 } }, "expression": { "type": "AssignmentExpression", - "start": 3767, - "end": 3797, + "start": 4002, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 34 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3767, - "end": 3776, + "start": 4002, + "end": 4011, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 13 } }, "object": { "type": "ThisExpression", - "start": 3767, - "end": 3771, + "start": 4002, + "end": 4006, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 8 } }, @@ -2087,15 +2087,15 @@ }, "property": { "type": "Identifier", - "start": 3772, - "end": 3776, + "start": 4007, + "end": 4011, "loc": { "start": { - "line": 133, + "line": 143, "column": 9 }, "end": { - "line": 133, + "line": 143, "column": 13 }, "identifierName": "ajax" @@ -2107,29 +2107,29 @@ }, "right": { "type": "MemberExpression", - "start": 3779, - "end": 3797, + "start": 4014, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 16 }, "end": { - "line": 133, + "line": 143, "column": 34 } }, "object": { "type": "Identifier", - "start": 3779, - "end": 3792, + "start": 4014, + "end": 4027, "loc": { "start": { - "line": 133, + "line": 143, "column": 16 }, "end": { - "line": 133, + "line": 143, "column": 29 }, "identifierName": "mergedOptions" @@ -2138,15 +2138,15 @@ }, "property": { "type": "Identifier", - "start": 3793, - "end": 3797, + "start": 4028, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 30 }, "end": { - "line": 133, + "line": 143, "column": 34 }, "identifierName": "ajax" @@ -2161,15 +2161,15 @@ { "type": "CommentBlock", "value": "*\n * Property defining the behavior\n * of the AJAX call.\n * If a string, remote endpoint\n * to contact. If a function,\n * it'll call the function when\n * data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n *\n * @access public\n * @type {String|Function|Object}\n ", - "start": 3413, - "end": 3762, + "start": 3648, + "end": 3997, "loc": { "start": { - "line": 120, + "line": 130, "column": 4 }, "end": { - "line": 132, + "line": 142, "column": 7 } } @@ -2184,15 +2184,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {String|Function|Object} options.ajax\n * Defines the behavior of the AJAX call.\n * If a string, remote endpoint to contact.\n * If a function, it'll call the function\n * when data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n ", - "start": 1853, - "end": 2289, + "start": 2088, + "end": 2524, "loc": { "start": { - "line": 58, + "line": 68, "column": 2 }, "end": { - "line": 70, + "line": 80, "column": 5 } } @@ -2202,15 +2202,15 @@ { "type": "CommentBlock", "value": "*\n * Performs an AJAX call.\n *\n * @access private\n * @param {Object} axiosOptions Ajax options object for axios\n * @param {String} axiosOptions.url Url to remote endpoint to ajax for.\n * @param {String} axiosOptions.method The AJAX method, i.e. 'get', 'post', etc.\n * @return {Promise} Returns the axios promise object, containing\n * the response from remote endpoint.\n ", - "start": 3806, - "end": 4216, + "start": 4041, + "end": 4451, "loc": { "start": { - "line": 136, + "line": 146, "column": 2 }, "end": { - "line": 145, + "line": 155, "column": 5 } } @@ -2219,15 +2219,15 @@ }, { "type": "ClassMethod", - "start": 4219, - "end": 4718, + "start": 4454, + "end": 4953, "loc": { "start": { - "line": 146, + "line": 156, "column": 2 }, "end": { - "line": 157, + "line": 167, "column": 3 } }, @@ -2235,15 +2235,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4219, - "end": 4228, + "start": 4454, + "end": 4463, "loc": { "start": { - "line": 146, + "line": 156, "column": 2 }, "end": { - "line": 146, + "line": 156, "column": 11 }, "identifierName": "_ajaxCall" @@ -2259,30 +2259,30 @@ "params": [ { "type": "ObjectPattern", - "start": 4229, - "end": 4244, + "start": 4464, + "end": 4479, "loc": { "start": { - "line": 146, + "line": 156, "column": 12 }, "end": { - "line": 146, + "line": 156, "column": 27 } }, "properties": [ { "type": "ObjectProperty", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 } }, @@ -2291,15 +2291,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 }, "identifierName": "url" @@ -2308,15 +2308,15 @@ }, "value": { "type": "Identifier", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 }, "identifierName": "url" @@ -2329,15 +2329,15 @@ }, { "type": "ObjectProperty", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 } }, @@ -2346,15 +2346,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 }, "identifierName": "method" @@ -2363,15 +2363,15 @@ }, "value": { "type": "Identifier", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 }, "identifierName": "method" @@ -2387,59 +2387,59 @@ ], "body": { "type": "BlockStatement", - "start": 4246, - "end": 4718, + "start": 4481, + "end": 4953, "loc": { "start": { - "line": 146, + "line": 156, "column": 29 }, "end": { - "line": 157, + "line": 167, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 4252, - "end": 4295, + "start": 4487, + "end": 4530, "loc": { "start": { - "line": 147, + "line": 157, "column": 4 }, "end": { - "line": 147, + "line": 157, "column": 47 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 4258, - "end": 4294, + "start": 4493, + "end": 4529, "loc": { "start": { - "line": 147, + "line": 157, "column": 10 }, "end": { - "line": 147, + "line": 157, "column": 46 } }, "id": { "type": "Identifier", - "start": 4258, - "end": 4276, + "start": 4493, + "end": 4511, "loc": { "start": { - "line": 147, + "line": 157, "column": 10 }, "end": { - "line": 147, + "line": 157, "column": 28 }, "identifierName": "actualAxiosOptions" @@ -2448,30 +2448,30 @@ }, "init": { "type": "ObjectExpression", - "start": 4279, - "end": 4294, + "start": 4514, + "end": 4529, "loc": { "start": { - "line": 147, + "line": 157, "column": 31 }, "end": { - "line": 147, + "line": 157, "column": 46 } }, "properties": [ { "type": "ObjectProperty", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 } }, @@ -2480,15 +2480,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 }, "identifierName": "url" @@ -2497,15 +2497,15 @@ }, "value": { "type": "Identifier", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 }, "identifierName": "url" @@ -2518,15 +2518,15 @@ }, { "type": "ObjectProperty", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 } }, @@ -2535,15 +2535,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 }, "identifierName": "method" @@ -2552,15 +2552,15 @@ }, "value": { "type": "Identifier", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 }, "identifierName": "method" @@ -2579,58 +2579,58 @@ }, { "type": "ExpressionStatement", - "start": 4300, - "end": 4436, + "start": 4535, + "end": 4671, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 150, + "line": 160, "column": 34 } }, "expression": { "type": "AssignmentExpression", - "start": 4300, - "end": 4435, + "start": 4535, + "end": 4670, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 150, + "line": 160, "column": 33 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4300, - "end": 4325, + "start": 4535, + "end": 4560, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 148, + "line": 158, "column": 29 } }, "object": { "type": "Identifier", - "start": 4300, - "end": 4318, + "start": 4535, + "end": 4553, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 148, + "line": 158, "column": 22 }, "identifierName": "actualAxiosOptions" @@ -2639,15 +2639,15 @@ }, "property": { "type": "Identifier", - "start": 4319, - "end": 4325, + "start": 4554, + "end": 4560, "loc": { "start": { - "line": 148, + "line": 158, "column": 23 }, "end": { - "line": 148, + "line": 158, "column": 29 }, "identifierName": "method" @@ -2658,43 +2658,43 @@ }, "right": { "type": "ConditionalExpression", - "start": 4328, - "end": 4435, + "start": 4563, + "end": 4670, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 150, + "line": 160, "column": 33 } }, "test": { "type": "MemberExpression", - "start": 4328, - "end": 4353, + "start": 4563, + "end": 4588, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 148, + "line": 158, "column": 57 } }, "object": { "type": "Identifier", - "start": 4328, - "end": 4346, + "start": 4563, + "end": 4581, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 148, + "line": 158, "column": 50 }, "identifierName": "actualAxiosOptions" @@ -2703,15 +2703,15 @@ }, "property": { "type": "Identifier", - "start": 4347, - "end": 4353, + "start": 4582, + "end": 4588, "loc": { "start": { - "line": 148, + "line": 158, "column": 51 }, "end": { - "line": 148, + "line": 158, "column": 57 }, "identifierName": "method" @@ -2722,57 +2722,57 @@ }, "consequent": { "type": "CallExpression", - "start": 4362, - "end": 4401, + "start": 4597, + "end": 4636, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 47 } }, "callee": { "type": "MemberExpression", - "start": 4362, - "end": 4399, + "start": 4597, + "end": 4634, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 45 } }, "object": { "type": "MemberExpression", - "start": 4362, - "end": 4387, + "start": 4597, + "end": 4622, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 33 } }, "object": { "type": "Identifier", - "start": 4362, - "end": 4380, + "start": 4597, + "end": 4615, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 26 }, "identifierName": "actualAxiosOptions" @@ -2781,15 +2781,15 @@ }, "property": { "type": "Identifier", - "start": 4381, - "end": 4387, + "start": 4616, + "end": 4622, "loc": { "start": { - "line": 149, + "line": 159, "column": 27 }, "end": { - "line": 149, + "line": 159, "column": 33 }, "identifierName": "method" @@ -2800,15 +2800,15 @@ }, "property": { "type": "Identifier", - "start": 4388, - "end": 4399, + "start": 4623, + "end": 4634, "loc": { "start": { - "line": 149, + "line": 159, "column": 34 }, "end": { - "line": 149, + "line": 159, "column": 45 }, "identifierName": "toLowerCase" @@ -2821,29 +2821,29 @@ }, "alternate": { "type": "MemberExpression", - "start": 4410, - "end": 4435, + "start": 4645, + "end": 4670, "loc": { "start": { - "line": 150, + "line": 160, "column": 8 }, "end": { - "line": 150, + "line": 160, "column": 33 } }, "object": { "type": "Identifier", - "start": 4410, - "end": 4428, + "start": 4645, + "end": 4663, "loc": { "start": { - "line": 150, + "line": 160, "column": 8 }, "end": { - "line": 150, + "line": 160, "column": 26 }, "identifierName": "actualAxiosOptions" @@ -2852,15 +2852,15 @@ }, "property": { "type": "Identifier", - "start": 4429, - "end": 4435, + "start": 4664, + "end": 4670, "loc": { "start": { - "line": 150, + "line": 160, "column": 27 }, "end": { - "line": 150, + "line": 160, "column": 33 }, "identifierName": "method" @@ -2874,57 +2874,57 @@ }, { "type": "IfStatement", - "start": 4441, - "end": 4676, + "start": 4676, + "end": 4911, "loc": { "start": { - "line": 151, + "line": 161, "column": 4 }, "end": { - "line": 155, + "line": 165, "column": 5 } }, "test": { "type": "BinaryExpression", - "start": 4445, - "end": 4480, + "start": 4680, + "end": 4715, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 43 } }, "left": { "type": "MemberExpression", - "start": 4445, - "end": 4470, + "start": 4680, + "end": 4705, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 33 } }, "object": { "type": "Identifier", - "start": 4445, - "end": 4463, + "start": 4680, + "end": 4698, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 26 }, "identifierName": "actualAxiosOptions" @@ -2933,15 +2933,15 @@ }, "property": { "type": "Identifier", - "start": 4464, - "end": 4470, + "start": 4699, + "end": 4705, "loc": { "start": { - "line": 151, + "line": 161, "column": 27 }, "end": { - "line": 151, + "line": 161, "column": 33 }, "identifierName": "method" @@ -2953,15 +2953,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 4475, - "end": 4480, + "start": 4710, + "end": 4715, "loc": { "start": { - "line": 151, + "line": 161, "column": 38 }, "end": { - "line": 151, + "line": 161, "column": 43 } }, @@ -2974,73 +2974,73 @@ }, "consequent": { "type": "BlockStatement", - "start": 4482, - "end": 4591, + "start": 4717, + "end": 4826, "loc": { "start": { - "line": 151, + "line": 161, "column": 45 }, "end": { - "line": 153, + "line": 163, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 4490, - "end": 4585, + "start": 4725, + "end": 4820, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 101 } }, "expression": { "type": "AssignmentExpression", - "start": 4490, - "end": 4584, + "start": 4725, + "end": 4819, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 100 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4490, - "end": 4512, + "start": 4725, + "end": 4747, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 28 } }, "object": { "type": "Identifier", - "start": 4490, - "end": 4508, + "start": 4725, + "end": 4743, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 24 }, "identifierName": "actualAxiosOptions" @@ -3049,15 +3049,15 @@ }, "property": { "type": "Identifier", - "start": 4509, - "end": 4512, + "start": 4744, + "end": 4747, "loc": { "start": { - "line": 152, + "line": 162, "column": 25 }, "end": { - "line": 152, + "line": 162, "column": 28 }, "identifierName": "url" @@ -3068,44 +3068,44 @@ }, "right": { "type": "TemplateLiteral", - "start": 4515, - "end": 4584, + "start": 4750, + "end": 4819, "loc": { "start": { - "line": 152, + "line": 162, "column": 31 }, "end": { - "line": 152, + "line": 162, "column": 100 } }, "expressions": [ { "type": "MemberExpression", - "start": 4518, - "end": 4540, + "start": 4753, + "end": 4775, "loc": { "start": { - "line": 152, + "line": 162, "column": 34 }, "end": { - "line": 152, + "line": 162, "column": 56 } }, "object": { "type": "Identifier", - "start": 4518, - "end": 4536, + "start": 4753, + "end": 4771, "loc": { "start": { - "line": 152, + "line": 162, "column": 34 }, "end": { - "line": 152, + "line": 162, "column": 52 }, "identifierName": "actualAxiosOptions" @@ -3114,15 +3114,15 @@ }, "property": { "type": "Identifier", - "start": 4537, - "end": 4540, + "start": 4772, + "end": 4775, "loc": { "start": { - "line": 152, + "line": 162, "column": 53 }, "end": { - "line": 152, + "line": 162, "column": 56 }, "identifierName": "url" @@ -3133,72 +3133,72 @@ }, { "type": "CallExpression", - "start": 4544, - "end": 4582, + "start": 4779, + "end": 4817, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 98 } }, "callee": { "type": "MemberExpression", - "start": 4544, - "end": 4576, + "start": 4779, + "end": 4811, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 92 } }, "object": { "type": "MemberExpression", - "start": 4544, - "end": 4561, + "start": 4779, + "end": 4796, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 77 } }, "object": { "type": "ThisExpression", - "start": 4544, - "end": 4548, + "start": 4779, + "end": 4783, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 64 } } }, "property": { "type": "Identifier", - "start": 4549, - "end": 4561, + "start": 4784, + "end": 4796, "loc": { "start": { - "line": 152, + "line": 162, "column": 65 }, "end": { - "line": 152, + "line": 162, "column": 77 }, "identifierName": "queryBuilder" @@ -3209,15 +3209,15 @@ }, "property": { "type": "Identifier", - "start": 4562, - "end": 4576, + "start": 4797, + "end": 4811, "loc": { "start": { - "line": 152, + "line": 162, "column": 78 }, "end": { - "line": 152, + "line": 162, "column": 92 }, "identifierName": "getQueryString" @@ -3229,15 +3229,15 @@ "arguments": [ { "type": "ThisExpression", - "start": 4577, - "end": 4581, + "start": 4812, + "end": 4816, "loc": { "start": { - "line": 152, + "line": 162, "column": 93 }, "end": { - "line": 152, + "line": 162, "column": 97 } } @@ -3248,15 +3248,15 @@ "quasis": [ { "type": "TemplateElement", - "start": 4516, - "end": 4516, + "start": 4751, + "end": 4751, "loc": { "start": { - "line": 152, + "line": 162, "column": 32 }, "end": { - "line": 152, + "line": 162, "column": 32 } }, @@ -3268,15 +3268,15 @@ }, { "type": "TemplateElement", - "start": 4541, - "end": 4542, + "start": 4776, + "end": 4777, "loc": { "start": { - "line": 152, + "line": 162, "column": 57 }, "end": { - "line": 152, + "line": 162, "column": 58 } }, @@ -3288,15 +3288,15 @@ }, { "type": "TemplateElement", - "start": 4583, - "end": 4583, + "start": 4818, + "end": 4818, "loc": { "start": { - "line": 152, + "line": 162, "column": 99 }, "end": { - "line": 152, + "line": 162, "column": 99 } }, @@ -3315,73 +3315,73 @@ }, "alternate": { "type": "BlockStatement", - "start": 4597, - "end": 4676, + "start": 4832, + "end": 4911, "loc": { "start": { - "line": 153, + "line": 163, "column": 11 }, "end": { - "line": 155, + "line": 165, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 4605, - "end": 4670, + "start": 4840, + "end": 4905, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 4605, - "end": 4669, + "start": 4840, + "end": 4904, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4605, - "end": 4628, + "start": 4840, + "end": 4863, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 29 } }, "object": { "type": "Identifier", - "start": 4605, - "end": 4623, + "start": 4840, + "end": 4858, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 24 }, "identifierName": "actualAxiosOptions" @@ -3390,15 +3390,15 @@ }, "property": { "type": "Identifier", - "start": 4624, - "end": 4628, + "start": 4859, + "end": 4863, "loc": { "start": { - "line": 154, + "line": 164, "column": 25 }, "end": { - "line": 154, + "line": 164, "column": 29 }, "identifierName": "data" @@ -3409,72 +3409,72 @@ }, "right": { "type": "CallExpression", - "start": 4631, - "end": 4669, + "start": 4866, + "end": 4904, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 70 } }, "callee": { "type": "MemberExpression", - "start": 4631, - "end": 4663, + "start": 4866, + "end": 4898, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 64 } }, "object": { "type": "MemberExpression", - "start": 4631, - "end": 4648, + "start": 4866, + "end": 4883, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 49 } }, "object": { "type": "ThisExpression", - "start": 4631, - "end": 4635, + "start": 4866, + "end": 4870, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 36 } } }, "property": { "type": "Identifier", - "start": 4636, - "end": 4648, + "start": 4871, + "end": 4883, "loc": { "start": { - "line": 154, + "line": 164, "column": 37 }, "end": { - "line": 154, + "line": 164, "column": 49 }, "identifierName": "queryBuilder" @@ -3485,15 +3485,15 @@ }, "property": { "type": "Identifier", - "start": 4649, - "end": 4663, + "start": 4884, + "end": 4898, "loc": { "start": { - "line": 154, + "line": 164, "column": 50 }, "end": { - "line": 154, + "line": 164, "column": 64 }, "identifierName": "getQueryObject" @@ -3505,15 +3505,15 @@ "arguments": [ { "type": "ThisExpression", - "start": 4664, - "end": 4668, + "start": 4899, + "end": 4903, "loc": { "start": { - "line": 154, + "line": 164, "column": 65 }, "end": { - "line": 154, + "line": 164, "column": 69 } } @@ -3528,43 +3528,43 @@ }, { "type": "ReturnStatement", - "start": 4681, - "end": 4714, + "start": 4916, + "end": 4949, "loc": { "start": { - "line": 156, + "line": 166, "column": 4 }, "end": { - "line": 156, + "line": 166, "column": 37 } }, "argument": { "type": "CallExpression", - "start": 4688, - "end": 4713, + "start": 4923, + "end": 4948, "loc": { "start": { - "line": 156, + "line": 166, "column": 11 }, "end": { - "line": 156, + "line": 166, "column": 36 } }, "callee": { "type": "Identifier", - "start": 4688, - "end": 4693, + "start": 4923, + "end": 4928, "loc": { "start": { - "line": 156, + "line": 166, "column": 11 }, "end": { - "line": 156, + "line": 166, "column": 16 }, "identifierName": "axios" @@ -3574,15 +3574,15 @@ "arguments": [ { "type": "Identifier", - "start": 4694, - "end": 4712, + "start": 4929, + "end": 4947, "loc": { "start": { - "line": 156, + "line": 166, "column": 17 }, "end": { - "line": 156, + "line": 166, "column": 35 }, "identifierName": "actualAxiosOptions" @@ -3600,15 +3600,15 @@ { "type": "CommentBlock", "value": "*\n * Performs an AJAX call.\n *\n * @access private\n * @param {Object} axiosOptions Ajax options object for axios\n * @param {String} axiosOptions.url Url to remote endpoint to ajax for.\n * @param {String} axiosOptions.method The AJAX method, i.e. 'get', 'post', etc.\n * @return {Promise} Returns the axios promise object, containing\n * the response from remote endpoint.\n ", - "start": 3806, - "end": 4216, + "start": 4041, + "end": 4451, "loc": { "start": { - "line": 136, + "line": 146, "column": 2 }, "end": { - "line": 145, + "line": 155, "column": 5 } } @@ -3618,15 +3618,15 @@ { "type": "CommentBlock", "value": "*\n * Builds an AJAX handler function.\n * @access private\n * @return {Function} A callback function which performs\n * the actual ajax operation.\n ", - "start": 4722, - "end": 4900, + "start": 4957, + "end": 5135, "loc": { "start": { - "line": 159, + "line": 169, "column": 2 }, "end": { - "line": 164, + "line": 174, "column": 5 } } @@ -3635,15 +3635,15 @@ }, { "type": "ClassMethod", - "start": 4903, - "end": 5557, + "start": 5138, + "end": 5792, "loc": { "start": { - "line": 165, + "line": 175, "column": 2 }, "end": { - "line": 186, + "line": 196, "column": 3 } }, @@ -3651,15 +3651,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4903, - "end": 4920, + "start": 5138, + "end": 5155, "loc": { "start": { - "line": 165, + "line": 175, "column": 2 }, "end": { - "line": 165, + "line": 175, "column": 19 }, "identifierName": "_buildAjaxHandler" @@ -3675,59 +3675,59 @@ "params": [], "body": { "type": "BlockStatement", - "start": 4923, - "end": 5557, + "start": 5158, + "end": 5792, "loc": { "start": { - "line": 165, + "line": 175, "column": 22 }, "end": { - "line": 186, + "line": 196, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 4929, - "end": 5293, + "start": 5164, + "end": 5528, "loc": { "start": { - "line": 166, + "line": 176, "column": 4 }, "end": { - "line": 179, + "line": 189, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 4935, - "end": 5292, + "start": 5170, + "end": 5527, "loc": { "start": { - "line": 166, + "line": 176, "column": 10 }, "end": { - "line": 179, + "line": 189, "column": 5 } }, "id": { "type": "Identifier", - "start": 4935, - "end": 4946, + "start": 5170, + "end": 5181, "loc": { "start": { - "line": 166, + "line": 176, "column": 10 }, "end": { - "line": 166, + "line": 176, "column": 21 }, "identifierName": "ajaxHandler" @@ -3736,30 +3736,30 @@ }, "init": { "type": "ObjectExpression", - "start": 4949, - "end": 5292, + "start": 5184, + "end": 5527, "loc": { "start": { - "line": 166, + "line": 176, "column": 24 }, "end": { - "line": 179, + "line": 189, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 4957, - "end": 5012, + "start": 5192, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 6 }, "end": { - "line": 167, + "line": 177, "column": 61 } }, @@ -3768,15 +3768,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4957, - "end": 4965, + "start": 5192, + "end": 5200, "loc": { "start": { - "line": 167, + "line": 177, "column": 6 }, "end": { - "line": 167, + "line": 177, "column": 14 }, "identifierName": "function" @@ -3785,15 +3785,15 @@ }, "value": { "type": "ArrowFunctionExpression", - "start": 4967, - "end": 5012, + "start": 5202, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 16 }, "end": { - "line": 167, + "line": 177, "column": 61 } }, @@ -3804,72 +3804,72 @@ "params": [], "body": { "type": "CallExpression", - "start": 4973, - "end": 5012, + "start": 5208, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 61 } }, "callee": { "type": "MemberExpression", - "start": 4973, - "end": 4987, + "start": 5208, + "end": 5222, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 36 } }, "object": { "type": "MemberExpression", - "start": 4973, - "end": 4982, + "start": 5208, + "end": 5217, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 31 } }, "object": { "type": "ThisExpression", - "start": 4973, - "end": 4977, + "start": 5208, + "end": 5212, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 26 } } }, "property": { "type": "Identifier", - "start": 4978, - "end": 4982, + "start": 5213, + "end": 5217, "loc": { "start": { - "line": 167, + "line": 177, "column": 27 }, "end": { - "line": 167, + "line": 177, "column": 31 }, "identifierName": "ajax" @@ -3880,15 +3880,15 @@ }, "property": { "type": "Identifier", - "start": 4983, - "end": 4987, + "start": 5218, + "end": 5222, "loc": { "start": { - "line": 167, + "line": 177, "column": 32 }, "end": { - "line": 167, + "line": 177, "column": 36 }, "identifierName": "call" @@ -3900,59 +3900,59 @@ "arguments": [ { "type": "ThisExpression", - "start": 4988, - "end": 4992, + "start": 5223, + "end": 5227, "loc": { "start": { - "line": 167, + "line": 177, "column": 37 }, "end": { - "line": 167, + "line": 177, "column": 41 } } }, { "type": "MemberExpression", - "start": 4994, - "end": 5011, + "start": 5229, + "end": 5246, "loc": { "start": { - "line": 167, + "line": 177, "column": 43 }, "end": { - "line": 167, + "line": 177, "column": 60 } }, "object": { "type": "ThisExpression", - "start": 4994, - "end": 4998, + "start": 5229, + "end": 5233, "loc": { "start": { - "line": 167, + "line": 177, "column": 43 }, "end": { - "line": 167, + "line": 177, "column": 47 } } }, "property": { "type": "Identifier", - "start": 4999, - "end": 5011, + "start": 5234, + "end": 5246, "loc": { "start": { - "line": 167, + "line": 177, "column": 48 }, "end": { - "line": 167, + "line": 177, "column": 60 }, "identifierName": "queryBuilder" @@ -3967,15 +3967,15 @@ }, { "type": "ObjectProperty", - "start": 5020, - "end": 5158, + "start": 5255, + "end": 5393, "loc": { "start": { - "line": 168, + "line": 178, "column": 6 }, "end": { - "line": 174, + "line": 184, "column": 7 } }, @@ -3984,15 +3984,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5020, - "end": 5026, + "start": 5255, + "end": 5261, "loc": { "start": { - "line": 168, + "line": 178, "column": 6 }, "end": { - "line": 168, + "line": 178, "column": 12 }, "identifierName": "string" @@ -4001,15 +4001,15 @@ }, "value": { "type": "ArrowFunctionExpression", - "start": 5028, - "end": 5158, + "start": 5263, + "end": 5393, "loc": { "start": { - "line": 168, + "line": 178, "column": 14 }, "end": { - "line": 174, + "line": 184, "column": 7 } }, @@ -4020,59 +4020,59 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5034, - "end": 5158, + "start": 5269, + "end": 5393, "loc": { "start": { - "line": 168, + "line": 178, "column": 20 }, "end": { - "line": 174, + "line": 184, "column": 7 } }, "body": [ { "type": "VariableDeclaration", - "start": 5044, - "end": 5066, + "start": 5279, + "end": 5301, "loc": { "start": { - "line": 169, + "line": 179, "column": 8 }, "end": { - "line": 169, + "line": 179, "column": 30 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5050, - "end": 5065, + "start": 5285, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 14 }, "end": { - "line": 169, + "line": 179, "column": 29 } }, "id": { "type": "Identifier", - "start": 5050, - "end": 5053, + "start": 5285, + "end": 5288, "loc": { "start": { - "line": 169, + "line": 179, "column": 14 }, "end": { - "line": 169, + "line": 179, "column": 17 }, "identifierName": "url" @@ -4081,44 +4081,44 @@ }, "init": { "type": "MemberExpression", - "start": 5056, - "end": 5065, + "start": 5291, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 20 }, "end": { - "line": 169, + "line": 179, "column": 29 } }, "object": { "type": "ThisExpression", - "start": 5056, - "end": 5060, + "start": 5291, + "end": 5295, "loc": { "start": { - "line": 169, + "line": 179, "column": 20 }, "end": { - "line": 169, + "line": 179, "column": 24 } } }, "property": { "type": "Identifier", - "start": 5061, - "end": 5065, + "start": 5296, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 25 }, "end": { - "line": 169, + "line": 179, "column": 29 }, "identifierName": "ajax" @@ -4133,72 +4133,72 @@ }, { "type": "ReturnStatement", - "start": 5075, - "end": 5150, + "start": 5310, + "end": 5385, "loc": { "start": { - "line": 170, + "line": 180, "column": 8 }, "end": { - "line": 173, + "line": 183, "column": 11 } }, "argument": { "type": "CallExpression", - "start": 5082, - "end": 5149, + "start": 5317, + "end": 5384, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 173, + "line": 183, "column": 10 } }, "callee": { "type": "MemberExpression", - "start": 5082, - "end": 5096, + "start": 5317, + "end": 5331, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 170, + "line": 180, "column": 29 } }, "object": { "type": "ThisExpression", - "start": 5082, - "end": 5086, + "start": 5317, + "end": 5321, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 170, + "line": 180, "column": 19 } } }, "property": { "type": "Identifier", - "start": 5087, - "end": 5096, + "start": 5322, + "end": 5331, "loc": { "start": { - "line": 170, + "line": 180, "column": 20 }, "end": { - "line": 170, + "line": 180, "column": 29 }, "identifierName": "_ajaxCall" @@ -4210,30 +4210,30 @@ "arguments": [ { "type": "ObjectExpression", - "start": 5097, - "end": 5148, + "start": 5332, + "end": 5383, "loc": { "start": { - "line": 170, + "line": 180, "column": 30 }, "end": { - "line": 173, + "line": 183, "column": 9 } }, "properties": [ { "type": "ObjectProperty", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 } }, @@ -4242,15 +4242,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 }, "identifierName": "url" @@ -4259,15 +4259,15 @@ }, "value": { "type": "Identifier", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 }, "identifierName": "url" @@ -4280,15 +4280,15 @@ }, { "type": "ObjectProperty", - "start": 5124, - "end": 5137, + "start": 5359, + "end": 5372, "loc": { "start": { - "line": 172, + "line": 182, "column": 10 }, "end": { - "line": 172, + "line": 182, "column": 23 } }, @@ -4297,15 +4297,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5124, - "end": 5130, + "start": 5359, + "end": 5365, "loc": { "start": { - "line": 172, + "line": 182, "column": 10 }, "end": { - "line": 172, + "line": 182, "column": 16 }, "identifierName": "method" @@ -4314,15 +4314,15 @@ }, "value": { "type": "StringLiteral", - "start": 5132, - "end": 5137, + "start": 5367, + "end": 5372, "loc": { "start": { - "line": 172, + "line": 182, "column": 18 }, "end": { - "line": 172, + "line": 182, "column": 23 } }, @@ -4345,15 +4345,15 @@ }, { "type": "ObjectProperty", - "start": 5166, - "end": 5285, + "start": 5401, + "end": 5520, "loc": { "start": { - "line": 175, + "line": 185, "column": 6 }, "end": { - "line": 178, + "line": 188, "column": 7 } }, @@ -4362,15 +4362,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5166, - "end": 5172, + "start": 5401, + "end": 5407, "loc": { "start": { - "line": 175, + "line": 185, "column": 6 }, "end": { - "line": 175, + "line": 185, "column": 12 }, "identifierName": "object" @@ -4379,15 +4379,15 @@ }, "value": { "type": "ArrowFunctionExpression", - "start": 5174, - "end": 5285, + "start": 5409, + "end": 5520, "loc": { "start": { - "line": 175, + "line": 185, "column": 14 }, "end": { - "line": 178, + "line": 188, "column": 7 } }, @@ -4398,102 +4398,102 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5180, - "end": 5285, + "start": 5415, + "end": 5520, "loc": { "start": { - "line": 175, + "line": 185, "column": 20 }, "end": { - "line": 178, + "line": 188, "column": 7 } }, "body": [ { "type": "ExpressionStatement", - "start": 5190, - "end": 5235, + "start": 5425, + "end": 5470, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 53 } }, "expression": { "type": "AssignmentExpression", - "start": 5190, - "end": 5234, + "start": 5425, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 52 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 5190, - "end": 5206, + "start": 5425, + "end": 5441, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 24 } }, "object": { "type": "MemberExpression", - "start": 5190, - "end": 5199, + "start": 5425, + "end": 5434, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 17 } }, "object": { "type": "ThisExpression", - "start": 5190, - "end": 5194, + "start": 5425, + "end": 5429, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 12 } } }, "property": { "type": "Identifier", - "start": 5195, - "end": 5199, + "start": 5430, + "end": 5434, "loc": { "start": { - "line": 176, + "line": 186, "column": 13 }, "end": { - "line": 176, + "line": 186, "column": 17 }, "identifierName": "ajax" @@ -4504,15 +4504,15 @@ }, "property": { "type": "Identifier", - "start": 5200, - "end": 5206, + "start": 5435, + "end": 5441, "loc": { "start": { - "line": 176, + "line": 186, "column": 18 }, "end": { - "line": 176, + "line": 186, "column": 24 }, "identifierName": "method" @@ -4523,72 +4523,72 @@ }, "right": { "type": "LogicalExpression", - "start": 5209, - "end": 5234, + "start": 5444, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 52 } }, "left": { "type": "MemberExpression", - "start": 5209, - "end": 5225, + "start": 5444, + "end": 5460, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 43 } }, "object": { "type": "MemberExpression", - "start": 5209, - "end": 5218, + "start": 5444, + "end": 5453, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 36 } }, "object": { "type": "ThisExpression", - "start": 5209, - "end": 5213, + "start": 5444, + "end": 5448, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 31 } } }, "property": { "type": "Identifier", - "start": 5214, - "end": 5218, + "start": 5449, + "end": 5453, "loc": { "start": { - "line": 176, + "line": 186, "column": 32 }, "end": { - "line": 176, + "line": 186, "column": 36 }, "identifierName": "ajax" @@ -4599,15 +4599,15 @@ }, "property": { "type": "Identifier", - "start": 5219, - "end": 5225, + "start": 5454, + "end": 5460, "loc": { "start": { - "line": 176, + "line": 186, "column": 37 }, "end": { - "line": 176, + "line": 186, "column": 43 }, "identifierName": "method" @@ -4619,15 +4619,15 @@ "operator": "||", "right": { "type": "StringLiteral", - "start": 5229, - "end": 5234, + "start": 5464, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 47 }, "end": { - "line": 176, + "line": 186, "column": 52 } }, @@ -4642,72 +4642,72 @@ }, { "type": "ReturnStatement", - "start": 5244, - "end": 5277, + "start": 5479, + "end": 5512, "loc": { "start": { - "line": 177, + "line": 187, "column": 8 }, "end": { - "line": 177, + "line": 187, "column": 41 } }, "argument": { "type": "CallExpression", - "start": 5251, - "end": 5276, + "start": 5486, + "end": 5511, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 40 } }, "callee": { "type": "MemberExpression", - "start": 5251, - "end": 5265, + "start": 5486, + "end": 5500, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 29 } }, "object": { "type": "ThisExpression", - "start": 5251, - "end": 5255, + "start": 5486, + "end": 5490, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 19 } } }, "property": { "type": "Identifier", - "start": 5256, - "end": 5265, + "start": 5491, + "end": 5500, "loc": { "start": { - "line": 177, + "line": 187, "column": 20 }, "end": { - "line": 177, + "line": 187, "column": 29 }, "identifierName": "_ajaxCall" @@ -4719,44 +4719,44 @@ "arguments": [ { "type": "MemberExpression", - "start": 5266, - "end": 5275, + "start": 5501, + "end": 5510, "loc": { "start": { - "line": 177, + "line": 187, "column": 30 }, "end": { - "line": 177, + "line": 187, "column": 39 } }, "object": { "type": "ThisExpression", - "start": 5266, - "end": 5270, + "start": 5501, + "end": 5505, "loc": { "start": { - "line": 177, + "line": 187, "column": 30 }, "end": { - "line": 177, + "line": 187, "column": 34 } } }, "property": { "type": "Identifier", - "start": 5271, - "end": 5275, + "start": 5506, + "end": 5510, "loc": { "start": { - "line": 177, + "line": 187, "column": 35 }, "end": { - "line": 177, + "line": 187, "column": 39 }, "identifierName": "ajax" @@ -4781,44 +4781,44 @@ }, { "type": "VariableDeclaration", - "start": 5298, - "end": 5338, + "start": 5533, + "end": 5573, "loc": { "start": { - "line": 180, + "line": 190, "column": 4 }, "end": { - "line": 180, + "line": 190, "column": 44 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5304, - "end": 5337, + "start": 5539, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 10 }, "end": { - "line": 180, + "line": 190, "column": 43 } }, "id": { "type": "Identifier", - "start": 5304, - "end": 5318, + "start": 5539, + "end": 5553, "loc": { "start": { - "line": 180, + "line": 190, "column": 10 }, "end": { - "line": 180, + "line": 190, "column": 24 }, "identifierName": "ajaxObjectType" @@ -4827,15 +4827,15 @@ }, "init": { "type": "UnaryExpression", - "start": 5321, - "end": 5337, + "start": 5556, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 27 }, "end": { - "line": 180, + "line": 190, "column": 43 } }, @@ -4843,44 +4843,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 5328, - "end": 5337, + "start": 5563, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 34 }, "end": { - "line": 180, + "line": 190, "column": 43 } }, "object": { "type": "ThisExpression", - "start": 5328, - "end": 5332, + "start": 5563, + "end": 5567, "loc": { "start": { - "line": 180, + "line": 190, "column": 34 }, "end": { - "line": 180, + "line": 190, "column": 38 } } }, "property": { "type": "Identifier", - "start": 5333, - "end": 5337, + "start": 5568, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 39 }, "end": { - "line": 180, + "line": 190, "column": 43 }, "identifierName": "ajax" @@ -4899,44 +4899,44 @@ }, { "type": "VariableDeclaration", - "start": 5343, - "end": 5397, + "start": 5578, + "end": 5632, "loc": { "start": { - "line": 181, + "line": 191, "column": 4 }, "end": { - "line": 181, + "line": 191, "column": 58 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5349, - "end": 5396, + "start": 5584, + "end": 5631, "loc": { "start": { - "line": 181, + "line": 191, "column": 10 }, "end": { - "line": 181, + "line": 191, "column": 57 } }, "id": { "type": "Identifier", - "start": 5349, - "end": 5366, + "start": 5584, + "end": 5601, "loc": { "start": { - "line": 181, + "line": 191, "column": 10 }, "end": { - "line": 181, + "line": 191, "column": 27 }, "identifierName": "actualAjaxHandler" @@ -4945,29 +4945,29 @@ }, "init": { "type": "MemberExpression", - "start": 5369, - "end": 5396, + "start": 5604, + "end": 5631, "loc": { "start": { - "line": 181, + "line": 191, "column": 30 }, "end": { - "line": 181, + "line": 191, "column": 57 } }, "object": { "type": "Identifier", - "start": 5369, - "end": 5380, + "start": 5604, + "end": 5615, "loc": { "start": { - "line": 181, + "line": 191, "column": 30 }, "end": { - "line": 181, + "line": 191, "column": 41 }, "identifierName": "ajaxHandler" @@ -4976,15 +4976,15 @@ }, "property": { "type": "Identifier", - "start": 5381, - "end": 5395, + "start": 5616, + "end": 5630, "loc": { "start": { - "line": 181, + "line": 191, "column": 42 }, "end": { - "line": 181, + "line": 191, "column": 56 }, "identifierName": "ajaxObjectType" @@ -4999,29 +4999,29 @@ }, { "type": "IfStatement", - "start": 5402, - "end": 5523, + "start": 5637, + "end": 5758, "loc": { "start": { - "line": 182, + "line": 192, "column": 4 }, "end": { - "line": 184, + "line": 194, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 5406, - "end": 5424, + "start": 5641, + "end": 5659, "loc": { "start": { - "line": 182, + "line": 192, "column": 8 }, "end": { - "line": 182, + "line": 192, "column": 26 } }, @@ -5029,15 +5029,15 @@ "prefix": true, "argument": { "type": "Identifier", - "start": 5407, - "end": 5424, + "start": 5642, + "end": 5659, "loc": { "start": { - "line": 182, + "line": 192, "column": 9 }, "end": { - "line": 182, + "line": 192, "column": 26 }, "identifierName": "actualAjaxHandler" @@ -5050,58 +5050,58 @@ }, "consequent": { "type": "BlockStatement", - "start": 5426, - "end": 5523, + "start": 5661, + "end": 5758, "loc": { "start": { - "line": 182, + "line": 192, "column": 28 }, "end": { - "line": 184, + "line": 194, "column": 5 } }, "body": [ { "type": "ThrowStatement", - "start": 5434, - "end": 5517, + "start": 5669, + "end": 5752, "loc": { "start": { - "line": 183, + "line": 193, "column": 6 }, "end": { - "line": 183, + "line": 193, "column": 89 } }, "argument": { "type": "NewExpression", - "start": 5440, - "end": 5516, + "start": 5675, + "end": 5751, "loc": { "start": { - "line": 183, + "line": 193, "column": 12 }, "end": { - "line": 183, + "line": 193, "column": 88 } }, "callee": { "type": "Identifier", - "start": 5444, - "end": 5449, + "start": 5679, + "end": 5684, "loc": { "start": { - "line": 183, + "line": 193, "column": 16 }, "end": { - "line": 183, + "line": 193, "column": 21 }, "identifierName": "Error" @@ -5111,30 +5111,30 @@ "arguments": [ { "type": "TemplateLiteral", - "start": 5450, - "end": 5515, + "start": 5685, + "end": 5750, "loc": { "start": { - "line": 183, + "line": 193, "column": 22 }, "end": { - "line": 183, + "line": 193, "column": 87 } }, "expressions": [ { "type": "Identifier", - "start": 5499, - "end": 5513, + "start": 5734, + "end": 5748, "loc": { "start": { - "line": 183, + "line": 193, "column": 71 }, "end": { - "line": 183, + "line": 193, "column": 85 }, "identifierName": "ajaxObjectType" @@ -5145,15 +5145,15 @@ "quasis": [ { "type": "TemplateElement", - "start": 5451, - "end": 5497, + "start": 5686, + "end": 5732, "loc": { "start": { - "line": 183, + "line": 193, "column": 23 }, "end": { - "line": 183, + "line": 193, "column": 69 } }, @@ -5165,15 +5165,15 @@ }, { "type": "TemplateElement", - "start": 5514, - "end": 5514, + "start": 5749, + "end": 5749, "loc": { "start": { - "line": 183, + "line": 193, "column": 86 }, "end": { - "line": 183, + "line": 193, "column": 86 } }, @@ -5195,29 +5195,29 @@ }, { "type": "ReturnStatement", - "start": 5528, - "end": 5553, + "start": 5763, + "end": 5788, "loc": { "start": { - "line": 185, + "line": 195, "column": 4 }, "end": { - "line": 185, + "line": 195, "column": 29 } }, "argument": { "type": "Identifier", - "start": 5535, - "end": 5552, + "start": 5770, + "end": 5787, "loc": { "start": { - "line": 185, + "line": 195, "column": 11 }, "end": { - "line": 185, + "line": 195, "column": 28 }, "identifierName": "actualAjaxHandler" @@ -5233,15 +5233,15 @@ { "type": "CommentBlock", "value": "*\n * Builds an AJAX handler function.\n * @access private\n * @return {Function} A callback function which performs\n * the actual ajax operation.\n ", - "start": 4722, - "end": 4900, + "start": 4957, + "end": 5135, "loc": { "start": { - "line": 159, + "line": 169, "column": 2 }, "end": { - "line": 164, + "line": 174, "column": 5 } } @@ -5251,15 +5251,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 5561, - "end": 5604, + "start": 5796, + "end": 5839, "loc": { "start": { - "line": 188, + "line": 198, "column": 2 }, "end": { - "line": 190, + "line": 200, "column": 5 } } @@ -5267,15 +5267,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 5608, - "end": 5669, + "start": 5843, + "end": 5904, "loc": { "start": { - "line": 192, + "line": 202, "column": 2 }, "end": { - "line": 196, + "line": 206, "column": 5 } } @@ -5284,15 +5284,15 @@ }, { "type": "ClassMethod", - "start": 5672, - "end": 5713, + "start": 5907, + "end": 5948, "loc": { "start": { - "line": 197, + "line": 207, "column": 2 }, "end": { - "line": 199, + "line": 209, "column": 3 } }, @@ -5300,15 +5300,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5676, - "end": 5681, + "start": 5911, + "end": 5916, "loc": { "start": { - "line": 197, + "line": 207, "column": 6 }, "end": { - "line": 197, + "line": 207, "column": 11 }, "identifierName": "total" @@ -5323,73 +5323,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5684, - "end": 5713, + "start": 5919, + "end": 5948, "loc": { "start": { - "line": 197, + "line": 207, "column": 14 }, "end": { - "line": 199, + "line": 209, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 5690, - "end": 5709, + "start": 5925, + "end": 5944, "loc": { "start": { - "line": 198, + "line": 208, "column": 4 }, "end": { - "line": 198, + "line": 208, "column": 23 } }, "argument": { "type": "MemberExpression", - "start": 5697, - "end": 5708, + "start": 5932, + "end": 5943, "loc": { "start": { - "line": 198, + "line": 208, "column": 11 }, "end": { - "line": 198, + "line": 208, "column": 22 } }, "object": { "type": "ThisExpression", - "start": 5697, - "end": 5701, + "start": 5932, + "end": 5936, "loc": { "start": { - "line": 198, + "line": 208, "column": 11 }, "end": { - "line": 198, + "line": 208, "column": 15 } } }, "property": { "type": "Identifier", - "start": 5702, - "end": 5708, + "start": 5937, + "end": 5943, "loc": { "start": { - "line": 198, + "line": 208, "column": 16 }, "end": { - "line": 198, + "line": 208, "column": 22 }, "identifierName": "_total" @@ -5407,15 +5407,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 5561, - "end": 5604, + "start": 5796, + "end": 5839, "loc": { "start": { - "line": 188, + "line": 198, "column": 2 }, "end": { - "line": 190, + "line": 200, "column": 5 } } @@ -5423,15 +5423,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 5608, - "end": 5669, + "start": 5843, + "end": 5904, "loc": { "start": { - "line": 192, + "line": 202, "column": 2 }, "end": { - "line": 196, + "line": 206, "column": 5 } } @@ -5441,15 +5441,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 5717, - "end": 5778, + "start": 5952, + "end": 6013, "loc": { "start": { - "line": 201, + "line": 211, "column": 2 }, "end": { - "line": 205, + "line": 215, "column": 5 } } @@ -5458,15 +5458,15 @@ }, { "type": "ClassMethod", - "start": 5781, - "end": 5820, + "start": 6016, + "end": 6055, "loc": { "start": { - "line": 206, + "line": 216, "column": 2 }, "end": { - "line": 208, + "line": 218, "column": 3 } }, @@ -5474,15 +5474,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5785, - "end": 5789, + "start": 6020, + "end": 6024, "loc": { "start": { - "line": 206, + "line": 216, "column": 6 }, "end": { - "line": 206, + "line": 216, "column": 10 }, "identifierName": "data" @@ -5497,73 +5497,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5792, - "end": 5820, + "start": 6027, + "end": 6055, "loc": { "start": { - "line": 206, + "line": 216, "column": 13 }, "end": { - "line": 208, + "line": 218, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 5798, - "end": 5816, + "start": 6033, + "end": 6051, "loc": { "start": { - "line": 207, + "line": 217, "column": 4 }, "end": { - "line": 207, + "line": 217, "column": 22 } }, "argument": { "type": "MemberExpression", - "start": 5805, - "end": 5815, + "start": 6040, + "end": 6050, "loc": { "start": { - "line": 207, + "line": 217, "column": 11 }, "end": { - "line": 207, + "line": 217, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 5805, - "end": 5809, + "start": 6040, + "end": 6044, "loc": { "start": { - "line": 207, + "line": 217, "column": 11 }, "end": { - "line": 207, + "line": 217, "column": 15 } } }, "property": { "type": "Identifier", - "start": 5810, - "end": 5815, + "start": 6045, + "end": 6050, "loc": { "start": { - "line": 207, + "line": 217, "column": 16 }, "end": { - "line": 207, + "line": 217, "column": 21 }, "identifierName": "_data" @@ -5581,15 +5581,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 5717, - "end": 5778, + "start": 5952, + "end": 6013, "loc": { "start": { - "line": 201, + "line": 211, "column": 2 }, "end": { - "line": 205, + "line": 215, "column": 5 } } @@ -5599,15 +5599,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 5824, - "end": 5865, + "start": 6059, + "end": 6100, "loc": { "start": { - "line": 210, + "line": 220, "column": 2 }, "end": { - "line": 213, + "line": 223, "column": 5 } } @@ -5616,15 +5616,15 @@ }, { "type": "ClassMethod", - "start": 5868, - "end": 6627, + "start": 6103, + "end": 6862, "loc": { "start": { - "line": 214, + "line": 224, "column": 2 }, "end": { - "line": 238, + "line": 248, "column": 3 } }, @@ -5632,15 +5632,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5874, - "end": 5881, + "start": 6109, + "end": 6116, "loc": { "start": { - "line": 214, + "line": 224, "column": 8 }, "end": { - "line": 214, + "line": 224, "column": 15 }, "identifierName": "_update" @@ -5655,59 +5655,59 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5884, - "end": 6627, + "start": 6119, + "end": 6862, "loc": { "start": { - "line": 214, + "line": 224, "column": 18 }, "end": { - "line": 238, + "line": 248, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 5890, - "end": 6044, + "start": 6125, + "end": 6279, "loc": { "start": { - "line": 215, + "line": 225, "column": 4 }, "end": { - "line": 221, + "line": 231, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5896, - "end": 6043, + "start": 6131, + "end": 6278, "loc": { "start": { - "line": 215, + "line": 225, "column": 10 }, "end": { - "line": 221, + "line": 231, "column": 5 } }, "id": { "type": "Identifier", - "start": 5896, - "end": 5912, + "start": 6131, + "end": 6147, "loc": { "start": { - "line": 215, + "line": 225, "column": 10 }, "end": { - "line": 215, + "line": 225, "column": 26 }, "identifierName": "requestStartArgs" @@ -5716,30 +5716,30 @@ }, "init": { "type": "ObjectExpression", - "start": 5915, - "end": 6043, + "start": 6150, + "end": 6278, "loc": { "start": { - "line": 215, + "line": 225, "column": 29 }, "end": { - "line": 221, + "line": 231, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 5923, - "end": 5935, + "start": 6158, + "end": 6170, "loc": { "start": { - "line": 216, + "line": 226, "column": 6 }, "end": { - "line": 216, + "line": 226, "column": 18 } }, @@ -5748,15 +5748,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5923, - "end": 5929, + "start": 6158, + "end": 6164, "loc": { "start": { - "line": 216, + "line": 226, "column": 6 }, "end": { - "line": 216, + "line": 226, "column": 12 }, "identifierName": "sender" @@ -5765,15 +5765,15 @@ }, "value": { "type": "ThisExpression", - "start": 5931, - "end": 5935, + "start": 6166, + "end": 6170, "loc": { "start": { - "line": 216, + "line": 226, "column": 14 }, "end": { - "line": 216, + "line": 226, "column": 18 } } @@ -5781,15 +5781,15 @@ }, { "type": "ObjectProperty", - "start": 5943, - "end": 5959, + "start": 6178, + "end": 6194, "loc": { "start": { - "line": 217, + "line": 227, "column": 6 }, "end": { - "line": 217, + "line": 227, "column": 22 } }, @@ -5798,15 +5798,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5943, - "end": 5952, + "start": 6178, + "end": 6187, "loc": { "start": { - "line": 217, + "line": 227, "column": 6 }, "end": { - "line": 217, + "line": 227, "column": 15 }, "identifierName": "prevented" @@ -5815,15 +5815,15 @@ }, "value": { "type": "BooleanLiteral", - "start": 5954, - "end": 5959, + "start": 6189, + "end": 6194, "loc": { "start": { - "line": 217, + "line": 227, "column": 17 }, "end": { - "line": 217, + "line": 227, "column": 22 } }, @@ -5832,15 +5832,15 @@ }, { "type": "ObjectMethod", - "start": 5967, - "end": 6036, + "start": 6202, + "end": 6271, "loc": { "start": { - "line": 218, + "line": 228, "column": 6 }, "end": { - "line": 220, + "line": 230, "column": 7 } }, @@ -5849,15 +5849,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5967, - "end": 5981, + "start": 6202, + "end": 6216, "loc": { "start": { - "line": 218, + "line": 228, "column": 6 }, "end": { - "line": 218, + "line": 228, "column": 20 }, "identifierName": "preventDefault" @@ -5872,73 +5872,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5984, - "end": 6036, + "start": 6219, + "end": 6271, "loc": { "start": { - "line": 218, + "line": 228, "column": 23 }, "end": { - "line": 220, + "line": 230, "column": 7 } }, "body": [ { "type": "ExpressionStatement", - "start": 5994, - "end": 6028, + "start": 6229, + "end": 6263, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 42 } }, "expression": { "type": "AssignmentExpression", - "start": 5994, - "end": 6027, + "start": 6229, + "end": 6262, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 41 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 5994, - "end": 6020, + "start": 6229, + "end": 6255, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 34 } }, "object": { "type": "Identifier", - "start": 5994, - "end": 6010, + "start": 6229, + "end": 6245, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 24 }, "identifierName": "requestStartArgs" @@ -5947,15 +5947,15 @@ }, "property": { "type": "Identifier", - "start": 6011, - "end": 6020, + "start": 6246, + "end": 6255, "loc": { "start": { - "line": 219, + "line": 229, "column": 25 }, "end": { - "line": 219, + "line": 229, "column": 34 }, "identifierName": "prevented" @@ -5966,15 +5966,15 @@ }, "right": { "type": "BooleanLiteral", - "start": 6023, - "end": 6027, + "start": 6258, + "end": 6262, "loc": { "start": { - "line": 219, + "line": 229, "column": 37 }, "end": { - "line": 219, + "line": 229, "column": 41 } }, @@ -5994,72 +5994,72 @@ }, { "type": "ExpressionStatement", - "start": 6049, - "end": 6093, + "start": 6284, + "end": 6328, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 48 } }, "expression": { "type": "CallExpression", - "start": 6049, - "end": 6092, + "start": 6284, + "end": 6327, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 47 } }, "callee": { "type": "MemberExpression", - "start": 6049, - "end": 6058, + "start": 6284, + "end": 6293, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 13 } }, "object": { "type": "ThisExpression", - "start": 6049, - "end": 6053, + "start": 6284, + "end": 6288, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6054, - "end": 6058, + "start": 6289, + "end": 6293, "loc": { "start": { - "line": 222, + "line": 232, "column": 9 }, "end": { - "line": 222, + "line": 232, "column": 13 }, "identifierName": "emit" @@ -6071,15 +6071,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 6059, - "end": 6073, + "start": 6294, + "end": 6308, "loc": { "start": { - "line": 222, + "line": 232, "column": 14 }, "end": { - "line": 222, + "line": 232, "column": 28 } }, @@ -6091,15 +6091,15 @@ }, { "type": "Identifier", - "start": 6075, - "end": 6091, + "start": 6310, + "end": 6326, "loc": { "start": { - "line": 222, + "line": 232, "column": 30 }, "end": { - "line": 222, + "line": 232, "column": 46 }, "identifierName": "requestStartArgs" @@ -6111,43 +6111,43 @@ }, { "type": "IfStatement", - "start": 6098, - "end": 6156, + "start": 6333, + "end": 6391, "loc": { "start": { - "line": 223, + "line": 233, "column": 4 }, "end": { - "line": 225, + "line": 235, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 6102, - "end": 6128, + "start": 6337, + "end": 6363, "loc": { "start": { - "line": 223, + "line": 233, "column": 8 }, "end": { - "line": 223, + "line": 233, "column": 34 } }, "object": { "type": "Identifier", - "start": 6102, - "end": 6118, + "start": 6337, + "end": 6353, "loc": { "start": { - "line": 223, + "line": 233, "column": 8 }, "end": { - "line": 223, + "line": 233, "column": 24 }, "identifierName": "requestStartArgs" @@ -6156,15 +6156,15 @@ }, "property": { "type": "Identifier", - "start": 6119, - "end": 6128, + "start": 6354, + "end": 6363, "loc": { "start": { - "line": 223, + "line": 233, "column": 25 }, "end": { - "line": 223, + "line": 233, "column": 34 }, "identifierName": "prevented" @@ -6175,44 +6175,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 6130, - "end": 6156, + "start": 6365, + "end": 6391, "loc": { "start": { - "line": 223, + "line": 233, "column": 36 }, "end": { - "line": 225, + "line": 235, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 6138, - "end": 6150, + "start": 6373, + "end": 6385, "loc": { "start": { - "line": 224, + "line": 234, "column": 6 }, "end": { - "line": 224, + "line": 234, "column": 18 } }, "argument": { "type": "NullLiteral", - "start": 6145, - "end": 6149, + "start": 6380, + "end": 6384, "loc": { "start": { - "line": 224, + "line": 234, "column": 13 }, "end": { - "line": 224, + "line": 234, "column": 17 } } @@ -6225,44 +6225,44 @@ }, { "type": "VariableDeclaration", - "start": 6161, - "end": 6206, + "start": 6396, + "end": 6441, "loc": { "start": { - "line": 226, + "line": 236, "column": 4 }, "end": { - "line": 226, + "line": 236, "column": 49 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6167, - "end": 6205, + "start": 6402, + "end": 6440, "loc": { "start": { - "line": 226, + "line": 236, "column": 10 }, "end": { - "line": 226, + "line": 236, "column": 48 } }, "id": { "type": "Identifier", - "start": 6167, - "end": 6178, + "start": 6402, + "end": 6413, "loc": { "start": { - "line": 226, + "line": 236, "column": 10 }, "end": { - "line": 226, + "line": 236, "column": 21 }, "identifierName": "ajaxHandler" @@ -6271,58 +6271,58 @@ }, "init": { "type": "CallExpression", - "start": 6181, - "end": 6205, + "start": 6416, + "end": 6440, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 48 } }, "callee": { "type": "MemberExpression", - "start": 6181, - "end": 6203, + "start": 6416, + "end": 6438, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 46 } }, "object": { "type": "ThisExpression", - "start": 6181, - "end": 6185, + "start": 6416, + "end": 6420, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 28 } } }, "property": { "type": "Identifier", - "start": 6186, - "end": 6203, + "start": 6421, + "end": 6438, "loc": { "start": { - "line": 226, + "line": 236, "column": 29 }, "end": { - "line": 226, + "line": 236, "column": 46 }, "identifierName": "_buildAjaxHandler" @@ -6339,44 +6339,44 @@ }, { "type": "VariableDeclaration", - "start": 6211, - "end": 6257, + "start": 6446, + "end": 6492, "loc": { "start": { - "line": 227, + "line": 237, "column": 4 }, "end": { - "line": 227, + "line": 237, "column": 50 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6217, - "end": 6256, + "start": 6452, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 10 }, "end": { - "line": 227, + "line": 237, "column": 49 } }, "id": { "type": "Identifier", - "start": 6217, - "end": 6225, + "start": 6452, + "end": 6460, "loc": { "start": { - "line": 227, + "line": 237, "column": 10 }, "end": { - "line": 227, + "line": 237, "column": 18 }, "identifierName": "response" @@ -6385,57 +6385,57 @@ }, "init": { "type": "AwaitExpression", - "start": 6228, - "end": 6256, + "start": 6463, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 21 }, "end": { - "line": 227, + "line": 237, "column": 49 } }, "argument": { "type": "CallExpression", - "start": 6234, - "end": 6256, + "start": 6469, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 49 } }, "callee": { "type": "MemberExpression", - "start": 6234, - "end": 6250, + "start": 6469, + "end": 6485, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 43 } }, "object": { "type": "Identifier", - "start": 6234, - "end": 6245, + "start": 6469, + "end": 6480, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 38 }, "identifierName": "ajaxHandler" @@ -6444,15 +6444,15 @@ }, "property": { "type": "Identifier", - "start": 6246, - "end": 6250, + "start": 6481, + "end": 6485, "loc": { "start": { - "line": 227, + "line": 237, "column": 39 }, "end": { - "line": 227, + "line": 237, "column": 43 }, "identifierName": "call" @@ -6464,15 +6464,15 @@ "arguments": [ { "type": "ThisExpression", - "start": 6251, - "end": 6255, + "start": 6486, + "end": 6490, "loc": { "start": { - "line": 227, + "line": 237, "column": 44 }, "end": { - "line": 227, + "line": 237, "column": 48 } } @@ -6486,72 +6486,72 @@ }, { "type": "ExpressionStatement", - "start": 6262, - "end": 6331, + "start": 6497, + "end": 6566, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 231, + "line": 241, "column": 7 } }, "expression": { "type": "CallExpression", - "start": 6262, - "end": 6330, + "start": 6497, + "end": 6565, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 231, + "line": 241, "column": 6 } }, "callee": { "type": "MemberExpression", - "start": 6262, - "end": 6271, + "start": 6497, + "end": 6506, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 228, + "line": 238, "column": 13 } }, "object": { "type": "ThisExpression", - "start": 6262, - "end": 6266, + "start": 6497, + "end": 6501, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 228, + "line": 238, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6267, - "end": 6271, + "start": 6502, + "end": 6506, "loc": { "start": { - "line": 228, + "line": 238, "column": 9 }, "end": { - "line": 228, + "line": 238, "column": 13 }, "identifierName": "emit" @@ -6563,15 +6563,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 6272, - "end": 6284, + "start": 6507, + "end": 6519, "loc": { "start": { - "line": 228, + "line": 238, "column": 14 }, "end": { - "line": 228, + "line": 238, "column": 26 } }, @@ -6583,30 +6583,30 @@ }, { "type": "ObjectExpression", - "start": 6286, - "end": 6329, + "start": 6521, + "end": 6564, "loc": { "start": { - "line": 228, + "line": 238, "column": 28 }, "end": { - "line": 231, + "line": 241, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 6294, - "end": 6306, + "start": 6529, + "end": 6541, "loc": { "start": { - "line": 229, + "line": 239, "column": 6 }, "end": { - "line": 229, + "line": 239, "column": 18 } }, @@ -6615,15 +6615,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6294, - "end": 6300, + "start": 6529, + "end": 6535, "loc": { "start": { - "line": 229, + "line": 239, "column": 6 }, "end": { - "line": 229, + "line": 239, "column": 12 }, "identifierName": "sender" @@ -6632,15 +6632,15 @@ }, "value": { "type": "ThisExpression", - "start": 6302, - "end": 6306, + "start": 6537, + "end": 6541, "loc": { "start": { - "line": 229, + "line": 239, "column": 14 }, "end": { - "line": 229, + "line": 239, "column": 18 } } @@ -6648,15 +6648,15 @@ }, { "type": "ObjectProperty", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 } }, @@ -6665,15 +6665,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 }, "identifierName": "response" @@ -6682,15 +6682,15 @@ }, "value": { "type": "Identifier", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 }, "identifierName": "response" @@ -6709,15 +6709,15 @@ { "type": "CommentLine", "value": " If not provided an object, use the default mapper", - "start": 6336, - "end": 6388, + "start": 6571, + "end": 6623, "loc": { "start": { - "line": 232, + "line": 242, "column": 4 }, "end": { - "line": 232, + "line": 242, "column": 56 } } @@ -6726,44 +6726,44 @@ }, { "type": "VariableDeclaration", - "start": 6393, - "end": 6474, + "start": 6628, + "end": 6709, "loc": { "start": { - "line": 233, + "line": 243, "column": 4 }, "end": { - "line": 233, + "line": 243, "column": 85 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6399, - "end": 6473, + "start": 6634, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 10 }, "end": { - "line": 233, + "line": 243, "column": 84 } }, "id": { "type": "Identifier", - "start": 6399, - "end": 6405, + "start": 6634, + "end": 6640, "loc": { "start": { - "line": 233, + "line": 243, "column": 10 }, "end": { - "line": 233, + "line": 243, "column": 16 }, "identifierName": "mapper" @@ -6773,72 +6773,72 @@ }, "init": { "type": "LogicalExpression", - "start": 6408, - "end": 6473, + "start": 6643, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 84 } }, "left": { "type": "MemberExpression", - "start": 6408, - "end": 6424, + "start": 6643, + "end": 6659, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 35 } }, "object": { "type": "MemberExpression", - "start": 6408, - "end": 6417, + "start": 6643, + "end": 6652, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 28 } }, "object": { "type": "ThisExpression", - "start": 6408, - "end": 6412, + "start": 6643, + "end": 6647, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 23 } } }, "property": { "type": "Identifier", - "start": 6413, - "end": 6417, + "start": 6648, + "end": 6652, "loc": { "start": { - "line": 233, + "line": 243, "column": 24 }, "end": { - "line": 233, + "line": 243, "column": 28 }, "identifierName": "ajax" @@ -6849,15 +6849,15 @@ }, "property": { "type": "Identifier", - "start": 6418, - "end": 6424, + "start": 6653, + "end": 6659, "loc": { "start": { - "line": 233, + "line": 243, "column": 29 }, "end": { - "line": 233, + "line": 243, "column": 35 }, "identifierName": "mapper" @@ -6869,71 +6869,71 @@ "operator": "||", "right": { "type": "MemberExpression", - "start": 6428, - "end": 6473, + "start": 6663, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 84 } }, "object": { "type": "MemberExpression", - "start": 6428, - "end": 6466, + "start": 6663, + "end": 6701, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 77 } }, "object": { "type": "MemberExpression", - "start": 6428, - "end": 6461, + "start": 6663, + "end": 6696, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 72 } }, "object": { "type": "MemberExpression", - "start": 6428, - "end": 6452, + "start": 6663, + "end": 6687, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 63 } }, "object": { "type": "Identifier", - "start": 6428, - "end": 6442, + "start": 6663, + "end": 6677, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 53 }, "identifierName": "AjaxDatasource" @@ -6942,15 +6942,15 @@ }, "property": { "type": "Identifier", - "start": 6443, - "end": 6452, + "start": 6678, + "end": 6687, "loc": { "start": { - "line": 233, + "line": 243, "column": 54 }, "end": { - "line": 233, + "line": 243, "column": 63 }, "identifierName": "prototype" @@ -6961,15 +6961,15 @@ }, "property": { "type": "Identifier", - "start": 6453, - "end": 6461, + "start": 6688, + "end": 6696, "loc": { "start": { - "line": 233, + "line": 243, "column": 64 }, "end": { - "line": 233, + "line": 243, "column": 72 }, "identifierName": "defaults" @@ -6980,15 +6980,15 @@ }, "property": { "type": "Identifier", - "start": 6462, - "end": 6466, + "start": 6697, + "end": 6701, "loc": { "start": { - "line": 233, + "line": 243, "column": 73 }, "end": { - "line": 233, + "line": 243, "column": 77 }, "identifierName": "ajax" @@ -6999,15 +6999,15 @@ }, "property": { "type": "Identifier", - "start": 6467, - "end": 6473, + "start": 6702, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 78 }, "end": { - "line": 233, + "line": 243, "column": 84 }, "identifierName": "mapper" @@ -7025,15 +7025,15 @@ { "type": "CommentLine", "value": " If not provided an object, use the default mapper", - "start": 6336, - "end": 6388, + "start": 6571, + "end": 6623, "loc": { "start": { - "line": 232, + "line": 242, "column": 4 }, "end": { - "line": 232, + "line": 242, "column": 56 } } @@ -7042,44 +7042,44 @@ }, { "type": "VariableDeclaration", - "start": 6479, - "end": 6528, + "start": 6714, + "end": 6763, "loc": { "start": { - "line": 234, + "line": 244, "column": 4 }, "end": { - "line": 234, + "line": 244, "column": 53 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6485, - "end": 6527, + "start": 6720, + "end": 6762, "loc": { "start": { - "line": 234, + "line": 244, "column": 10 }, "end": { - "line": 234, + "line": 244, "column": 52 } }, "id": { "type": "Identifier", - "start": 6485, - "end": 6497, + "start": 6720, + "end": 6732, "loc": { "start": { - "line": 234, + "line": 244, "column": 10 }, "end": { - "line": 234, + "line": 244, "column": 22 }, "identifierName": "mappedObject" @@ -7088,43 +7088,43 @@ }, "init": { "type": "CallExpression", - "start": 6500, - "end": 6527, + "start": 6735, + "end": 6762, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 52 } }, "callee": { "type": "MemberExpression", - "start": 6500, - "end": 6511, + "start": 6735, + "end": 6746, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 36 } }, "object": { "type": "Identifier", - "start": 6500, - "end": 6506, + "start": 6735, + "end": 6741, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 31 }, "identifierName": "mapper" @@ -7133,15 +7133,15 @@ }, "property": { "type": "Identifier", - "start": 6507, - "end": 6511, + "start": 6742, + "end": 6746, "loc": { "start": { - "line": 234, + "line": 244, "column": 32 }, "end": { - "line": 234, + "line": 244, "column": 36 }, "identifierName": "call" @@ -7153,30 +7153,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 6512, - "end": 6516, + "start": 6747, + "end": 6751, "loc": { "start": { - "line": 234, + "line": 244, "column": 37 }, "end": { - "line": 234, + "line": 244, "column": 41 } } }, { "type": "Identifier", - "start": 6518, - "end": 6526, + "start": 6753, + "end": 6761, "loc": { "start": { - "line": 234, + "line": 244, "column": 43 }, "end": { - "line": 234, + "line": 244, "column": 51 }, "identifierName": "response" @@ -7191,73 +7191,73 @@ }, { "type": "ExpressionStatement", - "start": 6533, - "end": 6564, + "start": 6768, + "end": 6799, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 35 } }, "expression": { "type": "AssignmentExpression", - "start": 6533, - "end": 6563, + "start": 6768, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 34 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 6533, - "end": 6543, + "start": 6768, + "end": 6778, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 6533, - "end": 6537, + "start": 6768, + "end": 6772, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6538, - "end": 6543, + "start": 6773, + "end": 6778, "loc": { "start": { - "line": 235, + "line": 245, "column": 9 }, "end": { - "line": 235, + "line": 245, "column": 14 }, "identifierName": "_data" @@ -7268,29 +7268,29 @@ }, "right": { "type": "MemberExpression", - "start": 6546, - "end": 6563, + "start": 6781, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 17 }, "end": { - "line": 235, + "line": 245, "column": 34 } }, "object": { "type": "Identifier", - "start": 6546, - "end": 6558, + "start": 6781, + "end": 6793, "loc": { "start": { - "line": 235, + "line": 245, "column": 17 }, "end": { - "line": 235, + "line": 245, "column": 29 }, "identifierName": "mappedObject" @@ -7299,15 +7299,15 @@ }, "property": { "type": "Identifier", - "start": 6559, - "end": 6563, + "start": 6794, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 30 }, "end": { - "line": 235, + "line": 245, "column": 34 }, "identifierName": "data" @@ -7320,73 +7320,73 @@ }, { "type": "ExpressionStatement", - "start": 6569, - "end": 6602, + "start": 6804, + "end": 6837, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 37 } }, "expression": { "type": "AssignmentExpression", - "start": 6569, - "end": 6601, + "start": 6804, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 36 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 6569, - "end": 6580, + "start": 6804, + "end": 6815, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 15 } }, "object": { "type": "ThisExpression", - "start": 6569, - "end": 6573, + "start": 6804, + "end": 6808, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6574, - "end": 6580, + "start": 6809, + "end": 6815, "loc": { "start": { - "line": 236, + "line": 246, "column": 9 }, "end": { - "line": 236, + "line": 246, "column": 15 }, "identifierName": "_total" @@ -7397,29 +7397,29 @@ }, "right": { "type": "MemberExpression", - "start": 6583, - "end": 6601, + "start": 6818, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 18 }, "end": { - "line": 236, + "line": 246, "column": 36 } }, "object": { "type": "Identifier", - "start": 6583, - "end": 6595, + "start": 6818, + "end": 6830, "loc": { "start": { - "line": 236, + "line": 246, "column": 18 }, "end": { - "line": 236, + "line": 246, "column": 30 }, "identifierName": "mappedObject" @@ -7428,15 +7428,15 @@ }, "property": { "type": "Identifier", - "start": 6596, - "end": 6601, + "start": 6831, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 31 }, "end": { - "line": 236, + "line": 246, "column": 36 }, "identifierName": "total" @@ -7449,29 +7449,29 @@ }, { "type": "ReturnStatement", - "start": 6607, - "end": 6623, + "start": 6842, + "end": 6858, "loc": { "start": { - "line": 237, + "line": 247, "column": 4 }, "end": { - "line": 237, + "line": 247, "column": 20 } }, "argument": { "type": "Identifier", - "start": 6614, - "end": 6622, + "start": 6849, + "end": 6857, "loc": { "start": { - "line": 237, + "line": 247, "column": 11 }, "end": { - "line": 237, + "line": 247, "column": 19 }, "identifierName": "response" @@ -7486,15 +7486,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 5824, - "end": 5865, + "start": 6059, + "end": 6100, "loc": { "start": { - "line": 210, + "line": 220, "column": 2 }, "end": { - "line": 213, + "line": 223, "column": 5 } } @@ -7509,72 +7509,72 @@ }, { "type": "ExpressionStatement", - "start": 6631, - "end": 6972, + "start": 6866, + "end": 7207, "loc": { "start": { - "line": 241, + "line": 251, "column": 0 }, "end": { - "line": 253, + "line": 263, "column": 2 } }, "expression": { "type": "AssignmentExpression", - "start": 6631, - "end": 6971, + "start": 6866, + "end": 7206, "loc": { "start": { - "line": 241, + "line": 251, "column": 0 }, "end": { - "line": 253, + "line": 263, "column": 1 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 6631, - "end": 6664, + "start": 6866, + "end": 6899, "loc": { "start": { - "line": 241, + "line": 251, "column": 0 }, "end": { - "line": 241, + "line": 251, "column": 33 } }, "object": { "type": "MemberExpression", - "start": 6631, - "end": 6655, + "start": 6866, + "end": 6890, "loc": { "start": { - "line": 241, + "line": 251, "column": 0 }, "end": { - "line": 241, + "line": 251, "column": 24 } }, "object": { "type": "Identifier", - "start": 6631, - "end": 6645, + "start": 6866, + "end": 6880, "loc": { "start": { - "line": 241, + "line": 251, "column": 0 }, "end": { - "line": 241, + "line": 251, "column": 14 }, "identifierName": "AjaxDatasource" @@ -7583,15 +7583,15 @@ }, "property": { "type": "Identifier", - "start": 6646, - "end": 6655, + "start": 6881, + "end": 6890, "loc": { "start": { - "line": 241, + "line": 251, "column": 15 }, "end": { - "line": 241, + "line": 251, "column": 24 }, "identifierName": "prototype" @@ -7602,15 +7602,15 @@ }, "property": { "type": "Identifier", - "start": 6656, - "end": 6664, + "start": 6891, + "end": 6899, "loc": { "start": { - "line": 241, + "line": 251, "column": 25 }, "end": { - "line": 241, + "line": 251, "column": 33 }, "identifierName": "defaults" @@ -7621,30 +7621,30 @@ }, "right": { "type": "ObjectExpression", - "start": 6667, - "end": 6971, + "start": 6902, + "end": 7206, "loc": { "start": { - "line": 241, + "line": 251, "column": 36 }, "end": { - "line": 253, + "line": 263, "column": 1 } }, "properties": [ { "type": "ObjectProperty", - "start": 6671, - "end": 6687, + "start": 6906, + "end": 6922, "loc": { "start": { - "line": 242, + "line": 252, "column": 2 }, "end": { - "line": 242, + "line": 252, "column": 18 } }, @@ -7653,15 +7653,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6671, - "end": 6683, + "start": 6906, + "end": 6918, "loc": { "start": { - "line": 242, + "line": 252, "column": 2 }, "end": { - "line": 242, + "line": 252, "column": 14 }, "identifierName": "queryBuilder" @@ -7670,15 +7670,15 @@ }, "value": { "type": "ObjectExpression", - "start": 6685, - "end": 6687, + "start": 6920, + "end": 6922, "loc": { "start": { - "line": 242, + "line": 252, "column": 16 }, "end": { - "line": 242, + "line": 252, "column": 18 } }, @@ -7687,15 +7687,15 @@ }, { "type": "ObjectProperty", - "start": 6753, - "end": 6968, + "start": 6988, + "end": 7203, "loc": { "start": { - "line": 244, + "line": 254, "column": 2 }, "end": { - "line": 252, + "line": 262, "column": 3 } }, @@ -7704,15 +7704,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6753, - "end": 6757, + "start": 6988, + "end": 6992, "loc": { "start": { - "line": 244, + "line": 254, "column": 2 }, "end": { - "line": 244, + "line": 254, "column": 6 }, "identifierName": "ajax" @@ -7722,30 +7722,30 @@ }, "value": { "type": "ObjectExpression", - "start": 6759, - "end": 6968, + "start": 6994, + "end": 7203, "loc": { "start": { - "line": 244, + "line": 254, "column": 8 }, "end": { - "line": 252, + "line": 262, "column": 3 } }, "properties": [ { "type": "ObjectMethod", - "start": 6855, - "end": 6963, + "start": 7090, + "end": 7198, "loc": { "start": { - "line": 246, + "line": 256, "column": 4 }, "end": { - "line": 251, + "line": 261, "column": 5 } }, @@ -7754,15 +7754,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6855, - "end": 6861, + "start": 7090, + "end": 7096, "loc": { "start": { - "line": 246, + "line": 256, "column": 4 }, "end": { - "line": 246, + "line": 256, "column": 10 }, "identifierName": "mapper" @@ -7778,15 +7778,15 @@ "params": [ { "type": "Identifier", - "start": 6862, - "end": 6870, + "start": 7097, + "end": 7105, "loc": { "start": { - "line": 246, + "line": 256, "column": 11 }, "end": { - "line": 246, + "line": 256, "column": 19 }, "identifierName": "response" @@ -7796,59 +7796,59 @@ ], "body": { "type": "BlockStatement", - "start": 6872, - "end": 6963, + "start": 7107, + "end": 7198, "loc": { "start": { - "line": 246, + "line": 256, "column": 21 }, "end": { - "line": 251, + "line": 261, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 6880, - "end": 6957, + "start": 7115, + "end": 7192, "loc": { "start": { - "line": 247, + "line": 257, "column": 6 }, "end": { - "line": 250, + "line": 260, "column": 8 } }, "argument": { "type": "ObjectExpression", - "start": 6887, - "end": 6956, + "start": 7122, + "end": 7191, "loc": { "start": { - "line": 247, + "line": 257, "column": 13 }, "end": { - "line": 250, + "line": 260, "column": 7 } }, "properties": [ { "type": "ObjectProperty", - "start": 6897, - "end": 6916, + "start": 7132, + "end": 7151, "loc": { "start": { - "line": 248, + "line": 258, "column": 8 }, "end": { - "line": 248, + "line": 258, "column": 27 } }, @@ -7857,15 +7857,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6897, - "end": 6901, + "start": 7132, + "end": 7136, "loc": { "start": { - "line": 248, + "line": 258, "column": 8 }, "end": { - "line": 248, + "line": 258, "column": 12 }, "identifierName": "data" @@ -7874,29 +7874,29 @@ }, "value": { "type": "MemberExpression", - "start": 6903, - "end": 6916, + "start": 7138, + "end": 7151, "loc": { "start": { - "line": 248, + "line": 258, "column": 14 }, "end": { - "line": 248, + "line": 258, "column": 27 } }, "object": { "type": "Identifier", - "start": 6903, - "end": 6911, + "start": 7138, + "end": 7146, "loc": { "start": { - "line": 248, + "line": 258, "column": 14 }, "end": { - "line": 248, + "line": 258, "column": 22 }, "identifierName": "response" @@ -7905,15 +7905,15 @@ }, "property": { "type": "Identifier", - "start": 6912, - "end": 6916, + "start": 7147, + "end": 7151, "loc": { "start": { - "line": 248, + "line": 258, "column": 23 }, "end": { - "line": 248, + "line": 258, "column": 27 }, "identifierName": "data" @@ -7925,15 +7925,15 @@ }, { "type": "ObjectProperty", - "start": 6926, - "end": 6947, + "start": 7161, + "end": 7182, "loc": { "start": { - "line": 249, + "line": 259, "column": 8 }, "end": { - "line": 249, + "line": 259, "column": 29 } }, @@ -7942,15 +7942,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6926, - "end": 6931, + "start": 7161, + "end": 7166, "loc": { "start": { - "line": 249, + "line": 259, "column": 8 }, "end": { - "line": 249, + "line": 259, "column": 13 }, "identifierName": "total" @@ -7959,29 +7959,29 @@ }, "value": { "type": "MemberExpression", - "start": 6933, - "end": 6947, + "start": 7168, + "end": 7182, "loc": { "start": { - "line": 249, + "line": 259, "column": 15 }, "end": { - "line": 249, + "line": 259, "column": 29 } }, "object": { "type": "Identifier", - "start": 6933, - "end": 6941, + "start": 7168, + "end": 7176, "loc": { "start": { - "line": 249, + "line": 259, "column": 15 }, "end": { - "line": 249, + "line": 259, "column": 23 }, "identifierName": "response" @@ -7990,15 +7990,15 @@ }, "property": { "type": "Identifier", - "start": 6942, - "end": 6947, + "start": 7177, + "end": 7182, "loc": { "start": { - "line": 249, + "line": 259, "column": 24 }, "end": { - "line": 249, + "line": 259, "column": 29 }, "identifierName": "total" @@ -8018,15 +8018,15 @@ { "type": "CommentLine", "value": " Axios options object", - "start": 6761, - "end": 6784, + "start": 6996, + "end": 7019, "loc": { "start": { - "line": 244, + "line": 254, "column": 10 }, "end": { - "line": 244, + "line": 254, "column": 33 } } @@ -8034,15 +8034,15 @@ { "type": "CommentLine", "value": " Maps the response to return the data in an expected format", - "start": 6789, - "end": 6850, + "start": 7024, + "end": 7085, "loc": { "start": { - "line": 245, + "line": 255, "column": 4 }, "end": { - "line": 245, + "line": 255, "column": 65 } } @@ -8055,15 +8055,15 @@ { "type": "CommentLine", "value": " ajax can be an object, function, or even a simple string", - "start": 6691, - "end": 6750, + "start": 6926, + "end": 6985, "loc": { "start": { - "line": 243, + "line": 253, "column": 2 }, "end": { - "line": 243, + "line": 253, "column": 61 } } @@ -8076,29 +8076,29 @@ }, { "type": "Identifier", - "start": 6974, - "end": 7004, + "start": 7209, + "end": 7239, "loc": { "start": { - "line": 255, + "line": 265, "column": 0 }, "end": { - "line": 255, + "line": 265, "column": 30 } }, "declaration": { "type": "Identifier", - "start": 6989, - "end": 7003, + "start": 7224, + "end": 7238, "loc": { "start": { - "line": 255, + "line": 265, "column": 15 }, "end": { - "line": 255, + "line": 265, "column": 29 }, "identifierName": "AjaxDatasource" @@ -8111,43 +8111,43 @@ }, { "type": "ExportDefaultDeclaration", - "start": 6974, - "end": 7004, + "start": 7209, + "end": 7239, "loc": { "start": { - "line": 255, + "line": 265, "column": 0 }, "end": { - "line": 255, + "line": 265, "column": 30 } }, "declaration": { "type": "ClassDeclaration", - "start": 1805, - "end": 6629, + "start": 2040, + "end": 6864, "loc": { "start": { - "line": 57, + "line": 67, "column": 0 }, "end": { - "line": 239, + "line": 249, "column": 1 } }, "id": { "type": "Identifier", - "start": 1811, - "end": 1825, + "start": 2046, + "end": 2060, "loc": { "start": { - "line": 57, + "line": 67, "column": 6 }, "end": { - "line": 57, + "line": 67, "column": 20 }, "identifierName": "AjaxDatasource" @@ -8157,15 +8157,15 @@ }, "superClass": { "type": "Identifier", - "start": 1834, - "end": 1848, + "start": 2069, + "end": 2083, "loc": { "start": { - "line": 57, + "line": 67, "column": 29 }, "end": { - "line": 57, + "line": 67, "column": 43 }, "identifierName": "DatasourceBase" @@ -8174,30 +8174,30 @@ }, "body": { "type": "ClassBody", - "start": 1849, - "end": 6629, + "start": 2084, + "end": 6864, "loc": { "start": { - "line": 57, + "line": 67, "column": 44 }, "end": { - "line": 239, + "line": 249, "column": 1 } }, "body": [ { "type": "ClassMethod", - "start": 2292, - "end": 3802, + "start": 2527, + "end": 4037, "loc": { "start": { - "line": 71, + "line": 81, "column": 2 }, "end": { - "line": 134, + "line": 144, "column": 3 } }, @@ -8205,15 +8205,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2292, - "end": 2303, + "start": 2527, + "end": 2538, "loc": { "start": { - "line": 71, + "line": 81, "column": 2 }, "end": { - "line": 71, + "line": 81, "column": 13 }, "identifierName": "constructor" @@ -8229,29 +8229,29 @@ "params": [ { "type": "AssignmentPattern", - "start": 2304, - "end": 2316, + "start": 2539, + "end": 2551, "loc": { "start": { - "line": 71, + "line": 81, "column": 14 }, "end": { - "line": 71, + "line": 81, "column": 26 } }, "left": { "type": "Identifier", - "start": 2304, - "end": 2311, + "start": 2539, + "end": 2546, "loc": { "start": { - "line": 71, + "line": 81, "column": 14 }, "end": { - "line": 71, + "line": 81, "column": 21 }, "identifierName": "options" @@ -8260,15 +8260,15 @@ }, "right": { "type": "ObjectExpression", - "start": 2314, - "end": 2316, + "start": 2549, + "end": 2551, "loc": { "start": { - "line": 71, + "line": 81, "column": 24 }, "end": { - "line": 71, + "line": 81, "column": 26 } }, @@ -8278,74 +8278,74 @@ ], "body": { "type": "BlockStatement", - "start": 2318, - "end": 3802, + "start": 2553, + "end": 4037, "loc": { "start": { - "line": 71, + "line": 81, "column": 28 }, "end": { - "line": 134, + "line": 144, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 2324, - "end": 2347, + "start": 2559, + "end": 2582, "loc": { "start": { - "line": 72, + "line": 82, "column": 4 }, "end": { - "line": 72, + "line": 82, "column": 27 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 2328, - "end": 2346, + "start": 2563, + "end": 2581, "loc": { "start": { - "line": 72, + "line": 82, "column": 8 }, "end": { - "line": 72, + "line": 82, "column": 26 } }, "id": { "type": "ObjectPattern", - "start": 2328, - "end": 2336, + "start": 2563, + "end": 2571, "loc": { "start": { - "line": 72, + "line": 82, "column": 8 }, "end": { - "line": 72, + "line": 82, "column": 16 } }, "properties": [ { "type": "ObjectProperty", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 } }, @@ -8354,15 +8354,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 }, "identifierName": "ajax" @@ -8371,15 +8371,15 @@ }, "value": { "type": "Identifier", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 }, "identifierName": "ajax" @@ -8394,15 +8394,15 @@ }, "init": { "type": "Identifier", - "start": 2339, - "end": 2346, + "start": 2574, + "end": 2581, "loc": { "start": { - "line": 72, + "line": 82, "column": 19 }, "end": { - "line": 72, + "line": 82, "column": 26 }, "identifierName": "options" @@ -8415,43 +8415,43 @@ }, { "type": "IfStatement", - "start": 2352, - "end": 2489, + "start": 2587, + "end": 2724, "loc": { "start": { - "line": 73, + "line": 83, "column": 4 }, "end": { - "line": 78, + "line": 88, "column": 5 } }, "test": { "type": "LogicalExpression", - "start": 2356, - "end": 2388, + "start": 2591, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 8 }, "end": { - "line": 73, + "line": 83, "column": 40 } }, "left": { "type": "Identifier", - "start": 2356, - "end": 2360, + "start": 2591, + "end": 2595, "loc": { "start": { - "line": 73, + "line": 83, "column": 8 }, "end": { - "line": 73, + "line": 83, "column": 12 }, "identifierName": "ajax" @@ -8461,29 +8461,29 @@ "operator": "&&", "right": { "type": "BinaryExpression", - "start": 2364, - "end": 2388, + "start": 2599, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 16 }, "end": { - "line": 73, + "line": 83, "column": 40 } }, "left": { "type": "UnaryExpression", - "start": 2364, - "end": 2375, + "start": 2599, + "end": 2610, "loc": { "start": { - "line": 73, + "line": 83, "column": 16 }, "end": { - "line": 73, + "line": 83, "column": 27 } }, @@ -8491,15 +8491,15 @@ "prefix": true, "argument": { "type": "Identifier", - "start": 2371, - "end": 2375, + "start": 2606, + "end": 2610, "loc": { "start": { - "line": 73, + "line": 83, "column": 23 }, "end": { - "line": 73, + "line": 83, "column": 27 }, "identifierName": "ajax" @@ -8513,15 +8513,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 2380, - "end": 2388, + "start": 2615, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 32 }, "end": { - "line": 73, + "line": 83, "column": 40 } }, @@ -8535,59 +8535,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 2390, - "end": 2489, + "start": 2625, + "end": 2724, "loc": { "start": { - "line": 73, + "line": 83, "column": 42 }, "end": { - "line": 78, + "line": 88, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 2398, - "end": 2483, + "start": 2633, + "end": 2718, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 77, + "line": 87, "column": 8 } }, "expression": { "type": "AssignmentExpression", - "start": 2398, - "end": 2482, + "start": 2633, + "end": 2717, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 77, + "line": 87, "column": 7 } }, "operator": "=", "left": { "type": "Identifier", - "start": 2398, - "end": 2402, + "start": 2633, + "end": 2637, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 74, + "line": 84, "column": 10 }, "identifierName": "ajax" @@ -8596,86 +8596,86 @@ }, "right": { "type": "ObjectExpression", - "start": 2405, - "end": 2482, + "start": 2640, + "end": 2717, "loc": { "start": { - "line": 74, + "line": 84, "column": 13 }, "end": { - "line": 77, + "line": 87, "column": 7 } }, "properties": [ { "type": "SpreadProperty", - "start": 2415, - "end": 2456, + "start": 2650, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 8 }, "end": { - "line": 75, + "line": 85, "column": 49 } }, "argument": { "type": "MemberExpression", - "start": 2418, - "end": 2456, + "start": 2653, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 49 } }, "object": { "type": "MemberExpression", - "start": 2418, - "end": 2451, + "start": 2653, + "end": 2686, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 44 } }, "object": { "type": "MemberExpression", - "start": 2418, - "end": 2442, + "start": 2653, + "end": 2677, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 35 } }, "object": { "type": "Identifier", - "start": 2418, - "end": 2432, + "start": 2653, + "end": 2667, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 25 }, "identifierName": "AjaxDatasource" @@ -8684,15 +8684,15 @@ }, "property": { "type": "Identifier", - "start": 2433, - "end": 2442, + "start": 2668, + "end": 2677, "loc": { "start": { - "line": 75, + "line": 85, "column": 26 }, "end": { - "line": 75, + "line": 85, "column": 35 }, "identifierName": "prototype" @@ -8703,15 +8703,15 @@ }, "property": { "type": "Identifier", - "start": 2443, - "end": 2451, + "start": 2678, + "end": 2686, "loc": { "start": { - "line": 75, + "line": 85, "column": 36 }, "end": { - "line": 75, + "line": 85, "column": 44 }, "identifierName": "defaults" @@ -8722,15 +8722,15 @@ }, "property": { "type": "Identifier", - "start": 2452, - "end": 2456, + "start": 2687, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 45 }, "end": { - "line": 75, + "line": 85, "column": 49 }, "identifierName": "ajax" @@ -8742,29 +8742,29 @@ }, { "type": "SpreadProperty", - "start": 2466, - "end": 2473, + "start": 2701, + "end": 2708, "loc": { "start": { - "line": 76, + "line": 86, "column": 8 }, "end": { - "line": 76, + "line": 86, "column": 15 } }, "argument": { "type": "Identifier", - "start": 2469, - "end": 2473, + "start": 2704, + "end": 2708, "loc": { "start": { - "line": 76, + "line": 86, "column": 11 }, "end": { - "line": 76, + "line": 86, "column": 15 }, "identifierName": "ajax" @@ -8783,44 +8783,44 @@ }, { "type": "VariableDeclaration", - "start": 2495, - "end": 2599, + "start": 2730, + "end": 2834, "loc": { "start": { - "line": 80, + "line": 90, "column": 4 }, "end": { - "line": 84, + "line": 94, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 2501, - "end": 2598, + "start": 2736, + "end": 2833, "loc": { "start": { - "line": 80, + "line": 90, "column": 10 }, "end": { - "line": 84, + "line": 94, "column": 5 } }, "id": { "type": "Identifier", - "start": 2501, - "end": 2514, + "start": 2736, + "end": 2749, "loc": { "start": { - "line": 80, + "line": 90, "column": 10 }, "end": { - "line": 80, + "line": 90, "column": 23 }, "identifierName": "mergedOptions" @@ -8829,72 +8829,72 @@ }, "init": { "type": "ObjectExpression", - "start": 2517, - "end": 2598, + "start": 2752, + "end": 2833, "loc": { "start": { - "line": 80, + "line": 90, "column": 26 }, "end": { - "line": 84, + "line": 94, "column": 5 } }, "properties": [ { "type": "SpreadProperty", - "start": 2525, - "end": 2561, + "start": 2760, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 6 }, "end": { - "line": 81, + "line": 91, "column": 42 } }, "argument": { "type": "MemberExpression", - "start": 2528, - "end": 2561, + "start": 2763, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 42 } }, "object": { "type": "MemberExpression", - "start": 2528, - "end": 2552, + "start": 2763, + "end": 2787, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 33 } }, "object": { "type": "Identifier", - "start": 2528, - "end": 2542, + "start": 2763, + "end": 2777, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 23 }, "identifierName": "AjaxDatasource" @@ -8903,15 +8903,15 @@ }, "property": { "type": "Identifier", - "start": 2543, - "end": 2552, + "start": 2778, + "end": 2787, "loc": { "start": { - "line": 81, + "line": 91, "column": 24 }, "end": { - "line": 81, + "line": 91, "column": 33 }, "identifierName": "prototype" @@ -8922,15 +8922,15 @@ }, "property": { "type": "Identifier", - "start": 2553, - "end": 2561, + "start": 2788, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 34 }, "end": { - "line": 81, + "line": 91, "column": 42 }, "identifierName": "defaults" @@ -8942,29 +8942,29 @@ }, { "type": "SpreadProperty", - "start": 2569, - "end": 2579, + "start": 2804, + "end": 2814, "loc": { "start": { - "line": 82, + "line": 92, "column": 6 }, "end": { - "line": 82, + "line": 92, "column": 16 } }, "argument": { "type": "Identifier", - "start": 2572, - "end": 2579, + "start": 2807, + "end": 2814, "loc": { "start": { - "line": 82, + "line": 92, "column": 9 }, "end": { - "line": 82, + "line": 92, "column": 16 }, "identifierName": "options" @@ -8974,15 +8974,15 @@ }, { "type": "ObjectProperty", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 } }, @@ -8991,15 +8991,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 }, "identifierName": "ajax" @@ -9008,15 +9008,15 @@ }, "value": { "type": "Identifier", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 }, "identifierName": "ajax" @@ -9035,43 +9035,43 @@ }, { "type": "ExpressionStatement", - "start": 2605, - "end": 2626, + "start": 2840, + "end": 2861, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 25 } }, "expression": { "type": "CallExpression", - "start": 2605, - "end": 2625, + "start": 2840, + "end": 2860, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 24 } }, "callee": { "type": "Super", - "start": 2605, - "end": 2610, + "start": 2840, + "end": 2845, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 9 } } @@ -9079,15 +9079,15 @@ "arguments": [ { "type": "Identifier", - "start": 2611, - "end": 2624, + "start": 2846, + "end": 2859, "loc": { "start": { - "line": 86, + "line": 96, "column": 10 }, "end": { - "line": 86, + "line": 96, "column": 23 }, "identifierName": "mergedOptions" @@ -9100,15 +9100,15 @@ { "type": "CommentBlock", "value": "*\n * The total amount of data items to page through.\n *\n * @access private\n * @type {Number}\n ", - "start": 2632, - "end": 2750, + "start": 2867, + "end": 2985, "loc": { "start": { - "line": 88, + "line": 98, "column": 4 }, "end": { - "line": 93, + "line": 103, "column": 7 } } @@ -9117,58 +9117,58 @@ }, { "type": "ExpressionStatement", - "start": 2755, - "end": 2774, + "start": 2990, + "end": 3009, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 23 } }, "expression": { "type": "AssignmentExpression", - "start": 2755, - "end": 2773, + "start": 2990, + "end": 3008, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 22 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2755, - "end": 2766, + "start": 2990, + "end": 3001, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 15 } }, "object": { "type": "ThisExpression", - "start": 2755, - "end": 2759, + "start": 2990, + "end": 2994, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 8 } }, @@ -9176,15 +9176,15 @@ }, "property": { "type": "Identifier", - "start": 2760, - "end": 2766, + "start": 2995, + "end": 3001, "loc": { "start": { - "line": 94, + "line": 104, "column": 9 }, "end": { - "line": 94, + "line": 104, "column": 15 }, "identifierName": "_total" @@ -9196,15 +9196,15 @@ }, "right": { "type": "NullLiteral", - "start": 2769, - "end": 2773, + "start": 3004, + "end": 3008, "loc": { "start": { - "line": 94, + "line": 104, "column": 18 }, "end": { - "line": 94, + "line": 104, "column": 22 } } @@ -9215,15 +9215,15 @@ { "type": "CommentBlock", "value": "*\n * The total amount of data items to page through.\n *\n * @access private\n * @type {Number}\n ", - "start": 2632, - "end": 2750, + "start": 2867, + "end": 2985, "loc": { "start": { - "line": 88, + "line": 98, "column": 4 }, "end": { - "line": 93, + "line": 103, "column": 7 } } @@ -9233,15 +9233,15 @@ { "type": "CommentBlock", "value": "*\n * The array of data items.\n *\n * @access private\n * @type {?Array}\n ", - "start": 2780, - "end": 2875, + "start": 3015, + "end": 3110, "loc": { "start": { - "line": 96, + "line": 106, "column": 4 }, "end": { - "line": 101, + "line": 111, "column": 7 } } @@ -9250,58 +9250,58 @@ }, { "type": "ExpressionStatement", - "start": 2880, - "end": 2898, + "start": 3115, + "end": 3133, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 22 } }, "expression": { "type": "AssignmentExpression", - "start": 2880, - "end": 2897, + "start": 3115, + "end": 3132, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 21 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2880, - "end": 2890, + "start": 3115, + "end": 3125, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 2880, - "end": 2884, + "start": 3115, + "end": 3119, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 8 } }, @@ -9309,15 +9309,15 @@ }, "property": { "type": "Identifier", - "start": 2885, - "end": 2890, + "start": 3120, + "end": 3125, "loc": { "start": { - "line": 102, + "line": 112, "column": 9 }, "end": { - "line": 102, + "line": 112, "column": 14 }, "identifierName": "_data" @@ -9329,15 +9329,15 @@ }, "right": { "type": "NullLiteral", - "start": 2893, - "end": 2897, + "start": 3128, + "end": 3132, "loc": { "start": { - "line": 102, + "line": 112, "column": 17 }, "end": { - "line": 102, + "line": 112, "column": 21 } } @@ -9348,15 +9348,15 @@ { "type": "CommentBlock", "value": "*\n * The array of data items.\n *\n * @access private\n * @type {?Array}\n ", - "start": 2780, - "end": 2875, + "start": 3015, + "end": 3110, "loc": { "start": { - "line": 96, + "line": 106, "column": 4 }, "end": { - "line": 101, + "line": 111, "column": 7 } } @@ -9365,57 +9365,57 @@ }, { "type": "IfStatement", - "start": 2904, - "end": 3407, + "start": 3139, + "end": 3642, "loc": { "start": { - "line": 104, + "line": 114, "column": 4 }, "end": { - "line": 118, + "line": 128, "column": 5 } }, "test": { "type": "BinaryExpression", - "start": 2908, - "end": 2958, + "start": 3143, + "end": 3193, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 58 } }, "left": { "type": "MemberExpression", - "start": 2908, - "end": 2934, + "start": 3143, + "end": 3169, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 34 } }, "object": { "type": "Identifier", - "start": 2908, - "end": 2921, + "start": 3143, + "end": 3156, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 21 }, "identifierName": "mergedOptions" @@ -9424,15 +9424,15 @@ }, "property": { "type": "Identifier", - "start": 2922, - "end": 2934, + "start": 3157, + "end": 3169, "loc": { "start": { - "line": 104, + "line": 114, "column": 22 }, "end": { - "line": 104, + "line": 114, "column": 34 }, "identifierName": "queryBuilder" @@ -9444,15 +9444,15 @@ "operator": "instanceof", "right": { "type": "Identifier", - "start": 2946, - "end": 2958, + "start": 3181, + "end": 3193, "loc": { "start": { - "line": 104, + "line": 114, "column": 46 }, "end": { - "line": 104, + "line": 114, "column": 58 }, "identifierName": "QueryBuilder" @@ -9462,73 +9462,73 @@ }, "consequent": { "type": "BlockStatement", - "start": 2960, - "end": 3290, + "start": 3195, + "end": 3525, "loc": { "start": { - "line": 104, + "line": 114, "column": 60 }, "end": { - "line": 116, + "line": 126, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3237, - "end": 3284, + "start": 3472, + "end": 3519, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 53 } }, "expression": { "type": "AssignmentExpression", - "start": 3237, - "end": 3283, + "start": 3472, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 52 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3237, - "end": 3254, + "start": 3472, + "end": 3489, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 3237, - "end": 3241, + "start": 3472, + "end": 3476, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 10 } }, @@ -9536,15 +9536,15 @@ }, "property": { "type": "Identifier", - "start": 3242, - "end": 3254, + "start": 3477, + "end": 3489, "loc": { "start": { - "line": 115, + "line": 125, "column": 11 }, "end": { - "line": 115, + "line": 125, "column": 23 }, "identifierName": "queryBuilder" @@ -9556,29 +9556,29 @@ }, "right": { "type": "MemberExpression", - "start": 3257, - "end": 3283, + "start": 3492, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 26 }, "end": { - "line": 115, + "line": 125, "column": 52 } }, "object": { "type": "Identifier", - "start": 3257, - "end": 3270, + "start": 3492, + "end": 3505, "loc": { "start": { - "line": 115, + "line": 125, "column": 26 }, "end": { - "line": 115, + "line": 125, "column": 39 }, "identifierName": "mergedOptions" @@ -9587,15 +9587,15 @@ }, "property": { "type": "Identifier", - "start": 3271, - "end": 3283, + "start": 3506, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 40 }, "end": { - "line": 115, + "line": 125, "column": 52 }, "identifierName": "queryBuilder" @@ -9610,15 +9610,15 @@ { "type": "CommentBlock", "value": "*\n * The query builder which constructs\n * either the query object to pass to\n * post/delete/put requests, or the\n * query string to pass to get\n * requests.\n *\n * @access public\n * @type {QueryBuilder}\n ", - "start": 2968, - "end": 3230, + "start": 3203, + "end": 3465, "loc": { "start": { - "line": 105, + "line": 115, "column": 6 }, "end": { - "line": 114, + "line": 124, "column": 9 } } @@ -9630,43 +9630,43 @@ }, "alternate": { "type": "IfStatement", - "start": 3296, - "end": 3407, + "start": 3531, + "end": 3642, "loc": { "start": { - "line": 116, + "line": 126, "column": 11 }, "end": { - "line": 118, + "line": 128, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3300, - "end": 3326, + "start": 3535, + "end": 3561, "loc": { "start": { - "line": 116, + "line": 126, "column": 15 }, "end": { - "line": 116, + "line": 126, "column": 41 } }, "object": { "type": "Identifier", - "start": 3300, - "end": 3313, + "start": 3535, + "end": 3548, "loc": { "start": { - "line": 116, + "line": 126, "column": 15 }, "end": { - "line": 116, + "line": 126, "column": 28 }, "identifierName": "mergedOptions" @@ -9675,15 +9675,15 @@ }, "property": { "type": "Identifier", - "start": 3314, - "end": 3326, + "start": 3549, + "end": 3561, "loc": { "start": { - "line": 116, + "line": 126, "column": 29 }, "end": { - "line": 116, + "line": 126, "column": 41 }, "identifierName": "queryBuilder" @@ -9694,88 +9694,88 @@ }, "consequent": { "type": "BlockStatement", - "start": 3328, - "end": 3407, + "start": 3563, + "end": 3642, "loc": { "start": { - "line": 116, + "line": 126, "column": 43 }, "end": { - "line": 118, + "line": 128, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3336, - "end": 3401, + "start": 3571, + "end": 3636, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 3336, - "end": 3400, + "start": 3571, + "end": 3635, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3336, - "end": 3353, + "start": 3571, + "end": 3588, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 3336, - "end": 3340, + "start": 3571, + "end": 3575, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 10 } } }, "property": { "type": "Identifier", - "start": 3341, - "end": 3353, + "start": 3576, + "end": 3588, "loc": { "start": { - "line": 117, + "line": 127, "column": 11 }, "end": { - "line": 117, + "line": 127, "column": 23 }, "identifierName": "queryBuilder" @@ -9786,29 +9786,29 @@ }, "right": { "type": "NewExpression", - "start": 3356, - "end": 3400, + "start": 3591, + "end": 3635, "loc": { "start": { - "line": 117, + "line": 127, "column": 26 }, "end": { - "line": 117, + "line": 127, "column": 70 } }, "callee": { "type": "Identifier", - "start": 3360, - "end": 3372, + "start": 3595, + "end": 3607, "loc": { "start": { - "line": 117, + "line": 127, "column": 30 }, "end": { - "line": 117, + "line": 127, "column": 42 }, "identifierName": "QueryBuilder" @@ -9818,29 +9818,29 @@ "arguments": [ { "type": "MemberExpression", - "start": 3373, - "end": 3399, + "start": 3608, + "end": 3634, "loc": { "start": { - "line": 117, + "line": 127, "column": 43 }, "end": { - "line": 117, + "line": 127, "column": 69 } }, "object": { "type": "Identifier", - "start": 3373, - "end": 3386, + "start": 3608, + "end": 3621, "loc": { "start": { - "line": 117, + "line": 127, "column": 43 }, "end": { - "line": 117, + "line": 127, "column": 56 }, "identifierName": "mergedOptions" @@ -9849,15 +9849,15 @@ }, "property": { "type": "Identifier", - "start": 3387, - "end": 3399, + "start": 3622, + "end": 3634, "loc": { "start": { - "line": 117, + "line": 127, "column": 57 }, "end": { - "line": 117, + "line": 127, "column": 69 }, "identifierName": "queryBuilder" @@ -9881,15 +9881,15 @@ { "type": "CommentBlock", "value": "*\n * Property defining the behavior\n * of the AJAX call.\n * If a string, remote endpoint\n * to contact. If a function,\n * it'll call the function when\n * data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n *\n * @access public\n * @type {String|Function|Object}\n ", - "start": 3413, - "end": 3762, + "start": 3648, + "end": 3997, "loc": { "start": { - "line": 120, + "line": 130, "column": 4 }, "end": { - "line": 132, + "line": 142, "column": 7 } } @@ -9898,58 +9898,58 @@ }, { "type": "ExpressionStatement", - "start": 3767, - "end": 3798, + "start": 4002, + "end": 4033, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 35 } }, "expression": { "type": "AssignmentExpression", - "start": 3767, - "end": 3797, + "start": 4002, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 34 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3767, - "end": 3776, + "start": 4002, + "end": 4011, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 13 } }, "object": { "type": "ThisExpression", - "start": 3767, - "end": 3771, + "start": 4002, + "end": 4006, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 8 } }, @@ -9957,15 +9957,15 @@ }, "property": { "type": "Identifier", - "start": 3772, - "end": 3776, + "start": 4007, + "end": 4011, "loc": { "start": { - "line": 133, + "line": 143, "column": 9 }, "end": { - "line": 133, + "line": 143, "column": 13 }, "identifierName": "ajax" @@ -9977,29 +9977,29 @@ }, "right": { "type": "MemberExpression", - "start": 3779, - "end": 3797, + "start": 4014, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 16 }, "end": { - "line": 133, + "line": 143, "column": 34 } }, "object": { "type": "Identifier", - "start": 3779, - "end": 3792, + "start": 4014, + "end": 4027, "loc": { "start": { - "line": 133, + "line": 143, "column": 16 }, "end": { - "line": 133, + "line": 143, "column": 29 }, "identifierName": "mergedOptions" @@ -10008,15 +10008,15 @@ }, "property": { "type": "Identifier", - "start": 3793, - "end": 3797, + "start": 4028, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 30 }, "end": { - "line": 133, + "line": 143, "column": 34 }, "identifierName": "ajax" @@ -10031,15 +10031,15 @@ { "type": "CommentBlock", "value": "*\n * Property defining the behavior\n * of the AJAX call.\n * If a string, remote endpoint\n * to contact. If a function,\n * it'll call the function when\n * data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n *\n * @access public\n * @type {String|Function|Object}\n ", - "start": 3413, - "end": 3762, + "start": 3648, + "end": 3997, "loc": { "start": { - "line": 120, + "line": 130, "column": 4 }, "end": { - "line": 132, + "line": 142, "column": 7 } } @@ -10054,15 +10054,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {String|Function|Object} options.ajax\n * Defines the behavior of the AJAX call.\n * If a string, remote endpoint to contact.\n * If a function, it'll call the function\n * when data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n ", - "start": 1853, - "end": 2289, + "start": 2088, + "end": 2524, "loc": { "start": { - "line": 58, + "line": 68, "column": 2 }, "end": { - "line": 70, + "line": 80, "column": 5 } } @@ -10072,15 +10072,15 @@ { "type": "CommentBlock", "value": "*\n * Performs an AJAX call.\n *\n * @access private\n * @param {Object} axiosOptions Ajax options object for axios\n * @param {String} axiosOptions.url Url to remote endpoint to ajax for.\n * @param {String} axiosOptions.method The AJAX method, i.e. 'get', 'post', etc.\n * @return {Promise} Returns the axios promise object, containing\n * the response from remote endpoint.\n ", - "start": 3806, - "end": 4216, + "start": 4041, + "end": 4451, "loc": { "start": { - "line": 136, + "line": 146, "column": 2 }, "end": { - "line": 145, + "line": 155, "column": 5 } } @@ -10089,15 +10089,15 @@ }, { "type": "ClassMethod", - "start": 4219, - "end": 4718, + "start": 4454, + "end": 4953, "loc": { "start": { - "line": 146, + "line": 156, "column": 2 }, "end": { - "line": 157, + "line": 167, "column": 3 } }, @@ -10105,15 +10105,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4219, - "end": 4228, + "start": 4454, + "end": 4463, "loc": { "start": { - "line": 146, + "line": 156, "column": 2 }, "end": { - "line": 146, + "line": 156, "column": 11 }, "identifierName": "_ajaxCall" @@ -10129,30 +10129,30 @@ "params": [ { "type": "ObjectPattern", - "start": 4229, - "end": 4244, + "start": 4464, + "end": 4479, "loc": { "start": { - "line": 146, + "line": 156, "column": 12 }, "end": { - "line": 146, + "line": 156, "column": 27 } }, "properties": [ { "type": "ObjectProperty", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 } }, @@ -10161,15 +10161,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 }, "identifierName": "url" @@ -10178,15 +10178,15 @@ }, "value": { "type": "Identifier", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 }, "identifierName": "url" @@ -10199,15 +10199,15 @@ }, { "type": "ObjectProperty", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 } }, @@ -10216,15 +10216,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 }, "identifierName": "method" @@ -10233,15 +10233,15 @@ }, "value": { "type": "Identifier", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 }, "identifierName": "method" @@ -10257,59 +10257,59 @@ ], "body": { "type": "BlockStatement", - "start": 4246, - "end": 4718, + "start": 4481, + "end": 4953, "loc": { "start": { - "line": 146, + "line": 156, "column": 29 }, "end": { - "line": 157, + "line": 167, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 4252, - "end": 4295, + "start": 4487, + "end": 4530, "loc": { "start": { - "line": 147, + "line": 157, "column": 4 }, "end": { - "line": 147, + "line": 157, "column": 47 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 4258, - "end": 4294, + "start": 4493, + "end": 4529, "loc": { "start": { - "line": 147, + "line": 157, "column": 10 }, "end": { - "line": 147, + "line": 157, "column": 46 } }, "id": { "type": "Identifier", - "start": 4258, - "end": 4276, + "start": 4493, + "end": 4511, "loc": { "start": { - "line": 147, + "line": 157, "column": 10 }, "end": { - "line": 147, + "line": 157, "column": 28 }, "identifierName": "actualAxiosOptions" @@ -10318,30 +10318,30 @@ }, "init": { "type": "ObjectExpression", - "start": 4279, - "end": 4294, + "start": 4514, + "end": 4529, "loc": { "start": { - "line": 147, + "line": 157, "column": 31 }, "end": { - "line": 147, + "line": 157, "column": 46 } }, "properties": [ { "type": "ObjectProperty", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 } }, @@ -10350,15 +10350,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 }, "identifierName": "url" @@ -10367,15 +10367,15 @@ }, "value": { "type": "Identifier", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 }, "identifierName": "url" @@ -10388,15 +10388,15 @@ }, { "type": "ObjectProperty", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 } }, @@ -10405,15 +10405,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 }, "identifierName": "method" @@ -10422,15 +10422,15 @@ }, "value": { "type": "Identifier", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 }, "identifierName": "method" @@ -10449,58 +10449,58 @@ }, { "type": "ExpressionStatement", - "start": 4300, - "end": 4436, + "start": 4535, + "end": 4671, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 150, + "line": 160, "column": 34 } }, "expression": { "type": "AssignmentExpression", - "start": 4300, - "end": 4435, + "start": 4535, + "end": 4670, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 150, + "line": 160, "column": 33 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4300, - "end": 4325, + "start": 4535, + "end": 4560, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 148, + "line": 158, "column": 29 } }, "object": { "type": "Identifier", - "start": 4300, - "end": 4318, + "start": 4535, + "end": 4553, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 148, + "line": 158, "column": 22 }, "identifierName": "actualAxiosOptions" @@ -10509,15 +10509,15 @@ }, "property": { "type": "Identifier", - "start": 4319, - "end": 4325, + "start": 4554, + "end": 4560, "loc": { "start": { - "line": 148, + "line": 158, "column": 23 }, "end": { - "line": 148, + "line": 158, "column": 29 }, "identifierName": "method" @@ -10528,43 +10528,43 @@ }, "right": { "type": "ConditionalExpression", - "start": 4328, - "end": 4435, + "start": 4563, + "end": 4670, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 150, + "line": 160, "column": 33 } }, "test": { "type": "MemberExpression", - "start": 4328, - "end": 4353, + "start": 4563, + "end": 4588, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 148, + "line": 158, "column": 57 } }, "object": { "type": "Identifier", - "start": 4328, - "end": 4346, + "start": 4563, + "end": 4581, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 148, + "line": 158, "column": 50 }, "identifierName": "actualAxiosOptions" @@ -10573,15 +10573,15 @@ }, "property": { "type": "Identifier", - "start": 4347, - "end": 4353, + "start": 4582, + "end": 4588, "loc": { "start": { - "line": 148, + "line": 158, "column": 51 }, "end": { - "line": 148, + "line": 158, "column": 57 }, "identifierName": "method" @@ -10592,57 +10592,57 @@ }, "consequent": { "type": "CallExpression", - "start": 4362, - "end": 4401, + "start": 4597, + "end": 4636, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 47 } }, "callee": { "type": "MemberExpression", - "start": 4362, - "end": 4399, + "start": 4597, + "end": 4634, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 45 } }, "object": { "type": "MemberExpression", - "start": 4362, - "end": 4387, + "start": 4597, + "end": 4622, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 33 } }, "object": { "type": "Identifier", - "start": 4362, - "end": 4380, + "start": 4597, + "end": 4615, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 26 }, "identifierName": "actualAxiosOptions" @@ -10651,15 +10651,15 @@ }, "property": { "type": "Identifier", - "start": 4381, - "end": 4387, + "start": 4616, + "end": 4622, "loc": { "start": { - "line": 149, + "line": 159, "column": 27 }, "end": { - "line": 149, + "line": 159, "column": 33 }, "identifierName": "method" @@ -10670,15 +10670,15 @@ }, "property": { "type": "Identifier", - "start": 4388, - "end": 4399, + "start": 4623, + "end": 4634, "loc": { "start": { - "line": 149, + "line": 159, "column": 34 }, "end": { - "line": 149, + "line": 159, "column": 45 }, "identifierName": "toLowerCase" @@ -10691,29 +10691,29 @@ }, "alternate": { "type": "MemberExpression", - "start": 4410, - "end": 4435, + "start": 4645, + "end": 4670, "loc": { "start": { - "line": 150, + "line": 160, "column": 8 }, "end": { - "line": 150, + "line": 160, "column": 33 } }, "object": { "type": "Identifier", - "start": 4410, - "end": 4428, + "start": 4645, + "end": 4663, "loc": { "start": { - "line": 150, + "line": 160, "column": 8 }, "end": { - "line": 150, + "line": 160, "column": 26 }, "identifierName": "actualAxiosOptions" @@ -10722,15 +10722,15 @@ }, "property": { "type": "Identifier", - "start": 4429, - "end": 4435, + "start": 4664, + "end": 4670, "loc": { "start": { - "line": 150, + "line": 160, "column": 27 }, "end": { - "line": 150, + "line": 160, "column": 33 }, "identifierName": "method" @@ -10744,57 +10744,57 @@ }, { "type": "IfStatement", - "start": 4441, - "end": 4676, + "start": 4676, + "end": 4911, "loc": { "start": { - "line": 151, + "line": 161, "column": 4 }, "end": { - "line": 155, + "line": 165, "column": 5 } }, "test": { "type": "BinaryExpression", - "start": 4445, - "end": 4480, + "start": 4680, + "end": 4715, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 43 } }, "left": { "type": "MemberExpression", - "start": 4445, - "end": 4470, + "start": 4680, + "end": 4705, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 33 } }, "object": { "type": "Identifier", - "start": 4445, - "end": 4463, + "start": 4680, + "end": 4698, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 26 }, "identifierName": "actualAxiosOptions" @@ -10803,15 +10803,15 @@ }, "property": { "type": "Identifier", - "start": 4464, - "end": 4470, + "start": 4699, + "end": 4705, "loc": { "start": { - "line": 151, + "line": 161, "column": 27 }, "end": { - "line": 151, + "line": 161, "column": 33 }, "identifierName": "method" @@ -10823,15 +10823,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 4475, - "end": 4480, + "start": 4710, + "end": 4715, "loc": { "start": { - "line": 151, + "line": 161, "column": 38 }, "end": { - "line": 151, + "line": 161, "column": 43 } }, @@ -10844,73 +10844,73 @@ }, "consequent": { "type": "BlockStatement", - "start": 4482, - "end": 4591, + "start": 4717, + "end": 4826, "loc": { "start": { - "line": 151, + "line": 161, "column": 45 }, "end": { - "line": 153, + "line": 163, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 4490, - "end": 4585, + "start": 4725, + "end": 4820, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 101 } }, "expression": { "type": "AssignmentExpression", - "start": 4490, - "end": 4584, + "start": 4725, + "end": 4819, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 100 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4490, - "end": 4512, + "start": 4725, + "end": 4747, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 28 } }, "object": { "type": "Identifier", - "start": 4490, - "end": 4508, + "start": 4725, + "end": 4743, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 24 }, "identifierName": "actualAxiosOptions" @@ -10919,15 +10919,15 @@ }, "property": { "type": "Identifier", - "start": 4509, - "end": 4512, + "start": 4744, + "end": 4747, "loc": { "start": { - "line": 152, + "line": 162, "column": 25 }, "end": { - "line": 152, + "line": 162, "column": 28 }, "identifierName": "url" @@ -10938,44 +10938,44 @@ }, "right": { "type": "TemplateLiteral", - "start": 4515, - "end": 4584, + "start": 4750, + "end": 4819, "loc": { "start": { - "line": 152, + "line": 162, "column": 31 }, "end": { - "line": 152, + "line": 162, "column": 100 } }, "expressions": [ { "type": "MemberExpression", - "start": 4518, - "end": 4540, + "start": 4753, + "end": 4775, "loc": { "start": { - "line": 152, + "line": 162, "column": 34 }, "end": { - "line": 152, + "line": 162, "column": 56 } }, "object": { "type": "Identifier", - "start": 4518, - "end": 4536, + "start": 4753, + "end": 4771, "loc": { "start": { - "line": 152, + "line": 162, "column": 34 }, "end": { - "line": 152, + "line": 162, "column": 52 }, "identifierName": "actualAxiosOptions" @@ -10984,15 +10984,15 @@ }, "property": { "type": "Identifier", - "start": 4537, - "end": 4540, + "start": 4772, + "end": 4775, "loc": { "start": { - "line": 152, + "line": 162, "column": 53 }, "end": { - "line": 152, + "line": 162, "column": 56 }, "identifierName": "url" @@ -11003,72 +11003,72 @@ }, { "type": "CallExpression", - "start": 4544, - "end": 4582, + "start": 4779, + "end": 4817, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 98 } }, "callee": { "type": "MemberExpression", - "start": 4544, - "end": 4576, + "start": 4779, + "end": 4811, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 92 } }, "object": { "type": "MemberExpression", - "start": 4544, - "end": 4561, + "start": 4779, + "end": 4796, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 77 } }, "object": { "type": "ThisExpression", - "start": 4544, - "end": 4548, + "start": 4779, + "end": 4783, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 64 } } }, "property": { "type": "Identifier", - "start": 4549, - "end": 4561, + "start": 4784, + "end": 4796, "loc": { "start": { - "line": 152, + "line": 162, "column": 65 }, "end": { - "line": 152, + "line": 162, "column": 77 }, "identifierName": "queryBuilder" @@ -11079,15 +11079,15 @@ }, "property": { "type": "Identifier", - "start": 4562, - "end": 4576, + "start": 4797, + "end": 4811, "loc": { "start": { - "line": 152, + "line": 162, "column": 78 }, "end": { - "line": 152, + "line": 162, "column": 92 }, "identifierName": "getQueryString" @@ -11099,15 +11099,15 @@ "arguments": [ { "type": "ThisExpression", - "start": 4577, - "end": 4581, + "start": 4812, + "end": 4816, "loc": { "start": { - "line": 152, + "line": 162, "column": 93 }, "end": { - "line": 152, + "line": 162, "column": 97 } } @@ -11118,15 +11118,15 @@ "quasis": [ { "type": "TemplateElement", - "start": 4516, - "end": 4516, + "start": 4751, + "end": 4751, "loc": { "start": { - "line": 152, + "line": 162, "column": 32 }, "end": { - "line": 152, + "line": 162, "column": 32 } }, @@ -11138,15 +11138,15 @@ }, { "type": "TemplateElement", - "start": 4541, - "end": 4542, + "start": 4776, + "end": 4777, "loc": { "start": { - "line": 152, + "line": 162, "column": 57 }, "end": { - "line": 152, + "line": 162, "column": 58 } }, @@ -11158,15 +11158,15 @@ }, { "type": "TemplateElement", - "start": 4583, - "end": 4583, + "start": 4818, + "end": 4818, "loc": { "start": { - "line": 152, + "line": 162, "column": 99 }, "end": { - "line": 152, + "line": 162, "column": 99 } }, @@ -11185,73 +11185,73 @@ }, "alternate": { "type": "BlockStatement", - "start": 4597, - "end": 4676, + "start": 4832, + "end": 4911, "loc": { "start": { - "line": 153, + "line": 163, "column": 11 }, "end": { - "line": 155, + "line": 165, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 4605, - "end": 4670, + "start": 4840, + "end": 4905, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 4605, - "end": 4669, + "start": 4840, + "end": 4904, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4605, - "end": 4628, + "start": 4840, + "end": 4863, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 29 } }, "object": { "type": "Identifier", - "start": 4605, - "end": 4623, + "start": 4840, + "end": 4858, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 24 }, "identifierName": "actualAxiosOptions" @@ -11260,15 +11260,15 @@ }, "property": { "type": "Identifier", - "start": 4624, - "end": 4628, + "start": 4859, + "end": 4863, "loc": { "start": { - "line": 154, + "line": 164, "column": 25 }, "end": { - "line": 154, + "line": 164, "column": 29 }, "identifierName": "data" @@ -11279,72 +11279,72 @@ }, "right": { "type": "CallExpression", - "start": 4631, - "end": 4669, + "start": 4866, + "end": 4904, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 70 } }, "callee": { "type": "MemberExpression", - "start": 4631, - "end": 4663, + "start": 4866, + "end": 4898, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 64 } }, "object": { "type": "MemberExpression", - "start": 4631, - "end": 4648, + "start": 4866, + "end": 4883, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 49 } }, "object": { "type": "ThisExpression", - "start": 4631, - "end": 4635, + "start": 4866, + "end": 4870, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 36 } } }, "property": { "type": "Identifier", - "start": 4636, - "end": 4648, + "start": 4871, + "end": 4883, "loc": { "start": { - "line": 154, + "line": 164, "column": 37 }, "end": { - "line": 154, + "line": 164, "column": 49 }, "identifierName": "queryBuilder" @@ -11355,15 +11355,15 @@ }, "property": { "type": "Identifier", - "start": 4649, - "end": 4663, + "start": 4884, + "end": 4898, "loc": { "start": { - "line": 154, + "line": 164, "column": 50 }, "end": { - "line": 154, + "line": 164, "column": 64 }, "identifierName": "getQueryObject" @@ -11375,15 +11375,15 @@ "arguments": [ { "type": "ThisExpression", - "start": 4664, - "end": 4668, + "start": 4899, + "end": 4903, "loc": { "start": { - "line": 154, + "line": 164, "column": 65 }, "end": { - "line": 154, + "line": 164, "column": 69 } } @@ -11398,43 +11398,43 @@ }, { "type": "ReturnStatement", - "start": 4681, - "end": 4714, + "start": 4916, + "end": 4949, "loc": { "start": { - "line": 156, + "line": 166, "column": 4 }, "end": { - "line": 156, + "line": 166, "column": 37 } }, "argument": { "type": "CallExpression", - "start": 4688, - "end": 4713, + "start": 4923, + "end": 4948, "loc": { "start": { - "line": 156, + "line": 166, "column": 11 }, "end": { - "line": 156, + "line": 166, "column": 36 } }, "callee": { "type": "Identifier", - "start": 4688, - "end": 4693, + "start": 4923, + "end": 4928, "loc": { "start": { - "line": 156, + "line": 166, "column": 11 }, "end": { - "line": 156, + "line": 166, "column": 16 }, "identifierName": "axios" @@ -11444,15 +11444,15 @@ "arguments": [ { "type": "Identifier", - "start": 4694, - "end": 4712, + "start": 4929, + "end": 4947, "loc": { "start": { - "line": 156, + "line": 166, "column": 17 }, "end": { - "line": 156, + "line": 166, "column": 35 }, "identifierName": "actualAxiosOptions" @@ -11470,15 +11470,15 @@ { "type": "CommentBlock", "value": "*\n * Performs an AJAX call.\n *\n * @access private\n * @param {Object} axiosOptions Ajax options object for axios\n * @param {String} axiosOptions.url Url to remote endpoint to ajax for.\n * @param {String} axiosOptions.method The AJAX method, i.e. 'get', 'post', etc.\n * @return {Promise} Returns the axios promise object, containing\n * the response from remote endpoint.\n ", - "start": 3806, - "end": 4216, + "start": 4041, + "end": 4451, "loc": { "start": { - "line": 136, + "line": 146, "column": 2 }, "end": { - "line": 145, + "line": 155, "column": 5 } } @@ -11488,15 +11488,15 @@ { "type": "CommentBlock", "value": "*\n * Builds an AJAX handler function.\n * @access private\n * @return {Function} A callback function which performs\n * the actual ajax operation.\n ", - "start": 4722, - "end": 4900, + "start": 4957, + "end": 5135, "loc": { "start": { - "line": 159, + "line": 169, "column": 2 }, "end": { - "line": 164, + "line": 174, "column": 5 } } @@ -11505,15 +11505,15 @@ }, { "type": "ClassMethod", - "start": 4903, - "end": 5557, + "start": 5138, + "end": 5792, "loc": { "start": { - "line": 165, + "line": 175, "column": 2 }, "end": { - "line": 186, + "line": 196, "column": 3 } }, @@ -11521,15 +11521,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4903, - "end": 4920, + "start": 5138, + "end": 5155, "loc": { "start": { - "line": 165, + "line": 175, "column": 2 }, "end": { - "line": 165, + "line": 175, "column": 19 }, "identifierName": "_buildAjaxHandler" @@ -11545,59 +11545,59 @@ "params": [], "body": { "type": "BlockStatement", - "start": 4923, - "end": 5557, + "start": 5158, + "end": 5792, "loc": { "start": { - "line": 165, + "line": 175, "column": 22 }, "end": { - "line": 186, + "line": 196, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 4929, - "end": 5293, + "start": 5164, + "end": 5528, "loc": { "start": { - "line": 166, + "line": 176, "column": 4 }, "end": { - "line": 179, + "line": 189, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 4935, - "end": 5292, + "start": 5170, + "end": 5527, "loc": { "start": { - "line": 166, + "line": 176, "column": 10 }, "end": { - "line": 179, + "line": 189, "column": 5 } }, "id": { "type": "Identifier", - "start": 4935, - "end": 4946, + "start": 5170, + "end": 5181, "loc": { "start": { - "line": 166, + "line": 176, "column": 10 }, "end": { - "line": 166, + "line": 176, "column": 21 }, "identifierName": "ajaxHandler" @@ -11606,30 +11606,30 @@ }, "init": { "type": "ObjectExpression", - "start": 4949, - "end": 5292, + "start": 5184, + "end": 5527, "loc": { "start": { - "line": 166, + "line": 176, "column": 24 }, "end": { - "line": 179, + "line": 189, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 4957, - "end": 5012, + "start": 5192, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 6 }, "end": { - "line": 167, + "line": 177, "column": 61 } }, @@ -11638,15 +11638,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4957, - "end": 4965, + "start": 5192, + "end": 5200, "loc": { "start": { - "line": 167, + "line": 177, "column": 6 }, "end": { - "line": 167, + "line": 177, "column": 14 }, "identifierName": "function" @@ -11655,15 +11655,15 @@ }, "value": { "type": "ArrowFunctionExpression", - "start": 4967, - "end": 5012, + "start": 5202, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 16 }, "end": { - "line": 167, + "line": 177, "column": 61 } }, @@ -11674,72 +11674,72 @@ "params": [], "body": { "type": "CallExpression", - "start": 4973, - "end": 5012, + "start": 5208, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 61 } }, "callee": { "type": "MemberExpression", - "start": 4973, - "end": 4987, + "start": 5208, + "end": 5222, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 36 } }, "object": { "type": "MemberExpression", - "start": 4973, - "end": 4982, + "start": 5208, + "end": 5217, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 31 } }, "object": { "type": "ThisExpression", - "start": 4973, - "end": 4977, + "start": 5208, + "end": 5212, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 26 } } }, "property": { "type": "Identifier", - "start": 4978, - "end": 4982, + "start": 5213, + "end": 5217, "loc": { "start": { - "line": 167, + "line": 177, "column": 27 }, "end": { - "line": 167, + "line": 177, "column": 31 }, "identifierName": "ajax" @@ -11750,15 +11750,15 @@ }, "property": { "type": "Identifier", - "start": 4983, - "end": 4987, + "start": 5218, + "end": 5222, "loc": { "start": { - "line": 167, + "line": 177, "column": 32 }, "end": { - "line": 167, + "line": 177, "column": 36 }, "identifierName": "call" @@ -11770,59 +11770,59 @@ "arguments": [ { "type": "ThisExpression", - "start": 4988, - "end": 4992, + "start": 5223, + "end": 5227, "loc": { "start": { - "line": 167, + "line": 177, "column": 37 }, "end": { - "line": 167, + "line": 177, "column": 41 } } }, { "type": "MemberExpression", - "start": 4994, - "end": 5011, + "start": 5229, + "end": 5246, "loc": { "start": { - "line": 167, + "line": 177, "column": 43 }, "end": { - "line": 167, + "line": 177, "column": 60 } }, "object": { "type": "ThisExpression", - "start": 4994, - "end": 4998, + "start": 5229, + "end": 5233, "loc": { "start": { - "line": 167, + "line": 177, "column": 43 }, "end": { - "line": 167, + "line": 177, "column": 47 } } }, "property": { "type": "Identifier", - "start": 4999, - "end": 5011, + "start": 5234, + "end": 5246, "loc": { "start": { - "line": 167, + "line": 177, "column": 48 }, "end": { - "line": 167, + "line": 177, "column": 60 }, "identifierName": "queryBuilder" @@ -11837,15 +11837,15 @@ }, { "type": "ObjectProperty", - "start": 5020, - "end": 5158, + "start": 5255, + "end": 5393, "loc": { "start": { - "line": 168, + "line": 178, "column": 6 }, "end": { - "line": 174, + "line": 184, "column": 7 } }, @@ -11854,15 +11854,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5020, - "end": 5026, + "start": 5255, + "end": 5261, "loc": { "start": { - "line": 168, + "line": 178, "column": 6 }, "end": { - "line": 168, + "line": 178, "column": 12 }, "identifierName": "string" @@ -11871,15 +11871,15 @@ }, "value": { "type": "ArrowFunctionExpression", - "start": 5028, - "end": 5158, + "start": 5263, + "end": 5393, "loc": { "start": { - "line": 168, + "line": 178, "column": 14 }, "end": { - "line": 174, + "line": 184, "column": 7 } }, @@ -11890,59 +11890,59 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5034, - "end": 5158, + "start": 5269, + "end": 5393, "loc": { "start": { - "line": 168, + "line": 178, "column": 20 }, "end": { - "line": 174, + "line": 184, "column": 7 } }, "body": [ { "type": "VariableDeclaration", - "start": 5044, - "end": 5066, + "start": 5279, + "end": 5301, "loc": { "start": { - "line": 169, + "line": 179, "column": 8 }, "end": { - "line": 169, + "line": 179, "column": 30 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5050, - "end": 5065, + "start": 5285, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 14 }, "end": { - "line": 169, + "line": 179, "column": 29 } }, "id": { "type": "Identifier", - "start": 5050, - "end": 5053, + "start": 5285, + "end": 5288, "loc": { "start": { - "line": 169, + "line": 179, "column": 14 }, "end": { - "line": 169, + "line": 179, "column": 17 }, "identifierName": "url" @@ -11951,44 +11951,44 @@ }, "init": { "type": "MemberExpression", - "start": 5056, - "end": 5065, + "start": 5291, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 20 }, "end": { - "line": 169, + "line": 179, "column": 29 } }, "object": { "type": "ThisExpression", - "start": 5056, - "end": 5060, + "start": 5291, + "end": 5295, "loc": { "start": { - "line": 169, + "line": 179, "column": 20 }, "end": { - "line": 169, + "line": 179, "column": 24 } } }, "property": { "type": "Identifier", - "start": 5061, - "end": 5065, + "start": 5296, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 25 }, "end": { - "line": 169, + "line": 179, "column": 29 }, "identifierName": "ajax" @@ -12003,72 +12003,72 @@ }, { "type": "ReturnStatement", - "start": 5075, - "end": 5150, + "start": 5310, + "end": 5385, "loc": { "start": { - "line": 170, + "line": 180, "column": 8 }, "end": { - "line": 173, + "line": 183, "column": 11 } }, "argument": { "type": "CallExpression", - "start": 5082, - "end": 5149, + "start": 5317, + "end": 5384, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 173, + "line": 183, "column": 10 } }, "callee": { "type": "MemberExpression", - "start": 5082, - "end": 5096, + "start": 5317, + "end": 5331, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 170, + "line": 180, "column": 29 } }, "object": { "type": "ThisExpression", - "start": 5082, - "end": 5086, + "start": 5317, + "end": 5321, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 170, + "line": 180, "column": 19 } } }, "property": { "type": "Identifier", - "start": 5087, - "end": 5096, + "start": 5322, + "end": 5331, "loc": { "start": { - "line": 170, + "line": 180, "column": 20 }, "end": { - "line": 170, + "line": 180, "column": 29 }, "identifierName": "_ajaxCall" @@ -12080,30 +12080,30 @@ "arguments": [ { "type": "ObjectExpression", - "start": 5097, - "end": 5148, + "start": 5332, + "end": 5383, "loc": { "start": { - "line": 170, + "line": 180, "column": 30 }, "end": { - "line": 173, + "line": 183, "column": 9 } }, "properties": [ { "type": "ObjectProperty", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 } }, @@ -12112,15 +12112,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 }, "identifierName": "url" @@ -12129,15 +12129,15 @@ }, "value": { "type": "Identifier", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 }, "identifierName": "url" @@ -12150,15 +12150,15 @@ }, { "type": "ObjectProperty", - "start": 5124, - "end": 5137, + "start": 5359, + "end": 5372, "loc": { "start": { - "line": 172, + "line": 182, "column": 10 }, "end": { - "line": 172, + "line": 182, "column": 23 } }, @@ -12167,15 +12167,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5124, - "end": 5130, + "start": 5359, + "end": 5365, "loc": { "start": { - "line": 172, + "line": 182, "column": 10 }, "end": { - "line": 172, + "line": 182, "column": 16 }, "identifierName": "method" @@ -12184,15 +12184,15 @@ }, "value": { "type": "StringLiteral", - "start": 5132, - "end": 5137, + "start": 5367, + "end": 5372, "loc": { "start": { - "line": 172, + "line": 182, "column": 18 }, "end": { - "line": 172, + "line": 182, "column": 23 } }, @@ -12215,15 +12215,15 @@ }, { "type": "ObjectProperty", - "start": 5166, - "end": 5285, + "start": 5401, + "end": 5520, "loc": { "start": { - "line": 175, + "line": 185, "column": 6 }, "end": { - "line": 178, + "line": 188, "column": 7 } }, @@ -12232,15 +12232,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5166, - "end": 5172, + "start": 5401, + "end": 5407, "loc": { "start": { - "line": 175, + "line": 185, "column": 6 }, "end": { - "line": 175, + "line": 185, "column": 12 }, "identifierName": "object" @@ -12249,15 +12249,15 @@ }, "value": { "type": "ArrowFunctionExpression", - "start": 5174, - "end": 5285, + "start": 5409, + "end": 5520, "loc": { "start": { - "line": 175, + "line": 185, "column": 14 }, "end": { - "line": 178, + "line": 188, "column": 7 } }, @@ -12268,102 +12268,102 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5180, - "end": 5285, + "start": 5415, + "end": 5520, "loc": { "start": { - "line": 175, + "line": 185, "column": 20 }, "end": { - "line": 178, + "line": 188, "column": 7 } }, "body": [ { "type": "ExpressionStatement", - "start": 5190, - "end": 5235, + "start": 5425, + "end": 5470, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 53 } }, "expression": { "type": "AssignmentExpression", - "start": 5190, - "end": 5234, + "start": 5425, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 52 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 5190, - "end": 5206, + "start": 5425, + "end": 5441, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 24 } }, "object": { "type": "MemberExpression", - "start": 5190, - "end": 5199, + "start": 5425, + "end": 5434, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 17 } }, "object": { "type": "ThisExpression", - "start": 5190, - "end": 5194, + "start": 5425, + "end": 5429, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 12 } } }, "property": { "type": "Identifier", - "start": 5195, - "end": 5199, + "start": 5430, + "end": 5434, "loc": { "start": { - "line": 176, + "line": 186, "column": 13 }, "end": { - "line": 176, + "line": 186, "column": 17 }, "identifierName": "ajax" @@ -12374,15 +12374,15 @@ }, "property": { "type": "Identifier", - "start": 5200, - "end": 5206, + "start": 5435, + "end": 5441, "loc": { "start": { - "line": 176, + "line": 186, "column": 18 }, "end": { - "line": 176, + "line": 186, "column": 24 }, "identifierName": "method" @@ -12393,72 +12393,72 @@ }, "right": { "type": "LogicalExpression", - "start": 5209, - "end": 5234, + "start": 5444, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 52 } }, "left": { "type": "MemberExpression", - "start": 5209, - "end": 5225, + "start": 5444, + "end": 5460, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 43 } }, "object": { "type": "MemberExpression", - "start": 5209, - "end": 5218, + "start": 5444, + "end": 5453, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 36 } }, "object": { "type": "ThisExpression", - "start": 5209, - "end": 5213, + "start": 5444, + "end": 5448, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 31 } } }, "property": { "type": "Identifier", - "start": 5214, - "end": 5218, + "start": 5449, + "end": 5453, "loc": { "start": { - "line": 176, + "line": 186, "column": 32 }, "end": { - "line": 176, + "line": 186, "column": 36 }, "identifierName": "ajax" @@ -12469,15 +12469,15 @@ }, "property": { "type": "Identifier", - "start": 5219, - "end": 5225, + "start": 5454, + "end": 5460, "loc": { "start": { - "line": 176, + "line": 186, "column": 37 }, "end": { - "line": 176, + "line": 186, "column": 43 }, "identifierName": "method" @@ -12489,15 +12489,15 @@ "operator": "||", "right": { "type": "StringLiteral", - "start": 5229, - "end": 5234, + "start": 5464, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 47 }, "end": { - "line": 176, + "line": 186, "column": 52 } }, @@ -12512,72 +12512,72 @@ }, { "type": "ReturnStatement", - "start": 5244, - "end": 5277, + "start": 5479, + "end": 5512, "loc": { "start": { - "line": 177, + "line": 187, "column": 8 }, "end": { - "line": 177, + "line": 187, "column": 41 } }, "argument": { "type": "CallExpression", - "start": 5251, - "end": 5276, + "start": 5486, + "end": 5511, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 40 } }, "callee": { "type": "MemberExpression", - "start": 5251, - "end": 5265, + "start": 5486, + "end": 5500, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 29 } }, "object": { "type": "ThisExpression", - "start": 5251, - "end": 5255, + "start": 5486, + "end": 5490, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 19 } } }, "property": { "type": "Identifier", - "start": 5256, - "end": 5265, + "start": 5491, + "end": 5500, "loc": { "start": { - "line": 177, + "line": 187, "column": 20 }, "end": { - "line": 177, + "line": 187, "column": 29 }, "identifierName": "_ajaxCall" @@ -12589,44 +12589,44 @@ "arguments": [ { "type": "MemberExpression", - "start": 5266, - "end": 5275, + "start": 5501, + "end": 5510, "loc": { "start": { - "line": 177, + "line": 187, "column": 30 }, "end": { - "line": 177, + "line": 187, "column": 39 } }, "object": { "type": "ThisExpression", - "start": 5266, - "end": 5270, + "start": 5501, + "end": 5505, "loc": { "start": { - "line": 177, + "line": 187, "column": 30 }, "end": { - "line": 177, + "line": 187, "column": 34 } } }, "property": { "type": "Identifier", - "start": 5271, - "end": 5275, + "start": 5506, + "end": 5510, "loc": { "start": { - "line": 177, + "line": 187, "column": 35 }, "end": { - "line": 177, + "line": 187, "column": 39 }, "identifierName": "ajax" @@ -12651,44 +12651,44 @@ }, { "type": "VariableDeclaration", - "start": 5298, - "end": 5338, + "start": 5533, + "end": 5573, "loc": { "start": { - "line": 180, + "line": 190, "column": 4 }, "end": { - "line": 180, + "line": 190, "column": 44 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5304, - "end": 5337, + "start": 5539, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 10 }, "end": { - "line": 180, + "line": 190, "column": 43 } }, "id": { "type": "Identifier", - "start": 5304, - "end": 5318, + "start": 5539, + "end": 5553, "loc": { "start": { - "line": 180, + "line": 190, "column": 10 }, "end": { - "line": 180, + "line": 190, "column": 24 }, "identifierName": "ajaxObjectType" @@ -12697,15 +12697,15 @@ }, "init": { "type": "UnaryExpression", - "start": 5321, - "end": 5337, + "start": 5556, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 27 }, "end": { - "line": 180, + "line": 190, "column": 43 } }, @@ -12713,44 +12713,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 5328, - "end": 5337, + "start": 5563, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 34 }, "end": { - "line": 180, + "line": 190, "column": 43 } }, "object": { "type": "ThisExpression", - "start": 5328, - "end": 5332, + "start": 5563, + "end": 5567, "loc": { "start": { - "line": 180, + "line": 190, "column": 34 }, "end": { - "line": 180, + "line": 190, "column": 38 } } }, "property": { "type": "Identifier", - "start": 5333, - "end": 5337, + "start": 5568, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 39 }, "end": { - "line": 180, + "line": 190, "column": 43 }, "identifierName": "ajax" @@ -12769,44 +12769,44 @@ }, { "type": "VariableDeclaration", - "start": 5343, - "end": 5397, + "start": 5578, + "end": 5632, "loc": { "start": { - "line": 181, + "line": 191, "column": 4 }, "end": { - "line": 181, + "line": 191, "column": 58 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5349, - "end": 5396, + "start": 5584, + "end": 5631, "loc": { "start": { - "line": 181, + "line": 191, "column": 10 }, "end": { - "line": 181, + "line": 191, "column": 57 } }, "id": { "type": "Identifier", - "start": 5349, - "end": 5366, + "start": 5584, + "end": 5601, "loc": { "start": { - "line": 181, + "line": 191, "column": 10 }, "end": { - "line": 181, + "line": 191, "column": 27 }, "identifierName": "actualAjaxHandler" @@ -12815,29 +12815,29 @@ }, "init": { "type": "MemberExpression", - "start": 5369, - "end": 5396, + "start": 5604, + "end": 5631, "loc": { "start": { - "line": 181, + "line": 191, "column": 30 }, "end": { - "line": 181, + "line": 191, "column": 57 } }, "object": { "type": "Identifier", - "start": 5369, - "end": 5380, + "start": 5604, + "end": 5615, "loc": { "start": { - "line": 181, + "line": 191, "column": 30 }, "end": { - "line": 181, + "line": 191, "column": 41 }, "identifierName": "ajaxHandler" @@ -12846,15 +12846,15 @@ }, "property": { "type": "Identifier", - "start": 5381, - "end": 5395, + "start": 5616, + "end": 5630, "loc": { "start": { - "line": 181, + "line": 191, "column": 42 }, "end": { - "line": 181, + "line": 191, "column": 56 }, "identifierName": "ajaxObjectType" @@ -12869,29 +12869,29 @@ }, { "type": "IfStatement", - "start": 5402, - "end": 5523, + "start": 5637, + "end": 5758, "loc": { "start": { - "line": 182, + "line": 192, "column": 4 }, "end": { - "line": 184, + "line": 194, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 5406, - "end": 5424, + "start": 5641, + "end": 5659, "loc": { "start": { - "line": 182, + "line": 192, "column": 8 }, "end": { - "line": 182, + "line": 192, "column": 26 } }, @@ -12899,15 +12899,15 @@ "prefix": true, "argument": { "type": "Identifier", - "start": 5407, - "end": 5424, + "start": 5642, + "end": 5659, "loc": { "start": { - "line": 182, + "line": 192, "column": 9 }, "end": { - "line": 182, + "line": 192, "column": 26 }, "identifierName": "actualAjaxHandler" @@ -12920,58 +12920,58 @@ }, "consequent": { "type": "BlockStatement", - "start": 5426, - "end": 5523, + "start": 5661, + "end": 5758, "loc": { "start": { - "line": 182, + "line": 192, "column": 28 }, "end": { - "line": 184, + "line": 194, "column": 5 } }, "body": [ { "type": "ThrowStatement", - "start": 5434, - "end": 5517, + "start": 5669, + "end": 5752, "loc": { "start": { - "line": 183, + "line": 193, "column": 6 }, "end": { - "line": 183, + "line": 193, "column": 89 } }, "argument": { "type": "NewExpression", - "start": 5440, - "end": 5516, + "start": 5675, + "end": 5751, "loc": { "start": { - "line": 183, + "line": 193, "column": 12 }, "end": { - "line": 183, + "line": 193, "column": 88 } }, "callee": { "type": "Identifier", - "start": 5444, - "end": 5449, + "start": 5679, + "end": 5684, "loc": { "start": { - "line": 183, + "line": 193, "column": 16 }, "end": { - "line": 183, + "line": 193, "column": 21 }, "identifierName": "Error" @@ -12981,30 +12981,30 @@ "arguments": [ { "type": "TemplateLiteral", - "start": 5450, - "end": 5515, + "start": 5685, + "end": 5750, "loc": { "start": { - "line": 183, + "line": 193, "column": 22 }, "end": { - "line": 183, + "line": 193, "column": 87 } }, "expressions": [ { "type": "Identifier", - "start": 5499, - "end": 5513, + "start": 5734, + "end": 5748, "loc": { "start": { - "line": 183, + "line": 193, "column": 71 }, "end": { - "line": 183, + "line": 193, "column": 85 }, "identifierName": "ajaxObjectType" @@ -13015,15 +13015,15 @@ "quasis": [ { "type": "TemplateElement", - "start": 5451, - "end": 5497, + "start": 5686, + "end": 5732, "loc": { "start": { - "line": 183, + "line": 193, "column": 23 }, "end": { - "line": 183, + "line": 193, "column": 69 } }, @@ -13035,15 +13035,15 @@ }, { "type": "TemplateElement", - "start": 5514, - "end": 5514, + "start": 5749, + "end": 5749, "loc": { "start": { - "line": 183, + "line": 193, "column": 86 }, "end": { - "line": 183, + "line": 193, "column": 86 } }, @@ -13065,29 +13065,29 @@ }, { "type": "ReturnStatement", - "start": 5528, - "end": 5553, + "start": 5763, + "end": 5788, "loc": { "start": { - "line": 185, + "line": 195, "column": 4 }, "end": { - "line": 185, + "line": 195, "column": 29 } }, "argument": { "type": "Identifier", - "start": 5535, - "end": 5552, + "start": 5770, + "end": 5787, "loc": { "start": { - "line": 185, + "line": 195, "column": 11 }, "end": { - "line": 185, + "line": 195, "column": 28 }, "identifierName": "actualAjaxHandler" @@ -13103,15 +13103,15 @@ { "type": "CommentBlock", "value": "*\n * Builds an AJAX handler function.\n * @access private\n * @return {Function} A callback function which performs\n * the actual ajax operation.\n ", - "start": 4722, - "end": 4900, + "start": 4957, + "end": 5135, "loc": { "start": { - "line": 159, + "line": 169, "column": 2 }, "end": { - "line": 164, + "line": 174, "column": 5 } } @@ -13121,15 +13121,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 5561, - "end": 5604, + "start": 5796, + "end": 5839, "loc": { "start": { - "line": 188, + "line": 198, "column": 2 }, "end": { - "line": 190, + "line": 200, "column": 5 } } @@ -13137,15 +13137,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 5608, - "end": 5669, + "start": 5843, + "end": 5904, "loc": { "start": { - "line": 192, + "line": 202, "column": 2 }, "end": { - "line": 196, + "line": 206, "column": 5 } } @@ -13154,15 +13154,15 @@ }, { "type": "ClassMethod", - "start": 5672, - "end": 5713, + "start": 5907, + "end": 5948, "loc": { "start": { - "line": 197, + "line": 207, "column": 2 }, "end": { - "line": 199, + "line": 209, "column": 3 } }, @@ -13170,15 +13170,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5676, - "end": 5681, + "start": 5911, + "end": 5916, "loc": { "start": { - "line": 197, + "line": 207, "column": 6 }, "end": { - "line": 197, + "line": 207, "column": 11 }, "identifierName": "total" @@ -13193,73 +13193,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5684, - "end": 5713, + "start": 5919, + "end": 5948, "loc": { "start": { - "line": 197, + "line": 207, "column": 14 }, "end": { - "line": 199, + "line": 209, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 5690, - "end": 5709, + "start": 5925, + "end": 5944, "loc": { "start": { - "line": 198, + "line": 208, "column": 4 }, "end": { - "line": 198, + "line": 208, "column": 23 } }, "argument": { "type": "MemberExpression", - "start": 5697, - "end": 5708, + "start": 5932, + "end": 5943, "loc": { "start": { - "line": 198, + "line": 208, "column": 11 }, "end": { - "line": 198, + "line": 208, "column": 22 } }, "object": { "type": "ThisExpression", - "start": 5697, - "end": 5701, + "start": 5932, + "end": 5936, "loc": { "start": { - "line": 198, + "line": 208, "column": 11 }, "end": { - "line": 198, + "line": 208, "column": 15 } } }, "property": { "type": "Identifier", - "start": 5702, - "end": 5708, + "start": 5937, + "end": 5943, "loc": { "start": { - "line": 198, + "line": 208, "column": 16 }, "end": { - "line": 198, + "line": 208, "column": 22 }, "identifierName": "_total" @@ -13277,15 +13277,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 5561, - "end": 5604, + "start": 5796, + "end": 5839, "loc": { "start": { - "line": 188, + "line": 198, "column": 2 }, "end": { - "line": 190, + "line": 200, "column": 5 } } @@ -13293,15 +13293,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 5608, - "end": 5669, + "start": 5843, + "end": 5904, "loc": { "start": { - "line": 192, + "line": 202, "column": 2 }, "end": { - "line": 196, + "line": 206, "column": 5 } } @@ -13311,15 +13311,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 5717, - "end": 5778, + "start": 5952, + "end": 6013, "loc": { "start": { - "line": 201, + "line": 211, "column": 2 }, "end": { - "line": 205, + "line": 215, "column": 5 } } @@ -13328,15 +13328,15 @@ }, { "type": "ClassMethod", - "start": 5781, - "end": 5820, + "start": 6016, + "end": 6055, "loc": { "start": { - "line": 206, + "line": 216, "column": 2 }, "end": { - "line": 208, + "line": 218, "column": 3 } }, @@ -13344,15 +13344,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5785, - "end": 5789, + "start": 6020, + "end": 6024, "loc": { "start": { - "line": 206, + "line": 216, "column": 6 }, "end": { - "line": 206, + "line": 216, "column": 10 }, "identifierName": "data" @@ -13367,73 +13367,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5792, - "end": 5820, + "start": 6027, + "end": 6055, "loc": { "start": { - "line": 206, + "line": 216, "column": 13 }, "end": { - "line": 208, + "line": 218, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 5798, - "end": 5816, + "start": 6033, + "end": 6051, "loc": { "start": { - "line": 207, + "line": 217, "column": 4 }, "end": { - "line": 207, + "line": 217, "column": 22 } }, "argument": { "type": "MemberExpression", - "start": 5805, - "end": 5815, + "start": 6040, + "end": 6050, "loc": { "start": { - "line": 207, + "line": 217, "column": 11 }, "end": { - "line": 207, + "line": 217, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 5805, - "end": 5809, + "start": 6040, + "end": 6044, "loc": { "start": { - "line": 207, + "line": 217, "column": 11 }, "end": { - "line": 207, + "line": 217, "column": 15 } } }, "property": { "type": "Identifier", - "start": 5810, - "end": 5815, + "start": 6045, + "end": 6050, "loc": { "start": { - "line": 207, + "line": 217, "column": 16 }, "end": { - "line": 207, + "line": 217, "column": 21 }, "identifierName": "_data" @@ -13451,15 +13451,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 5717, - "end": 5778, + "start": 5952, + "end": 6013, "loc": { "start": { - "line": 201, + "line": 211, "column": 2 }, "end": { - "line": 205, + "line": 215, "column": 5 } } @@ -13469,15 +13469,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 5824, - "end": 5865, + "start": 6059, + "end": 6100, "loc": { "start": { - "line": 210, + "line": 220, "column": 2 }, "end": { - "line": 213, + "line": 223, "column": 5 } } @@ -13486,15 +13486,15 @@ }, { "type": "ClassMethod", - "start": 5868, - "end": 6627, + "start": 6103, + "end": 6862, "loc": { "start": { - "line": 214, + "line": 224, "column": 2 }, "end": { - "line": 238, + "line": 248, "column": 3 } }, @@ -13502,15 +13502,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5874, - "end": 5881, + "start": 6109, + "end": 6116, "loc": { "start": { - "line": 214, + "line": 224, "column": 8 }, "end": { - "line": 214, + "line": 224, "column": 15 }, "identifierName": "_update" @@ -13525,59 +13525,59 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5884, - "end": 6627, + "start": 6119, + "end": 6862, "loc": { "start": { - "line": 214, + "line": 224, "column": 18 }, "end": { - "line": 238, + "line": 248, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 5890, - "end": 6044, + "start": 6125, + "end": 6279, "loc": { "start": { - "line": 215, + "line": 225, "column": 4 }, "end": { - "line": 221, + "line": 231, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5896, - "end": 6043, + "start": 6131, + "end": 6278, "loc": { "start": { - "line": 215, + "line": 225, "column": 10 }, "end": { - "line": 221, + "line": 231, "column": 5 } }, "id": { "type": "Identifier", - "start": 5896, - "end": 5912, + "start": 6131, + "end": 6147, "loc": { "start": { - "line": 215, + "line": 225, "column": 10 }, "end": { - "line": 215, + "line": 225, "column": 26 }, "identifierName": "requestStartArgs" @@ -13586,30 +13586,30 @@ }, "init": { "type": "ObjectExpression", - "start": 5915, - "end": 6043, + "start": 6150, + "end": 6278, "loc": { "start": { - "line": 215, + "line": 225, "column": 29 }, "end": { - "line": 221, + "line": 231, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 5923, - "end": 5935, + "start": 6158, + "end": 6170, "loc": { "start": { - "line": 216, + "line": 226, "column": 6 }, "end": { - "line": 216, + "line": 226, "column": 18 } }, @@ -13618,15 +13618,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5923, - "end": 5929, + "start": 6158, + "end": 6164, "loc": { "start": { - "line": 216, + "line": 226, "column": 6 }, "end": { - "line": 216, + "line": 226, "column": 12 }, "identifierName": "sender" @@ -13635,15 +13635,15 @@ }, "value": { "type": "ThisExpression", - "start": 5931, - "end": 5935, + "start": 6166, + "end": 6170, "loc": { "start": { - "line": 216, + "line": 226, "column": 14 }, "end": { - "line": 216, + "line": 226, "column": 18 } } @@ -13651,15 +13651,15 @@ }, { "type": "ObjectProperty", - "start": 5943, - "end": 5959, + "start": 6178, + "end": 6194, "loc": { "start": { - "line": 217, + "line": 227, "column": 6 }, "end": { - "line": 217, + "line": 227, "column": 22 } }, @@ -13668,15 +13668,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5943, - "end": 5952, + "start": 6178, + "end": 6187, "loc": { "start": { - "line": 217, + "line": 227, "column": 6 }, "end": { - "line": 217, + "line": 227, "column": 15 }, "identifierName": "prevented" @@ -13685,15 +13685,15 @@ }, "value": { "type": "BooleanLiteral", - "start": 5954, - "end": 5959, + "start": 6189, + "end": 6194, "loc": { "start": { - "line": 217, + "line": 227, "column": 17 }, "end": { - "line": 217, + "line": 227, "column": 22 } }, @@ -13702,15 +13702,15 @@ }, { "type": "ObjectMethod", - "start": 5967, - "end": 6036, + "start": 6202, + "end": 6271, "loc": { "start": { - "line": 218, + "line": 228, "column": 6 }, "end": { - "line": 220, + "line": 230, "column": 7 } }, @@ -13719,15 +13719,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5967, - "end": 5981, + "start": 6202, + "end": 6216, "loc": { "start": { - "line": 218, + "line": 228, "column": 6 }, "end": { - "line": 218, + "line": 228, "column": 20 }, "identifierName": "preventDefault" @@ -13742,73 +13742,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5984, - "end": 6036, + "start": 6219, + "end": 6271, "loc": { "start": { - "line": 218, + "line": 228, "column": 23 }, "end": { - "line": 220, + "line": 230, "column": 7 } }, "body": [ { "type": "ExpressionStatement", - "start": 5994, - "end": 6028, + "start": 6229, + "end": 6263, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 42 } }, "expression": { "type": "AssignmentExpression", - "start": 5994, - "end": 6027, + "start": 6229, + "end": 6262, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 41 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 5994, - "end": 6020, + "start": 6229, + "end": 6255, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 34 } }, "object": { "type": "Identifier", - "start": 5994, - "end": 6010, + "start": 6229, + "end": 6245, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 24 }, "identifierName": "requestStartArgs" @@ -13817,15 +13817,15 @@ }, "property": { "type": "Identifier", - "start": 6011, - "end": 6020, + "start": 6246, + "end": 6255, "loc": { "start": { - "line": 219, + "line": 229, "column": 25 }, "end": { - "line": 219, + "line": 229, "column": 34 }, "identifierName": "prevented" @@ -13836,15 +13836,15 @@ }, "right": { "type": "BooleanLiteral", - "start": 6023, - "end": 6027, + "start": 6258, + "end": 6262, "loc": { "start": { - "line": 219, + "line": 229, "column": 37 }, "end": { - "line": 219, + "line": 229, "column": 41 } }, @@ -13864,72 +13864,72 @@ }, { "type": "ExpressionStatement", - "start": 6049, - "end": 6093, + "start": 6284, + "end": 6328, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 48 } }, "expression": { "type": "CallExpression", - "start": 6049, - "end": 6092, + "start": 6284, + "end": 6327, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 47 } }, "callee": { "type": "MemberExpression", - "start": 6049, - "end": 6058, + "start": 6284, + "end": 6293, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 13 } }, "object": { "type": "ThisExpression", - "start": 6049, - "end": 6053, + "start": 6284, + "end": 6288, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6054, - "end": 6058, + "start": 6289, + "end": 6293, "loc": { "start": { - "line": 222, + "line": 232, "column": 9 }, "end": { - "line": 222, + "line": 232, "column": 13 }, "identifierName": "emit" @@ -13941,15 +13941,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 6059, - "end": 6073, + "start": 6294, + "end": 6308, "loc": { "start": { - "line": 222, + "line": 232, "column": 14 }, "end": { - "line": 222, + "line": 232, "column": 28 } }, @@ -13961,15 +13961,15 @@ }, { "type": "Identifier", - "start": 6075, - "end": 6091, + "start": 6310, + "end": 6326, "loc": { "start": { - "line": 222, + "line": 232, "column": 30 }, "end": { - "line": 222, + "line": 232, "column": 46 }, "identifierName": "requestStartArgs" @@ -13981,43 +13981,43 @@ }, { "type": "IfStatement", - "start": 6098, - "end": 6156, + "start": 6333, + "end": 6391, "loc": { "start": { - "line": 223, + "line": 233, "column": 4 }, "end": { - "line": 225, + "line": 235, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 6102, - "end": 6128, + "start": 6337, + "end": 6363, "loc": { "start": { - "line": 223, + "line": 233, "column": 8 }, "end": { - "line": 223, + "line": 233, "column": 34 } }, "object": { "type": "Identifier", - "start": 6102, - "end": 6118, + "start": 6337, + "end": 6353, "loc": { "start": { - "line": 223, + "line": 233, "column": 8 }, "end": { - "line": 223, + "line": 233, "column": 24 }, "identifierName": "requestStartArgs" @@ -14026,15 +14026,15 @@ }, "property": { "type": "Identifier", - "start": 6119, - "end": 6128, + "start": 6354, + "end": 6363, "loc": { "start": { - "line": 223, + "line": 233, "column": 25 }, "end": { - "line": 223, + "line": 233, "column": 34 }, "identifierName": "prevented" @@ -14045,44 +14045,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 6130, - "end": 6156, + "start": 6365, + "end": 6391, "loc": { "start": { - "line": 223, + "line": 233, "column": 36 }, "end": { - "line": 225, + "line": 235, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 6138, - "end": 6150, + "start": 6373, + "end": 6385, "loc": { "start": { - "line": 224, + "line": 234, "column": 6 }, "end": { - "line": 224, + "line": 234, "column": 18 } }, "argument": { "type": "NullLiteral", - "start": 6145, - "end": 6149, + "start": 6380, + "end": 6384, "loc": { "start": { - "line": 224, + "line": 234, "column": 13 }, "end": { - "line": 224, + "line": 234, "column": 17 } } @@ -14095,44 +14095,44 @@ }, { "type": "VariableDeclaration", - "start": 6161, - "end": 6206, + "start": 6396, + "end": 6441, "loc": { "start": { - "line": 226, + "line": 236, "column": 4 }, "end": { - "line": 226, + "line": 236, "column": 49 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6167, - "end": 6205, + "start": 6402, + "end": 6440, "loc": { "start": { - "line": 226, + "line": 236, "column": 10 }, "end": { - "line": 226, + "line": 236, "column": 48 } }, "id": { "type": "Identifier", - "start": 6167, - "end": 6178, + "start": 6402, + "end": 6413, "loc": { "start": { - "line": 226, + "line": 236, "column": 10 }, "end": { - "line": 226, + "line": 236, "column": 21 }, "identifierName": "ajaxHandler" @@ -14141,58 +14141,58 @@ }, "init": { "type": "CallExpression", - "start": 6181, - "end": 6205, + "start": 6416, + "end": 6440, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 48 } }, "callee": { "type": "MemberExpression", - "start": 6181, - "end": 6203, + "start": 6416, + "end": 6438, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 46 } }, "object": { "type": "ThisExpression", - "start": 6181, - "end": 6185, + "start": 6416, + "end": 6420, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 28 } } }, "property": { "type": "Identifier", - "start": 6186, - "end": 6203, + "start": 6421, + "end": 6438, "loc": { "start": { - "line": 226, + "line": 236, "column": 29 }, "end": { - "line": 226, + "line": 236, "column": 46 }, "identifierName": "_buildAjaxHandler" @@ -14209,44 +14209,44 @@ }, { "type": "VariableDeclaration", - "start": 6211, - "end": 6257, + "start": 6446, + "end": 6492, "loc": { "start": { - "line": 227, + "line": 237, "column": 4 }, "end": { - "line": 227, + "line": 237, "column": 50 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6217, - "end": 6256, + "start": 6452, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 10 }, "end": { - "line": 227, + "line": 237, "column": 49 } }, "id": { "type": "Identifier", - "start": 6217, - "end": 6225, + "start": 6452, + "end": 6460, "loc": { "start": { - "line": 227, + "line": 237, "column": 10 }, "end": { - "line": 227, + "line": 237, "column": 18 }, "identifierName": "response" @@ -14255,57 +14255,57 @@ }, "init": { "type": "AwaitExpression", - "start": 6228, - "end": 6256, + "start": 6463, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 21 }, "end": { - "line": 227, + "line": 237, "column": 49 } }, "argument": { "type": "CallExpression", - "start": 6234, - "end": 6256, + "start": 6469, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 49 } }, "callee": { "type": "MemberExpression", - "start": 6234, - "end": 6250, + "start": 6469, + "end": 6485, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 43 } }, "object": { "type": "Identifier", - "start": 6234, - "end": 6245, + "start": 6469, + "end": 6480, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 38 }, "identifierName": "ajaxHandler" @@ -14314,15 +14314,15 @@ }, "property": { "type": "Identifier", - "start": 6246, - "end": 6250, + "start": 6481, + "end": 6485, "loc": { "start": { - "line": 227, + "line": 237, "column": 39 }, "end": { - "line": 227, + "line": 237, "column": 43 }, "identifierName": "call" @@ -14334,15 +14334,15 @@ "arguments": [ { "type": "ThisExpression", - "start": 6251, - "end": 6255, + "start": 6486, + "end": 6490, "loc": { "start": { - "line": 227, + "line": 237, "column": 44 }, "end": { - "line": 227, + "line": 237, "column": 48 } } @@ -14356,72 +14356,72 @@ }, { "type": "ExpressionStatement", - "start": 6262, - "end": 6331, + "start": 6497, + "end": 6566, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 231, + "line": 241, "column": 7 } }, "expression": { "type": "CallExpression", - "start": 6262, - "end": 6330, + "start": 6497, + "end": 6565, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 231, + "line": 241, "column": 6 } }, "callee": { "type": "MemberExpression", - "start": 6262, - "end": 6271, + "start": 6497, + "end": 6506, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 228, + "line": 238, "column": 13 } }, "object": { "type": "ThisExpression", - "start": 6262, - "end": 6266, + "start": 6497, + "end": 6501, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 228, + "line": 238, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6267, - "end": 6271, + "start": 6502, + "end": 6506, "loc": { "start": { - "line": 228, + "line": 238, "column": 9 }, "end": { - "line": 228, + "line": 238, "column": 13 }, "identifierName": "emit" @@ -14433,15 +14433,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 6272, - "end": 6284, + "start": 6507, + "end": 6519, "loc": { "start": { - "line": 228, + "line": 238, "column": 14 }, "end": { - "line": 228, + "line": 238, "column": 26 } }, @@ -14453,30 +14453,30 @@ }, { "type": "ObjectExpression", - "start": 6286, - "end": 6329, + "start": 6521, + "end": 6564, "loc": { "start": { - "line": 228, + "line": 238, "column": 28 }, "end": { - "line": 231, + "line": 241, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 6294, - "end": 6306, + "start": 6529, + "end": 6541, "loc": { "start": { - "line": 229, + "line": 239, "column": 6 }, "end": { - "line": 229, + "line": 239, "column": 18 } }, @@ -14485,15 +14485,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6294, - "end": 6300, + "start": 6529, + "end": 6535, "loc": { "start": { - "line": 229, + "line": 239, "column": 6 }, "end": { - "line": 229, + "line": 239, "column": 12 }, "identifierName": "sender" @@ -14502,15 +14502,15 @@ }, "value": { "type": "ThisExpression", - "start": 6302, - "end": 6306, + "start": 6537, + "end": 6541, "loc": { "start": { - "line": 229, + "line": 239, "column": 14 }, "end": { - "line": 229, + "line": 239, "column": 18 } } @@ -14518,15 +14518,15 @@ }, { "type": "ObjectProperty", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 } }, @@ -14535,15 +14535,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 }, "identifierName": "response" @@ -14552,15 +14552,15 @@ }, "value": { "type": "Identifier", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 }, "identifierName": "response" @@ -14579,15 +14579,15 @@ { "type": "CommentLine", "value": " If not provided an object, use the default mapper", - "start": 6336, - "end": 6388, + "start": 6571, + "end": 6623, "loc": { "start": { - "line": 232, + "line": 242, "column": 4 }, "end": { - "line": 232, + "line": 242, "column": 56 } } @@ -14596,44 +14596,44 @@ }, { "type": "VariableDeclaration", - "start": 6393, - "end": 6474, + "start": 6628, + "end": 6709, "loc": { "start": { - "line": 233, + "line": 243, "column": 4 }, "end": { - "line": 233, + "line": 243, "column": 85 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6399, - "end": 6473, + "start": 6634, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 10 }, "end": { - "line": 233, + "line": 243, "column": 84 } }, "id": { "type": "Identifier", - "start": 6399, - "end": 6405, + "start": 6634, + "end": 6640, "loc": { "start": { - "line": 233, + "line": 243, "column": 10 }, "end": { - "line": 233, + "line": 243, "column": 16 }, "identifierName": "mapper" @@ -14643,72 +14643,72 @@ }, "init": { "type": "LogicalExpression", - "start": 6408, - "end": 6473, + "start": 6643, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 84 } }, "left": { "type": "MemberExpression", - "start": 6408, - "end": 6424, + "start": 6643, + "end": 6659, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 35 } }, "object": { "type": "MemberExpression", - "start": 6408, - "end": 6417, + "start": 6643, + "end": 6652, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 28 } }, "object": { "type": "ThisExpression", - "start": 6408, - "end": 6412, + "start": 6643, + "end": 6647, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 23 } } }, "property": { "type": "Identifier", - "start": 6413, - "end": 6417, + "start": 6648, + "end": 6652, "loc": { "start": { - "line": 233, + "line": 243, "column": 24 }, "end": { - "line": 233, + "line": 243, "column": 28 }, "identifierName": "ajax" @@ -14719,15 +14719,15 @@ }, "property": { "type": "Identifier", - "start": 6418, - "end": 6424, + "start": 6653, + "end": 6659, "loc": { "start": { - "line": 233, + "line": 243, "column": 29 }, "end": { - "line": 233, + "line": 243, "column": 35 }, "identifierName": "mapper" @@ -14739,71 +14739,71 @@ "operator": "||", "right": { "type": "MemberExpression", - "start": 6428, - "end": 6473, + "start": 6663, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 84 } }, "object": { "type": "MemberExpression", - "start": 6428, - "end": 6466, + "start": 6663, + "end": 6701, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 77 } }, "object": { "type": "MemberExpression", - "start": 6428, - "end": 6461, + "start": 6663, + "end": 6696, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 72 } }, "object": { "type": "MemberExpression", - "start": 6428, - "end": 6452, + "start": 6663, + "end": 6687, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 63 } }, "object": { "type": "Identifier", - "start": 6428, - "end": 6442, + "start": 6663, + "end": 6677, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 53 }, "identifierName": "AjaxDatasource" @@ -14812,15 +14812,15 @@ }, "property": { "type": "Identifier", - "start": 6443, - "end": 6452, + "start": 6678, + "end": 6687, "loc": { "start": { - "line": 233, + "line": 243, "column": 54 }, "end": { - "line": 233, + "line": 243, "column": 63 }, "identifierName": "prototype" @@ -14831,15 +14831,15 @@ }, "property": { "type": "Identifier", - "start": 6453, - "end": 6461, + "start": 6688, + "end": 6696, "loc": { "start": { - "line": 233, + "line": 243, "column": 64 }, "end": { - "line": 233, + "line": 243, "column": 72 }, "identifierName": "defaults" @@ -14850,15 +14850,15 @@ }, "property": { "type": "Identifier", - "start": 6462, - "end": 6466, + "start": 6697, + "end": 6701, "loc": { "start": { - "line": 233, + "line": 243, "column": 73 }, "end": { - "line": 233, + "line": 243, "column": 77 }, "identifierName": "ajax" @@ -14869,15 +14869,15 @@ }, "property": { "type": "Identifier", - "start": 6467, - "end": 6473, + "start": 6702, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 78 }, "end": { - "line": 233, + "line": 243, "column": 84 }, "identifierName": "mapper" @@ -14895,15 +14895,15 @@ { "type": "CommentLine", "value": " If not provided an object, use the default mapper", - "start": 6336, - "end": 6388, + "start": 6571, + "end": 6623, "loc": { "start": { - "line": 232, + "line": 242, "column": 4 }, "end": { - "line": 232, + "line": 242, "column": 56 } } @@ -14912,44 +14912,44 @@ }, { "type": "VariableDeclaration", - "start": 6479, - "end": 6528, + "start": 6714, + "end": 6763, "loc": { "start": { - "line": 234, + "line": 244, "column": 4 }, "end": { - "line": 234, + "line": 244, "column": 53 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6485, - "end": 6527, + "start": 6720, + "end": 6762, "loc": { "start": { - "line": 234, + "line": 244, "column": 10 }, "end": { - "line": 234, + "line": 244, "column": 52 } }, "id": { "type": "Identifier", - "start": 6485, - "end": 6497, + "start": 6720, + "end": 6732, "loc": { "start": { - "line": 234, + "line": 244, "column": 10 }, "end": { - "line": 234, + "line": 244, "column": 22 }, "identifierName": "mappedObject" @@ -14958,43 +14958,43 @@ }, "init": { "type": "CallExpression", - "start": 6500, - "end": 6527, + "start": 6735, + "end": 6762, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 52 } }, "callee": { "type": "MemberExpression", - "start": 6500, - "end": 6511, + "start": 6735, + "end": 6746, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 36 } }, "object": { "type": "Identifier", - "start": 6500, - "end": 6506, + "start": 6735, + "end": 6741, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 31 }, "identifierName": "mapper" @@ -15003,15 +15003,15 @@ }, "property": { "type": "Identifier", - "start": 6507, - "end": 6511, + "start": 6742, + "end": 6746, "loc": { "start": { - "line": 234, + "line": 244, "column": 32 }, "end": { - "line": 234, + "line": 244, "column": 36 }, "identifierName": "call" @@ -15023,30 +15023,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 6512, - "end": 6516, + "start": 6747, + "end": 6751, "loc": { "start": { - "line": 234, + "line": 244, "column": 37 }, "end": { - "line": 234, + "line": 244, "column": 41 } } }, { "type": "Identifier", - "start": 6518, - "end": 6526, + "start": 6753, + "end": 6761, "loc": { "start": { - "line": 234, + "line": 244, "column": 43 }, "end": { - "line": 234, + "line": 244, "column": 51 }, "identifierName": "response" @@ -15061,73 +15061,73 @@ }, { "type": "ExpressionStatement", - "start": 6533, - "end": 6564, + "start": 6768, + "end": 6799, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 35 } }, "expression": { "type": "AssignmentExpression", - "start": 6533, - "end": 6563, + "start": 6768, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 34 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 6533, - "end": 6543, + "start": 6768, + "end": 6778, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 6533, - "end": 6537, + "start": 6768, + "end": 6772, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6538, - "end": 6543, + "start": 6773, + "end": 6778, "loc": { "start": { - "line": 235, + "line": 245, "column": 9 }, "end": { - "line": 235, + "line": 245, "column": 14 }, "identifierName": "_data" @@ -15138,29 +15138,29 @@ }, "right": { "type": "MemberExpression", - "start": 6546, - "end": 6563, + "start": 6781, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 17 }, "end": { - "line": 235, + "line": 245, "column": 34 } }, "object": { "type": "Identifier", - "start": 6546, - "end": 6558, + "start": 6781, + "end": 6793, "loc": { "start": { - "line": 235, + "line": 245, "column": 17 }, "end": { - "line": 235, + "line": 245, "column": 29 }, "identifierName": "mappedObject" @@ -15169,15 +15169,15 @@ }, "property": { "type": "Identifier", - "start": 6559, - "end": 6563, + "start": 6794, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 30 }, "end": { - "line": 235, + "line": 245, "column": 34 }, "identifierName": "data" @@ -15190,73 +15190,73 @@ }, { "type": "ExpressionStatement", - "start": 6569, - "end": 6602, + "start": 6804, + "end": 6837, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 37 } }, "expression": { "type": "AssignmentExpression", - "start": 6569, - "end": 6601, + "start": 6804, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 36 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 6569, - "end": 6580, + "start": 6804, + "end": 6815, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 15 } }, "object": { "type": "ThisExpression", - "start": 6569, - "end": 6573, + "start": 6804, + "end": 6808, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 8 } } }, "property": { "type": "Identifier", - "start": 6574, - "end": 6580, + "start": 6809, + "end": 6815, "loc": { "start": { - "line": 236, + "line": 246, "column": 9 }, "end": { - "line": 236, + "line": 246, "column": 15 }, "identifierName": "_total" @@ -15267,29 +15267,29 @@ }, "right": { "type": "MemberExpression", - "start": 6583, - "end": 6601, + "start": 6818, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 18 }, "end": { - "line": 236, + "line": 246, "column": 36 } }, "object": { "type": "Identifier", - "start": 6583, - "end": 6595, + "start": 6818, + "end": 6830, "loc": { "start": { - "line": 236, + "line": 246, "column": 18 }, "end": { - "line": 236, + "line": 246, "column": 30 }, "identifierName": "mappedObject" @@ -15298,15 +15298,15 @@ }, "property": { "type": "Identifier", - "start": 6596, - "end": 6601, + "start": 6831, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 31 }, "end": { - "line": 236, + "line": 246, "column": 36 }, "identifierName": "total" @@ -15319,29 +15319,29 @@ }, { "type": "ReturnStatement", - "start": 6607, - "end": 6623, + "start": 6842, + "end": 6858, "loc": { "start": { - "line": 237, + "line": 247, "column": 4 }, "end": { - "line": 237, + "line": 247, "column": 20 } }, "argument": { "type": "Identifier", - "start": 6614, - "end": 6622, + "start": 6849, + "end": 6857, "loc": { "start": { - "line": 237, + "line": 247, "column": 11 }, "end": { - "line": 237, + "line": 247, "column": 19 }, "identifierName": "response" @@ -15356,15 +15356,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 5824, - "end": 5865, + "start": 6059, + "end": 6100, "loc": { "start": { - "line": 210, + "line": 220, "column": 2 }, "end": { - "line": 213, + "line": 223, "column": 5 } } @@ -15376,16 +15376,16 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to this library\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to the datasource package,\n * // it's not actually part of Axios\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 118, - "end": 1804, + "end": 2039, "loc": { "start": { "line": 5, "column": 0 }, "end": { - "line": 56, + "line": 66, "column": 3 } } @@ -15402,16 +15402,16 @@ "comments": [ { "type": "CommentBlock", - "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to this library\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to the datasource package,\n * // it's not actually part of Axios\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 118, - "end": 1804, + "end": 2039, "loc": { "start": { "line": 5, "column": 0 }, "end": { - "line": 56, + "line": 66, "column": 3 } } @@ -15419,15 +15419,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {String|Function|Object} options.ajax\n * Defines the behavior of the AJAX call.\n * If a string, remote endpoint to contact.\n * If a function, it'll call the function\n * when data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n ", - "start": 1853, - "end": 2289, + "start": 2088, + "end": 2524, "loc": { "start": { - "line": 58, + "line": 68, "column": 2 }, "end": { - "line": 70, + "line": 80, "column": 5 } } @@ -15435,15 +15435,15 @@ { "type": "CommentBlock", "value": "*\n * The total amount of data items to page through.\n *\n * @access private\n * @type {Number}\n ", - "start": 2632, - "end": 2750, + "start": 2867, + "end": 2985, "loc": { "start": { - "line": 88, + "line": 98, "column": 4 }, "end": { - "line": 93, + "line": 103, "column": 7 } } @@ -15451,15 +15451,15 @@ { "type": "CommentBlock", "value": "*\n * The array of data items.\n *\n * @access private\n * @type {?Array}\n ", - "start": 2780, - "end": 2875, + "start": 3015, + "end": 3110, "loc": { "start": { - "line": 96, + "line": 106, "column": 4 }, "end": { - "line": 101, + "line": 111, "column": 7 } } @@ -15467,15 +15467,15 @@ { "type": "CommentBlock", "value": "*\n * The query builder which constructs\n * either the query object to pass to\n * post/delete/put requests, or the\n * query string to pass to get\n * requests.\n *\n * @access public\n * @type {QueryBuilder}\n ", - "start": 2968, - "end": 3230, + "start": 3203, + "end": 3465, "loc": { "start": { - "line": 105, + "line": 115, "column": 6 }, "end": { - "line": 114, + "line": 124, "column": 9 } } @@ -15483,15 +15483,15 @@ { "type": "CommentBlock", "value": "*\n * Property defining the behavior\n * of the AJAX call.\n * If a string, remote endpoint\n * to contact. If a function,\n * it'll call the function when\n * data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n *\n * @access public\n * @type {String|Function|Object}\n ", - "start": 3413, - "end": 3762, + "start": 3648, + "end": 3997, "loc": { "start": { - "line": 120, + "line": 130, "column": 4 }, "end": { - "line": 132, + "line": 142, "column": 7 } } @@ -15499,15 +15499,15 @@ { "type": "CommentBlock", "value": "*\n * Performs an AJAX call.\n *\n * @access private\n * @param {Object} axiosOptions Ajax options object for axios\n * @param {String} axiosOptions.url Url to remote endpoint to ajax for.\n * @param {String} axiosOptions.method The AJAX method, i.e. 'get', 'post', etc.\n * @return {Promise} Returns the axios promise object, containing\n * the response from remote endpoint.\n ", - "start": 3806, - "end": 4216, + "start": 4041, + "end": 4451, "loc": { "start": { - "line": 136, + "line": 146, "column": 2 }, "end": { - "line": 145, + "line": 155, "column": 5 } } @@ -15515,15 +15515,15 @@ { "type": "CommentBlock", "value": "*\n * Builds an AJAX handler function.\n * @access private\n * @return {Function} A callback function which performs\n * the actual ajax operation.\n ", - "start": 4722, - "end": 4900, + "start": 4957, + "end": 5135, "loc": { "start": { - "line": 159, + "line": 169, "column": 2 }, "end": { - "line": 164, + "line": 174, "column": 5 } } @@ -15531,15 +15531,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 5561, - "end": 5604, + "start": 5796, + "end": 5839, "loc": { "start": { - "line": 188, + "line": 198, "column": 2 }, "end": { - "line": 190, + "line": 200, "column": 5 } } @@ -15547,15 +15547,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 5608, - "end": 5669, + "start": 5843, + "end": 5904, "loc": { "start": { - "line": 192, + "line": 202, "column": 2 }, "end": { - "line": 196, + "line": 206, "column": 5 } } @@ -15563,15 +15563,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 5717, - "end": 5778, + "start": 5952, + "end": 6013, "loc": { "start": { - "line": 201, + "line": 211, "column": 2 }, "end": { - "line": 205, + "line": 215, "column": 5 } } @@ -15579,15 +15579,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 5824, - "end": 5865, + "start": 6059, + "end": 6100, "loc": { "start": { - "line": 210, + "line": 220, "column": 2 }, "end": { - "line": 213, + "line": 223, "column": 5 } } @@ -15595,15 +15595,15 @@ { "type": "CommentLine", "value": " If not provided an object, use the default mapper", - "start": 6336, - "end": 6388, + "start": 6571, + "end": 6623, "loc": { "start": { - "line": 232, + "line": 242, "column": 4 }, "end": { - "line": 232, + "line": 242, "column": 56 } } @@ -15611,15 +15611,15 @@ { "type": "CommentLine", "value": " ajax can be an object, function, or even a simple string", - "start": 6691, - "end": 6750, + "start": 6926, + "end": 6985, "loc": { "start": { - "line": 243, + "line": 253, "column": 2 }, "end": { - "line": 243, + "line": 253, "column": 61 } } @@ -15627,15 +15627,15 @@ { "type": "CommentLine", "value": " Axios options object", - "start": 6761, - "end": 6784, + "start": 6996, + "end": 7019, "loc": { "start": { - "line": 244, + "line": 254, "column": 10 }, "end": { - "line": 244, + "line": 254, "column": 33 } } @@ -15643,15 +15643,15 @@ { "type": "CommentLine", "value": " Maps the response to return the data in an expected format", - "start": 6789, - "end": 6850, + "start": 7024, + "end": 7085, "loc": { "start": { - "line": 245, + "line": 255, "column": 4 }, "end": { - "line": 245, + "line": 255, "column": 65 } } @@ -16059,16 +16059,16 @@ }, { "type": "CommentBlock", - "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to this library\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to retrieve and manage\n * data from a remote endpoint.\n *\n * @example Basic Usage\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: 'https://path/to/remote/endpoint'\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Options Object\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: {\n * // Note pagination/sorting/filtering doesn't\n * // work with this fake endpoint, as even when\n * // we send the datasource parameters, the\n * // remote endpoint won't actually vary\n * // the returned dataset.\n * url: 'https://jsonplaceholder.typicode.com/posts',\n * method: 'get',\n * // ... Other Axios options\n * // `mapper` is a custom option unique to the datasource package,\n * // it's not actually part of Axios\n * mapper: function(response) {\n * return {\n * data: response.data,\n * total: response.data.length,\n * }\n * }\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Basic Usage with Function\n *\n * import { AjaxDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new AjaxDatasource({\n * ajax: async function() {\n * return await mockAjaxCall();\n * }\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 118, - "end": 1804, + "end": 2039, "loc": { "start": { "line": 5, "column": 0 }, "end": { - "line": 56, + "line": 66, "column": 3 } } @@ -16088,15 +16088,15 @@ "updateContext": null }, "value": "class", - "start": 1805, - "end": 1810, + "start": 2040, + "end": 2045, "loc": { "start": { - "line": 57, + "line": 67, "column": 0 }, "end": { - "line": 57, + "line": 67, "column": 5 } } @@ -16114,15 +16114,15 @@ "binop": null }, "value": "AjaxDatasource", - "start": 1811, - "end": 1825, + "start": 2046, + "end": 2060, "loc": { "start": { - "line": 57, + "line": 67, "column": 6 }, "end": { - "line": 57, + "line": 67, "column": 20 } } @@ -16142,15 +16142,15 @@ "updateContext": null }, "value": "extends", - "start": 1826, - "end": 1833, + "start": 2061, + "end": 2068, "loc": { "start": { - "line": 57, + "line": 67, "column": 21 }, "end": { - "line": 57, + "line": 67, "column": 28 } } @@ -16168,15 +16168,15 @@ "binop": null }, "value": "DatasourceBase", - "start": 1834, - "end": 1848, + "start": 2069, + "end": 2083, "loc": { "start": { - "line": 57, + "line": 67, "column": 29 }, "end": { - "line": 57, + "line": 67, "column": 43 } } @@ -16193,15 +16193,15 @@ "postfix": false, "binop": null }, - "start": 1849, - "end": 1850, + "start": 2084, + "end": 2085, "loc": { "start": { - "line": 57, + "line": 67, "column": 44 }, "end": { - "line": 57, + "line": 67, "column": 45 } } @@ -16209,15 +16209,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {String|Function|Object} options.ajax\n * Defines the behavior of the AJAX call.\n * If a string, remote endpoint to contact.\n * If a function, it'll call the function\n * when data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n ", - "start": 1853, - "end": 2289, + "start": 2088, + "end": 2524, "loc": { "start": { - "line": 58, + "line": 68, "column": 2 }, "end": { - "line": 70, + "line": 80, "column": 5 } } @@ -16235,15 +16235,15 @@ "binop": null }, "value": "constructor", - "start": 2292, - "end": 2303, + "start": 2527, + "end": 2538, "loc": { "start": { - "line": 71, + "line": 81, "column": 2 }, "end": { - "line": 71, + "line": 81, "column": 13 } } @@ -16260,15 +16260,15 @@ "postfix": false, "binop": null }, - "start": 2303, - "end": 2304, + "start": 2538, + "end": 2539, "loc": { "start": { - "line": 71, + "line": 81, "column": 13 }, "end": { - "line": 71, + "line": 81, "column": 14 } } @@ -16286,15 +16286,15 @@ "binop": null }, "value": "options", - "start": 2304, - "end": 2311, + "start": 2539, + "end": 2546, "loc": { "start": { - "line": 71, + "line": 81, "column": 14 }, "end": { - "line": 71, + "line": 81, "column": 21 } } @@ -16313,15 +16313,15 @@ "updateContext": null }, "value": "=", - "start": 2312, - "end": 2313, + "start": 2547, + "end": 2548, "loc": { "start": { - "line": 71, + "line": 81, "column": 22 }, "end": { - "line": 71, + "line": 81, "column": 23 } } @@ -16338,15 +16338,15 @@ "postfix": false, "binop": null }, - "start": 2314, - "end": 2315, + "start": 2549, + "end": 2550, "loc": { "start": { - "line": 71, + "line": 81, "column": 24 }, "end": { - "line": 71, + "line": 81, "column": 25 } } @@ -16363,15 +16363,15 @@ "postfix": false, "binop": null }, - "start": 2315, - "end": 2316, + "start": 2550, + "end": 2551, "loc": { "start": { - "line": 71, + "line": 81, "column": 25 }, "end": { - "line": 71, + "line": 81, "column": 26 } } @@ -16388,15 +16388,15 @@ "postfix": false, "binop": null }, - "start": 2316, - "end": 2317, + "start": 2551, + "end": 2552, "loc": { "start": { - "line": 71, + "line": 81, "column": 26 }, "end": { - "line": 71, + "line": 81, "column": 27 } } @@ -16413,15 +16413,15 @@ "postfix": false, "binop": null }, - "start": 2318, - "end": 2319, + "start": 2553, + "end": 2554, "loc": { "start": { - "line": 71, + "line": 81, "column": 28 }, "end": { - "line": 71, + "line": 81, "column": 29 } } @@ -16441,15 +16441,15 @@ "updateContext": null }, "value": "let", - "start": 2324, - "end": 2327, + "start": 2559, + "end": 2562, "loc": { "start": { - "line": 72, + "line": 82, "column": 4 }, "end": { - "line": 72, + "line": 82, "column": 7 } } @@ -16466,15 +16466,15 @@ "postfix": false, "binop": null }, - "start": 2328, - "end": 2329, + "start": 2563, + "end": 2564, "loc": { "start": { - "line": 72, + "line": 82, "column": 8 }, "end": { - "line": 72, + "line": 82, "column": 9 } } @@ -16492,15 +16492,15 @@ "binop": null }, "value": "ajax", - "start": 2330, - "end": 2334, + "start": 2565, + "end": 2569, "loc": { "start": { - "line": 72, + "line": 82, "column": 10 }, "end": { - "line": 72, + "line": 82, "column": 14 } } @@ -16517,15 +16517,15 @@ "postfix": false, "binop": null }, - "start": 2335, - "end": 2336, + "start": 2570, + "end": 2571, "loc": { "start": { - "line": 72, + "line": 82, "column": 15 }, "end": { - "line": 72, + "line": 82, "column": 16 } } @@ -16544,15 +16544,15 @@ "updateContext": null }, "value": "=", - "start": 2337, - "end": 2338, + "start": 2572, + "end": 2573, "loc": { "start": { - "line": 72, + "line": 82, "column": 17 }, "end": { - "line": 72, + "line": 82, "column": 18 } } @@ -16570,15 +16570,15 @@ "binop": null }, "value": "options", - "start": 2339, - "end": 2346, + "start": 2574, + "end": 2581, "loc": { "start": { - "line": 72, + "line": 82, "column": 19 }, "end": { - "line": 72, + "line": 82, "column": 26 } } @@ -16596,15 +16596,15 @@ "binop": null, "updateContext": null }, - "start": 2346, - "end": 2347, + "start": 2581, + "end": 2582, "loc": { "start": { - "line": 72, + "line": 82, "column": 26 }, "end": { - "line": 72, + "line": 82, "column": 27 } } @@ -16624,15 +16624,15 @@ "updateContext": null }, "value": "if", - "start": 2352, - "end": 2354, + "start": 2587, + "end": 2589, "loc": { "start": { - "line": 73, + "line": 83, "column": 4 }, "end": { - "line": 73, + "line": 83, "column": 6 } } @@ -16649,15 +16649,15 @@ "postfix": false, "binop": null }, - "start": 2355, - "end": 2356, + "start": 2590, + "end": 2591, "loc": { "start": { - "line": 73, + "line": 83, "column": 7 }, "end": { - "line": 73, + "line": 83, "column": 8 } } @@ -16675,15 +16675,15 @@ "binop": null }, "value": "ajax", - "start": 2356, - "end": 2360, + "start": 2591, + "end": 2595, "loc": { "start": { - "line": 73, + "line": 83, "column": 8 }, "end": { - "line": 73, + "line": 83, "column": 12 } } @@ -16702,15 +16702,15 @@ "updateContext": null }, "value": "&&", - "start": 2361, - "end": 2363, + "start": 2596, + "end": 2598, "loc": { "start": { - "line": 73, + "line": 83, "column": 13 }, "end": { - "line": 73, + "line": 83, "column": 15 } } @@ -16730,15 +16730,15 @@ "updateContext": null }, "value": "typeof", - "start": 2364, - "end": 2370, + "start": 2599, + "end": 2605, "loc": { "start": { - "line": 73, + "line": 83, "column": 16 }, "end": { - "line": 73, + "line": 83, "column": 22 } } @@ -16756,15 +16756,15 @@ "binop": null }, "value": "ajax", - "start": 2371, - "end": 2375, + "start": 2606, + "end": 2610, "loc": { "start": { - "line": 73, + "line": 83, "column": 23 }, "end": { - "line": 73, + "line": 83, "column": 27 } } @@ -16783,15 +16783,15 @@ "updateContext": null }, "value": "===", - "start": 2376, - "end": 2379, + "start": 2611, + "end": 2614, "loc": { "start": { - "line": 73, + "line": 83, "column": 28 }, "end": { - "line": 73, + "line": 83, "column": 31 } } @@ -16810,15 +16810,15 @@ "updateContext": null }, "value": "object", - "start": 2380, - "end": 2388, + "start": 2615, + "end": 2623, "loc": { "start": { - "line": 73, + "line": 83, "column": 32 }, "end": { - "line": 73, + "line": 83, "column": 40 } } @@ -16835,15 +16835,15 @@ "postfix": false, "binop": null }, - "start": 2388, - "end": 2389, + "start": 2623, + "end": 2624, "loc": { "start": { - "line": 73, + "line": 83, "column": 40 }, "end": { - "line": 73, + "line": 83, "column": 41 } } @@ -16860,15 +16860,15 @@ "postfix": false, "binop": null }, - "start": 2390, - "end": 2391, + "start": 2625, + "end": 2626, "loc": { "start": { - "line": 73, + "line": 83, "column": 42 }, "end": { - "line": 73, + "line": 83, "column": 43 } } @@ -16886,15 +16886,15 @@ "binop": null }, "value": "ajax", - "start": 2398, - "end": 2402, + "start": 2633, + "end": 2637, "loc": { "start": { - "line": 74, + "line": 84, "column": 6 }, "end": { - "line": 74, + "line": 84, "column": 10 } } @@ -16913,15 +16913,15 @@ "updateContext": null }, "value": "=", - "start": 2403, - "end": 2404, + "start": 2638, + "end": 2639, "loc": { "start": { - "line": 74, + "line": 84, "column": 11 }, "end": { - "line": 74, + "line": 84, "column": 12 } } @@ -16938,15 +16938,15 @@ "postfix": false, "binop": null }, - "start": 2405, - "end": 2406, + "start": 2640, + "end": 2641, "loc": { "start": { - "line": 74, + "line": 84, "column": 13 }, "end": { - "line": 74, + "line": 84, "column": 14 } } @@ -16964,15 +16964,15 @@ "binop": null, "updateContext": null }, - "start": 2415, - "end": 2418, + "start": 2650, + "end": 2653, "loc": { "start": { - "line": 75, + "line": 85, "column": 8 }, "end": { - "line": 75, + "line": 85, "column": 11 } } @@ -16990,15 +16990,15 @@ "binop": null }, "value": "AjaxDatasource", - "start": 2418, - "end": 2432, + "start": 2653, + "end": 2667, "loc": { "start": { - "line": 75, + "line": 85, "column": 11 }, "end": { - "line": 75, + "line": 85, "column": 25 } } @@ -17016,15 +17016,15 @@ "binop": null, "updateContext": null }, - "start": 2432, - "end": 2433, + "start": 2667, + "end": 2668, "loc": { "start": { - "line": 75, + "line": 85, "column": 25 }, "end": { - "line": 75, + "line": 85, "column": 26 } } @@ -17042,15 +17042,15 @@ "binop": null }, "value": "prototype", - "start": 2433, - "end": 2442, + "start": 2668, + "end": 2677, "loc": { "start": { - "line": 75, + "line": 85, "column": 26 }, "end": { - "line": 75, + "line": 85, "column": 35 } } @@ -17068,15 +17068,15 @@ "binop": null, "updateContext": null }, - "start": 2442, - "end": 2443, + "start": 2677, + "end": 2678, "loc": { "start": { - "line": 75, + "line": 85, "column": 35 }, "end": { - "line": 75, + "line": 85, "column": 36 } } @@ -17094,15 +17094,15 @@ "binop": null }, "value": "defaults", - "start": 2443, - "end": 2451, + "start": 2678, + "end": 2686, "loc": { "start": { - "line": 75, + "line": 85, "column": 36 }, "end": { - "line": 75, + "line": 85, "column": 44 } } @@ -17120,15 +17120,15 @@ "binop": null, "updateContext": null }, - "start": 2451, - "end": 2452, + "start": 2686, + "end": 2687, "loc": { "start": { - "line": 75, + "line": 85, "column": 44 }, "end": { - "line": 75, + "line": 85, "column": 45 } } @@ -17146,15 +17146,15 @@ "binop": null }, "value": "ajax", - "start": 2452, - "end": 2456, + "start": 2687, + "end": 2691, "loc": { "start": { - "line": 75, + "line": 85, "column": 45 }, "end": { - "line": 75, + "line": 85, "column": 49 } } @@ -17172,15 +17172,15 @@ "binop": null, "updateContext": null }, - "start": 2456, - "end": 2457, + "start": 2691, + "end": 2692, "loc": { "start": { - "line": 75, + "line": 85, "column": 49 }, "end": { - "line": 75, + "line": 85, "column": 50 } } @@ -17198,15 +17198,15 @@ "binop": null, "updateContext": null }, - "start": 2466, - "end": 2469, + "start": 2701, + "end": 2704, "loc": { "start": { - "line": 76, + "line": 86, "column": 8 }, "end": { - "line": 76, + "line": 86, "column": 11 } } @@ -17224,15 +17224,15 @@ "binop": null }, "value": "ajax", - "start": 2469, - "end": 2473, + "start": 2704, + "end": 2708, "loc": { "start": { - "line": 76, + "line": 86, "column": 11 }, "end": { - "line": 76, + "line": 86, "column": 15 } } @@ -17250,15 +17250,15 @@ "binop": null, "updateContext": null }, - "start": 2473, - "end": 2474, + "start": 2708, + "end": 2709, "loc": { "start": { - "line": 76, + "line": 86, "column": 15 }, "end": { - "line": 76, + "line": 86, "column": 16 } } @@ -17275,15 +17275,15 @@ "postfix": false, "binop": null }, - "start": 2481, - "end": 2482, + "start": 2716, + "end": 2717, "loc": { "start": { - "line": 77, + "line": 87, "column": 6 }, "end": { - "line": 77, + "line": 87, "column": 7 } } @@ -17301,15 +17301,15 @@ "binop": null, "updateContext": null }, - "start": 2482, - "end": 2483, + "start": 2717, + "end": 2718, "loc": { "start": { - "line": 77, + "line": 87, "column": 7 }, "end": { - "line": 77, + "line": 87, "column": 8 } } @@ -17326,15 +17326,15 @@ "postfix": false, "binop": null }, - "start": 2488, - "end": 2489, + "start": 2723, + "end": 2724, "loc": { "start": { - "line": 78, + "line": 88, "column": 4 }, "end": { - "line": 78, + "line": 88, "column": 5 } } @@ -17354,15 +17354,15 @@ "updateContext": null }, "value": "const", - "start": 2495, - "end": 2500, + "start": 2730, + "end": 2735, "loc": { "start": { - "line": 80, + "line": 90, "column": 4 }, "end": { - "line": 80, + "line": 90, "column": 9 } } @@ -17380,15 +17380,15 @@ "binop": null }, "value": "mergedOptions", - "start": 2501, - "end": 2514, + "start": 2736, + "end": 2749, "loc": { "start": { - "line": 80, + "line": 90, "column": 10 }, "end": { - "line": 80, + "line": 90, "column": 23 } } @@ -17407,15 +17407,15 @@ "updateContext": null }, "value": "=", - "start": 2515, - "end": 2516, + "start": 2750, + "end": 2751, "loc": { "start": { - "line": 80, + "line": 90, "column": 24 }, "end": { - "line": 80, + "line": 90, "column": 25 } } @@ -17432,15 +17432,15 @@ "postfix": false, "binop": null }, - "start": 2517, - "end": 2518, + "start": 2752, + "end": 2753, "loc": { "start": { - "line": 80, + "line": 90, "column": 26 }, "end": { - "line": 80, + "line": 90, "column": 27 } } @@ -17458,15 +17458,15 @@ "binop": null, "updateContext": null }, - "start": 2525, - "end": 2528, + "start": 2760, + "end": 2763, "loc": { "start": { - "line": 81, + "line": 91, "column": 6 }, "end": { - "line": 81, + "line": 91, "column": 9 } } @@ -17484,15 +17484,15 @@ "binop": null }, "value": "AjaxDatasource", - "start": 2528, - "end": 2542, + "start": 2763, + "end": 2777, "loc": { "start": { - "line": 81, + "line": 91, "column": 9 }, "end": { - "line": 81, + "line": 91, "column": 23 } } @@ -17510,15 +17510,15 @@ "binop": null, "updateContext": null }, - "start": 2542, - "end": 2543, + "start": 2777, + "end": 2778, "loc": { "start": { - "line": 81, + "line": 91, "column": 23 }, "end": { - "line": 81, + "line": 91, "column": 24 } } @@ -17536,15 +17536,15 @@ "binop": null }, "value": "prototype", - "start": 2543, - "end": 2552, + "start": 2778, + "end": 2787, "loc": { "start": { - "line": 81, + "line": 91, "column": 24 }, "end": { - "line": 81, + "line": 91, "column": 33 } } @@ -17562,15 +17562,15 @@ "binop": null, "updateContext": null }, - "start": 2552, - "end": 2553, + "start": 2787, + "end": 2788, "loc": { "start": { - "line": 81, + "line": 91, "column": 33 }, "end": { - "line": 81, + "line": 91, "column": 34 } } @@ -17588,15 +17588,15 @@ "binop": null }, "value": "defaults", - "start": 2553, - "end": 2561, + "start": 2788, + "end": 2796, "loc": { "start": { - "line": 81, + "line": 91, "column": 34 }, "end": { - "line": 81, + "line": 91, "column": 42 } } @@ -17614,15 +17614,15 @@ "binop": null, "updateContext": null }, - "start": 2561, - "end": 2562, + "start": 2796, + "end": 2797, "loc": { "start": { - "line": 81, + "line": 91, "column": 42 }, "end": { - "line": 81, + "line": 91, "column": 43 } } @@ -17640,15 +17640,15 @@ "binop": null, "updateContext": null }, - "start": 2569, - "end": 2572, + "start": 2804, + "end": 2807, "loc": { "start": { - "line": 82, + "line": 92, "column": 6 }, "end": { - "line": 82, + "line": 92, "column": 9 } } @@ -17666,15 +17666,15 @@ "binop": null }, "value": "options", - "start": 2572, - "end": 2579, + "start": 2807, + "end": 2814, "loc": { "start": { - "line": 82, + "line": 92, "column": 9 }, "end": { - "line": 82, + "line": 92, "column": 16 } } @@ -17692,15 +17692,15 @@ "binop": null, "updateContext": null }, - "start": 2579, - "end": 2580, + "start": 2814, + "end": 2815, "loc": { "start": { - "line": 82, + "line": 92, "column": 16 }, "end": { - "line": 82, + "line": 92, "column": 17 } } @@ -17718,15 +17718,15 @@ "binop": null }, "value": "ajax", - "start": 2587, - "end": 2591, + "start": 2822, + "end": 2826, "loc": { "start": { - "line": 83, + "line": 93, "column": 6 }, "end": { - "line": 83, + "line": 93, "column": 10 } } @@ -17744,15 +17744,15 @@ "binop": null, "updateContext": null }, - "start": 2591, - "end": 2592, + "start": 2826, + "end": 2827, "loc": { "start": { - "line": 83, + "line": 93, "column": 10 }, "end": { - "line": 83, + "line": 93, "column": 11 } } @@ -17769,15 +17769,15 @@ "postfix": false, "binop": null }, - "start": 2597, - "end": 2598, + "start": 2832, + "end": 2833, "loc": { "start": { - "line": 84, + "line": 94, "column": 4 }, "end": { - "line": 84, + "line": 94, "column": 5 } } @@ -17795,15 +17795,15 @@ "binop": null, "updateContext": null }, - "start": 2598, - "end": 2599, + "start": 2833, + "end": 2834, "loc": { "start": { - "line": 84, + "line": 94, "column": 5 }, "end": { - "line": 84, + "line": 94, "column": 6 } } @@ -17823,15 +17823,15 @@ "updateContext": null }, "value": "super", - "start": 2605, - "end": 2610, + "start": 2840, + "end": 2845, "loc": { "start": { - "line": 86, + "line": 96, "column": 4 }, "end": { - "line": 86, + "line": 96, "column": 9 } } @@ -17848,15 +17848,15 @@ "postfix": false, "binop": null }, - "start": 2610, - "end": 2611, + "start": 2845, + "end": 2846, "loc": { "start": { - "line": 86, + "line": 96, "column": 9 }, "end": { - "line": 86, + "line": 96, "column": 10 } } @@ -17874,15 +17874,15 @@ "binop": null }, "value": "mergedOptions", - "start": 2611, - "end": 2624, + "start": 2846, + "end": 2859, "loc": { "start": { - "line": 86, + "line": 96, "column": 10 }, "end": { - "line": 86, + "line": 96, "column": 23 } } @@ -17899,15 +17899,15 @@ "postfix": false, "binop": null }, - "start": 2624, - "end": 2625, + "start": 2859, + "end": 2860, "loc": { "start": { - "line": 86, + "line": 96, "column": 23 }, "end": { - "line": 86, + "line": 96, "column": 24 } } @@ -17925,15 +17925,15 @@ "binop": null, "updateContext": null }, - "start": 2625, - "end": 2626, + "start": 2860, + "end": 2861, "loc": { "start": { - "line": 86, + "line": 96, "column": 24 }, "end": { - "line": 86, + "line": 96, "column": 25 } } @@ -17941,15 +17941,15 @@ { "type": "CommentBlock", "value": "*\n * The total amount of data items to page through.\n *\n * @access private\n * @type {Number}\n ", - "start": 2632, - "end": 2750, + "start": 2867, + "end": 2985, "loc": { "start": { - "line": 88, + "line": 98, "column": 4 }, "end": { - "line": 93, + "line": 103, "column": 7 } } @@ -17969,15 +17969,15 @@ "updateContext": null }, "value": "this", - "start": 2755, - "end": 2759, + "start": 2990, + "end": 2994, "loc": { "start": { - "line": 94, + "line": 104, "column": 4 }, "end": { - "line": 94, + "line": 104, "column": 8 } } @@ -17995,15 +17995,15 @@ "binop": null, "updateContext": null }, - "start": 2759, - "end": 2760, + "start": 2994, + "end": 2995, "loc": { "start": { - "line": 94, + "line": 104, "column": 8 }, "end": { - "line": 94, + "line": 104, "column": 9 } } @@ -18021,15 +18021,15 @@ "binop": null }, "value": "_total", - "start": 2760, - "end": 2766, + "start": 2995, + "end": 3001, "loc": { "start": { - "line": 94, + "line": 104, "column": 9 }, "end": { - "line": 94, + "line": 104, "column": 15 } } @@ -18048,15 +18048,15 @@ "updateContext": null }, "value": "=", - "start": 2767, - "end": 2768, + "start": 3002, + "end": 3003, "loc": { "start": { - "line": 94, + "line": 104, "column": 16 }, "end": { - "line": 94, + "line": 104, "column": 17 } } @@ -18076,15 +18076,15 @@ "updateContext": null }, "value": "null", - "start": 2769, - "end": 2773, + "start": 3004, + "end": 3008, "loc": { "start": { - "line": 94, + "line": 104, "column": 18 }, "end": { - "line": 94, + "line": 104, "column": 22 } } @@ -18102,15 +18102,15 @@ "binop": null, "updateContext": null }, - "start": 2773, - "end": 2774, + "start": 3008, + "end": 3009, "loc": { "start": { - "line": 94, + "line": 104, "column": 22 }, "end": { - "line": 94, + "line": 104, "column": 23 } } @@ -18118,15 +18118,15 @@ { "type": "CommentBlock", "value": "*\n * The array of data items.\n *\n * @access private\n * @type {?Array}\n ", - "start": 2780, - "end": 2875, + "start": 3015, + "end": 3110, "loc": { "start": { - "line": 96, + "line": 106, "column": 4 }, "end": { - "line": 101, + "line": 111, "column": 7 } } @@ -18146,15 +18146,15 @@ "updateContext": null }, "value": "this", - "start": 2880, - "end": 2884, + "start": 3115, + "end": 3119, "loc": { "start": { - "line": 102, + "line": 112, "column": 4 }, "end": { - "line": 102, + "line": 112, "column": 8 } } @@ -18172,15 +18172,15 @@ "binop": null, "updateContext": null }, - "start": 2884, - "end": 2885, + "start": 3119, + "end": 3120, "loc": { "start": { - "line": 102, + "line": 112, "column": 8 }, "end": { - "line": 102, + "line": 112, "column": 9 } } @@ -18198,15 +18198,15 @@ "binop": null }, "value": "_data", - "start": 2885, - "end": 2890, + "start": 3120, + "end": 3125, "loc": { "start": { - "line": 102, + "line": 112, "column": 9 }, "end": { - "line": 102, + "line": 112, "column": 14 } } @@ -18225,15 +18225,15 @@ "updateContext": null }, "value": "=", - "start": 2891, - "end": 2892, + "start": 3126, + "end": 3127, "loc": { "start": { - "line": 102, + "line": 112, "column": 15 }, "end": { - "line": 102, + "line": 112, "column": 16 } } @@ -18253,15 +18253,15 @@ "updateContext": null }, "value": "null", - "start": 2893, - "end": 2897, + "start": 3128, + "end": 3132, "loc": { "start": { - "line": 102, + "line": 112, "column": 17 }, "end": { - "line": 102, + "line": 112, "column": 21 } } @@ -18279,15 +18279,15 @@ "binop": null, "updateContext": null }, - "start": 2897, - "end": 2898, + "start": 3132, + "end": 3133, "loc": { "start": { - "line": 102, + "line": 112, "column": 21 }, "end": { - "line": 102, + "line": 112, "column": 22 } } @@ -18307,15 +18307,15 @@ "updateContext": null }, "value": "if", - "start": 2904, - "end": 2906, + "start": 3139, + "end": 3141, "loc": { "start": { - "line": 104, + "line": 114, "column": 4 }, "end": { - "line": 104, + "line": 114, "column": 6 } } @@ -18332,15 +18332,15 @@ "postfix": false, "binop": null }, - "start": 2907, - "end": 2908, + "start": 3142, + "end": 3143, "loc": { "start": { - "line": 104, + "line": 114, "column": 7 }, "end": { - "line": 104, + "line": 114, "column": 8 } } @@ -18358,15 +18358,15 @@ "binop": null }, "value": "mergedOptions", - "start": 2908, - "end": 2921, + "start": 3143, + "end": 3156, "loc": { "start": { - "line": 104, + "line": 114, "column": 8 }, "end": { - "line": 104, + "line": 114, "column": 21 } } @@ -18384,15 +18384,15 @@ "binop": null, "updateContext": null }, - "start": 2921, - "end": 2922, + "start": 3156, + "end": 3157, "loc": { "start": { - "line": 104, + "line": 114, "column": 21 }, "end": { - "line": 104, + "line": 114, "column": 22 } } @@ -18410,15 +18410,15 @@ "binop": null }, "value": "queryBuilder", - "start": 2922, - "end": 2934, + "start": 3157, + "end": 3169, "loc": { "start": { - "line": 104, + "line": 114, "column": 22 }, "end": { - "line": 104, + "line": 114, "column": 34 } } @@ -18438,15 +18438,15 @@ "updateContext": null }, "value": "instanceof", - "start": 2935, - "end": 2945, + "start": 3170, + "end": 3180, "loc": { "start": { - "line": 104, + "line": 114, "column": 35 }, "end": { - "line": 104, + "line": 114, "column": 45 } } @@ -18464,15 +18464,15 @@ "binop": null }, "value": "QueryBuilder", - "start": 2946, - "end": 2958, + "start": 3181, + "end": 3193, "loc": { "start": { - "line": 104, + "line": 114, "column": 46 }, "end": { - "line": 104, + "line": 114, "column": 58 } } @@ -18489,15 +18489,15 @@ "postfix": false, "binop": null }, - "start": 2958, - "end": 2959, + "start": 3193, + "end": 3194, "loc": { "start": { - "line": 104, + "line": 114, "column": 58 }, "end": { - "line": 104, + "line": 114, "column": 59 } } @@ -18514,15 +18514,15 @@ "postfix": false, "binop": null }, - "start": 2960, - "end": 2961, + "start": 3195, + "end": 3196, "loc": { "start": { - "line": 104, + "line": 114, "column": 60 }, "end": { - "line": 104, + "line": 114, "column": 61 } } @@ -18530,15 +18530,15 @@ { "type": "CommentBlock", "value": "*\n * The query builder which constructs\n * either the query object to pass to\n * post/delete/put requests, or the\n * query string to pass to get\n * requests.\n *\n * @access public\n * @type {QueryBuilder}\n ", - "start": 2968, - "end": 3230, + "start": 3203, + "end": 3465, "loc": { "start": { - "line": 105, + "line": 115, "column": 6 }, "end": { - "line": 114, + "line": 124, "column": 9 } } @@ -18558,15 +18558,15 @@ "updateContext": null }, "value": "this", - "start": 3237, - "end": 3241, + "start": 3472, + "end": 3476, "loc": { "start": { - "line": 115, + "line": 125, "column": 6 }, "end": { - "line": 115, + "line": 125, "column": 10 } } @@ -18584,15 +18584,15 @@ "binop": null, "updateContext": null }, - "start": 3241, - "end": 3242, + "start": 3476, + "end": 3477, "loc": { "start": { - "line": 115, + "line": 125, "column": 10 }, "end": { - "line": 115, + "line": 125, "column": 11 } } @@ -18610,15 +18610,15 @@ "binop": null }, "value": "queryBuilder", - "start": 3242, - "end": 3254, + "start": 3477, + "end": 3489, "loc": { "start": { - "line": 115, + "line": 125, "column": 11 }, "end": { - "line": 115, + "line": 125, "column": 23 } } @@ -18637,15 +18637,15 @@ "updateContext": null }, "value": "=", - "start": 3255, - "end": 3256, + "start": 3490, + "end": 3491, "loc": { "start": { - "line": 115, + "line": 125, "column": 24 }, "end": { - "line": 115, + "line": 125, "column": 25 } } @@ -18663,15 +18663,15 @@ "binop": null }, "value": "mergedOptions", - "start": 3257, - "end": 3270, + "start": 3492, + "end": 3505, "loc": { "start": { - "line": 115, + "line": 125, "column": 26 }, "end": { - "line": 115, + "line": 125, "column": 39 } } @@ -18689,15 +18689,15 @@ "binop": null, "updateContext": null }, - "start": 3270, - "end": 3271, + "start": 3505, + "end": 3506, "loc": { "start": { - "line": 115, + "line": 125, "column": 39 }, "end": { - "line": 115, + "line": 125, "column": 40 } } @@ -18715,15 +18715,15 @@ "binop": null }, "value": "queryBuilder", - "start": 3271, - "end": 3283, + "start": 3506, + "end": 3518, "loc": { "start": { - "line": 115, + "line": 125, "column": 40 }, "end": { - "line": 115, + "line": 125, "column": 52 } } @@ -18741,15 +18741,15 @@ "binop": null, "updateContext": null }, - "start": 3283, - "end": 3284, + "start": 3518, + "end": 3519, "loc": { "start": { - "line": 115, + "line": 125, "column": 52 }, "end": { - "line": 115, + "line": 125, "column": 53 } } @@ -18766,15 +18766,15 @@ "postfix": false, "binop": null }, - "start": 3289, - "end": 3290, + "start": 3524, + "end": 3525, "loc": { "start": { - "line": 116, + "line": 126, "column": 4 }, "end": { - "line": 116, + "line": 126, "column": 5 } } @@ -18794,15 +18794,15 @@ "updateContext": null }, "value": "else", - "start": 3291, - "end": 3295, + "start": 3526, + "end": 3530, "loc": { "start": { - "line": 116, + "line": 126, "column": 6 }, "end": { - "line": 116, + "line": 126, "column": 10 } } @@ -18822,15 +18822,15 @@ "updateContext": null }, "value": "if", - "start": 3296, - "end": 3298, + "start": 3531, + "end": 3533, "loc": { "start": { - "line": 116, + "line": 126, "column": 11 }, "end": { - "line": 116, + "line": 126, "column": 13 } } @@ -18847,15 +18847,15 @@ "postfix": false, "binop": null }, - "start": 3299, - "end": 3300, + "start": 3534, + "end": 3535, "loc": { "start": { - "line": 116, + "line": 126, "column": 14 }, "end": { - "line": 116, + "line": 126, "column": 15 } } @@ -18873,15 +18873,15 @@ "binop": null }, "value": "mergedOptions", - "start": 3300, - "end": 3313, + "start": 3535, + "end": 3548, "loc": { "start": { - "line": 116, + "line": 126, "column": 15 }, "end": { - "line": 116, + "line": 126, "column": 28 } } @@ -18899,15 +18899,15 @@ "binop": null, "updateContext": null }, - "start": 3313, - "end": 3314, + "start": 3548, + "end": 3549, "loc": { "start": { - "line": 116, + "line": 126, "column": 28 }, "end": { - "line": 116, + "line": 126, "column": 29 } } @@ -18925,15 +18925,15 @@ "binop": null }, "value": "queryBuilder", - "start": 3314, - "end": 3326, + "start": 3549, + "end": 3561, "loc": { "start": { - "line": 116, + "line": 126, "column": 29 }, "end": { - "line": 116, + "line": 126, "column": 41 } } @@ -18950,15 +18950,15 @@ "postfix": false, "binop": null }, - "start": 3326, - "end": 3327, + "start": 3561, + "end": 3562, "loc": { "start": { - "line": 116, + "line": 126, "column": 41 }, "end": { - "line": 116, + "line": 126, "column": 42 } } @@ -18975,15 +18975,15 @@ "postfix": false, "binop": null }, - "start": 3328, - "end": 3329, + "start": 3563, + "end": 3564, "loc": { "start": { - "line": 116, + "line": 126, "column": 43 }, "end": { - "line": 116, + "line": 126, "column": 44 } } @@ -19003,15 +19003,15 @@ "updateContext": null }, "value": "this", - "start": 3336, - "end": 3340, + "start": 3571, + "end": 3575, "loc": { "start": { - "line": 117, + "line": 127, "column": 6 }, "end": { - "line": 117, + "line": 127, "column": 10 } } @@ -19029,15 +19029,15 @@ "binop": null, "updateContext": null }, - "start": 3340, - "end": 3341, + "start": 3575, + "end": 3576, "loc": { "start": { - "line": 117, + "line": 127, "column": 10 }, "end": { - "line": 117, + "line": 127, "column": 11 } } @@ -19055,15 +19055,15 @@ "binop": null }, "value": "queryBuilder", - "start": 3341, - "end": 3353, + "start": 3576, + "end": 3588, "loc": { "start": { - "line": 117, + "line": 127, "column": 11 }, "end": { - "line": 117, + "line": 127, "column": 23 } } @@ -19082,15 +19082,15 @@ "updateContext": null }, "value": "=", - "start": 3354, - "end": 3355, + "start": 3589, + "end": 3590, "loc": { "start": { - "line": 117, + "line": 127, "column": 24 }, "end": { - "line": 117, + "line": 127, "column": 25 } } @@ -19110,15 +19110,15 @@ "updateContext": null }, "value": "new", - "start": 3356, - "end": 3359, + "start": 3591, + "end": 3594, "loc": { "start": { - "line": 117, + "line": 127, "column": 26 }, "end": { - "line": 117, + "line": 127, "column": 29 } } @@ -19136,15 +19136,15 @@ "binop": null }, "value": "QueryBuilder", - "start": 3360, - "end": 3372, + "start": 3595, + "end": 3607, "loc": { "start": { - "line": 117, + "line": 127, "column": 30 }, "end": { - "line": 117, + "line": 127, "column": 42 } } @@ -19161,15 +19161,15 @@ "postfix": false, "binop": null }, - "start": 3372, - "end": 3373, + "start": 3607, + "end": 3608, "loc": { "start": { - "line": 117, + "line": 127, "column": 42 }, "end": { - "line": 117, + "line": 127, "column": 43 } } @@ -19187,15 +19187,15 @@ "binop": null }, "value": "mergedOptions", - "start": 3373, - "end": 3386, + "start": 3608, + "end": 3621, "loc": { "start": { - "line": 117, + "line": 127, "column": 43 }, "end": { - "line": 117, + "line": 127, "column": 56 } } @@ -19213,15 +19213,15 @@ "binop": null, "updateContext": null }, - "start": 3386, - "end": 3387, + "start": 3621, + "end": 3622, "loc": { "start": { - "line": 117, + "line": 127, "column": 56 }, "end": { - "line": 117, + "line": 127, "column": 57 } } @@ -19239,15 +19239,15 @@ "binop": null }, "value": "queryBuilder", - "start": 3387, - "end": 3399, + "start": 3622, + "end": 3634, "loc": { "start": { - "line": 117, + "line": 127, "column": 57 }, "end": { - "line": 117, + "line": 127, "column": 69 } } @@ -19264,15 +19264,15 @@ "postfix": false, "binop": null }, - "start": 3399, - "end": 3400, + "start": 3634, + "end": 3635, "loc": { "start": { - "line": 117, + "line": 127, "column": 69 }, "end": { - "line": 117, + "line": 127, "column": 70 } } @@ -19290,15 +19290,15 @@ "binop": null, "updateContext": null }, - "start": 3400, - "end": 3401, + "start": 3635, + "end": 3636, "loc": { "start": { - "line": 117, + "line": 127, "column": 70 }, "end": { - "line": 117, + "line": 127, "column": 71 } } @@ -19315,15 +19315,15 @@ "postfix": false, "binop": null }, - "start": 3406, - "end": 3407, + "start": 3641, + "end": 3642, "loc": { "start": { - "line": 118, + "line": 128, "column": 4 }, "end": { - "line": 118, + "line": 128, "column": 5 } } @@ -19331,15 +19331,15 @@ { "type": "CommentBlock", "value": "*\n * Property defining the behavior\n * of the AJAX call.\n * If a string, remote endpoint\n * to contact. If a function,\n * it'll call the function when\n * data is requested. If an object,\n * will use the object to configure\n * the AJAX call.\n *\n * @access public\n * @type {String|Function|Object}\n ", - "start": 3413, - "end": 3762, + "start": 3648, + "end": 3997, "loc": { "start": { - "line": 120, + "line": 130, "column": 4 }, "end": { - "line": 132, + "line": 142, "column": 7 } } @@ -19359,15 +19359,15 @@ "updateContext": null }, "value": "this", - "start": 3767, - "end": 3771, + "start": 4002, + "end": 4006, "loc": { "start": { - "line": 133, + "line": 143, "column": 4 }, "end": { - "line": 133, + "line": 143, "column": 8 } } @@ -19385,15 +19385,15 @@ "binop": null, "updateContext": null }, - "start": 3771, - "end": 3772, + "start": 4006, + "end": 4007, "loc": { "start": { - "line": 133, + "line": 143, "column": 8 }, "end": { - "line": 133, + "line": 143, "column": 9 } } @@ -19411,15 +19411,15 @@ "binop": null }, "value": "ajax", - "start": 3772, - "end": 3776, + "start": 4007, + "end": 4011, "loc": { "start": { - "line": 133, + "line": 143, "column": 9 }, "end": { - "line": 133, + "line": 143, "column": 13 } } @@ -19438,15 +19438,15 @@ "updateContext": null }, "value": "=", - "start": 3777, - "end": 3778, + "start": 4012, + "end": 4013, "loc": { "start": { - "line": 133, + "line": 143, "column": 14 }, "end": { - "line": 133, + "line": 143, "column": 15 } } @@ -19464,15 +19464,15 @@ "binop": null }, "value": "mergedOptions", - "start": 3779, - "end": 3792, + "start": 4014, + "end": 4027, "loc": { "start": { - "line": 133, + "line": 143, "column": 16 }, "end": { - "line": 133, + "line": 143, "column": 29 } } @@ -19490,15 +19490,15 @@ "binop": null, "updateContext": null }, - "start": 3792, - "end": 3793, + "start": 4027, + "end": 4028, "loc": { "start": { - "line": 133, + "line": 143, "column": 29 }, "end": { - "line": 133, + "line": 143, "column": 30 } } @@ -19516,15 +19516,15 @@ "binop": null }, "value": "ajax", - "start": 3793, - "end": 3797, + "start": 4028, + "end": 4032, "loc": { "start": { - "line": 133, + "line": 143, "column": 30 }, "end": { - "line": 133, + "line": 143, "column": 34 } } @@ -19542,15 +19542,15 @@ "binop": null, "updateContext": null }, - "start": 3797, - "end": 3798, + "start": 4032, + "end": 4033, "loc": { "start": { - "line": 133, + "line": 143, "column": 34 }, "end": { - "line": 133, + "line": 143, "column": 35 } } @@ -19567,15 +19567,15 @@ "postfix": false, "binop": null }, - "start": 3801, - "end": 3802, + "start": 4036, + "end": 4037, "loc": { "start": { - "line": 134, + "line": 144, "column": 2 }, "end": { - "line": 134, + "line": 144, "column": 3 } } @@ -19583,15 +19583,15 @@ { "type": "CommentBlock", "value": "*\n * Performs an AJAX call.\n *\n * @access private\n * @param {Object} axiosOptions Ajax options object for axios\n * @param {String} axiosOptions.url Url to remote endpoint to ajax for.\n * @param {String} axiosOptions.method The AJAX method, i.e. 'get', 'post', etc.\n * @return {Promise} Returns the axios promise object, containing\n * the response from remote endpoint.\n ", - "start": 3806, - "end": 4216, + "start": 4041, + "end": 4451, "loc": { "start": { - "line": 136, + "line": 146, "column": 2 }, "end": { - "line": 145, + "line": 155, "column": 5 } } @@ -19609,15 +19609,15 @@ "binop": null }, "value": "_ajaxCall", - "start": 4219, - "end": 4228, + "start": 4454, + "end": 4463, "loc": { "start": { - "line": 146, + "line": 156, "column": 2 }, "end": { - "line": 146, + "line": 156, "column": 11 } } @@ -19634,15 +19634,15 @@ "postfix": false, "binop": null }, - "start": 4228, - "end": 4229, + "start": 4463, + "end": 4464, "loc": { "start": { - "line": 146, + "line": 156, "column": 11 }, "end": { - "line": 146, + "line": 156, "column": 12 } } @@ -19659,15 +19659,15 @@ "postfix": false, "binop": null }, - "start": 4229, - "end": 4230, + "start": 4464, + "end": 4465, "loc": { "start": { - "line": 146, + "line": 156, "column": 12 }, "end": { - "line": 146, + "line": 156, "column": 13 } } @@ -19685,15 +19685,15 @@ "binop": null }, "value": "url", - "start": 4231, - "end": 4234, + "start": 4466, + "end": 4469, "loc": { "start": { - "line": 146, + "line": 156, "column": 14 }, "end": { - "line": 146, + "line": 156, "column": 17 } } @@ -19711,15 +19711,15 @@ "binop": null, "updateContext": null }, - "start": 4234, - "end": 4235, + "start": 4469, + "end": 4470, "loc": { "start": { - "line": 146, + "line": 156, "column": 17 }, "end": { - "line": 146, + "line": 156, "column": 18 } } @@ -19737,15 +19737,15 @@ "binop": null }, "value": "method", - "start": 4236, - "end": 4242, + "start": 4471, + "end": 4477, "loc": { "start": { - "line": 146, + "line": 156, "column": 19 }, "end": { - "line": 146, + "line": 156, "column": 25 } } @@ -19762,15 +19762,15 @@ "postfix": false, "binop": null }, - "start": 4243, - "end": 4244, + "start": 4478, + "end": 4479, "loc": { "start": { - "line": 146, + "line": 156, "column": 26 }, "end": { - "line": 146, + "line": 156, "column": 27 } } @@ -19787,15 +19787,15 @@ "postfix": false, "binop": null }, - "start": 4244, - "end": 4245, + "start": 4479, + "end": 4480, "loc": { "start": { - "line": 146, + "line": 156, "column": 27 }, "end": { - "line": 146, + "line": 156, "column": 28 } } @@ -19812,15 +19812,15 @@ "postfix": false, "binop": null }, - "start": 4246, - "end": 4247, + "start": 4481, + "end": 4482, "loc": { "start": { - "line": 146, + "line": 156, "column": 29 }, "end": { - "line": 146, + "line": 156, "column": 30 } } @@ -19840,15 +19840,15 @@ "updateContext": null }, "value": "const", - "start": 4252, - "end": 4257, + "start": 4487, + "end": 4492, "loc": { "start": { - "line": 147, + "line": 157, "column": 4 }, "end": { - "line": 147, + "line": 157, "column": 9 } } @@ -19866,15 +19866,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4258, - "end": 4276, + "start": 4493, + "end": 4511, "loc": { "start": { - "line": 147, + "line": 157, "column": 10 }, "end": { - "line": 147, + "line": 157, "column": 28 } } @@ -19893,15 +19893,15 @@ "updateContext": null }, "value": "=", - "start": 4277, - "end": 4278, + "start": 4512, + "end": 4513, "loc": { "start": { - "line": 147, + "line": 157, "column": 29 }, "end": { - "line": 147, + "line": 157, "column": 30 } } @@ -19918,15 +19918,15 @@ "postfix": false, "binop": null }, - "start": 4279, - "end": 4280, + "start": 4514, + "end": 4515, "loc": { "start": { - "line": 147, + "line": 157, "column": 31 }, "end": { - "line": 147, + "line": 157, "column": 32 } } @@ -19944,15 +19944,15 @@ "binop": null }, "value": "url", - "start": 4281, - "end": 4284, + "start": 4516, + "end": 4519, "loc": { "start": { - "line": 147, + "line": 157, "column": 33 }, "end": { - "line": 147, + "line": 157, "column": 36 } } @@ -19970,15 +19970,15 @@ "binop": null, "updateContext": null }, - "start": 4284, - "end": 4285, + "start": 4519, + "end": 4520, "loc": { "start": { - "line": 147, + "line": 157, "column": 36 }, "end": { - "line": 147, + "line": 157, "column": 37 } } @@ -19996,15 +19996,15 @@ "binop": null }, "value": "method", - "start": 4286, - "end": 4292, + "start": 4521, + "end": 4527, "loc": { "start": { - "line": 147, + "line": 157, "column": 38 }, "end": { - "line": 147, + "line": 157, "column": 44 } } @@ -20021,15 +20021,15 @@ "postfix": false, "binop": null }, - "start": 4293, - "end": 4294, + "start": 4528, + "end": 4529, "loc": { "start": { - "line": 147, + "line": 157, "column": 45 }, "end": { - "line": 147, + "line": 157, "column": 46 } } @@ -20047,15 +20047,15 @@ "binop": null, "updateContext": null }, - "start": 4294, - "end": 4295, + "start": 4529, + "end": 4530, "loc": { "start": { - "line": 147, + "line": 157, "column": 46 }, "end": { - "line": 147, + "line": 157, "column": 47 } } @@ -20073,15 +20073,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4300, - "end": 4318, + "start": 4535, + "end": 4553, "loc": { "start": { - "line": 148, + "line": 158, "column": 4 }, "end": { - "line": 148, + "line": 158, "column": 22 } } @@ -20099,15 +20099,15 @@ "binop": null, "updateContext": null }, - "start": 4318, - "end": 4319, + "start": 4553, + "end": 4554, "loc": { "start": { - "line": 148, + "line": 158, "column": 22 }, "end": { - "line": 148, + "line": 158, "column": 23 } } @@ -20125,15 +20125,15 @@ "binop": null }, "value": "method", - "start": 4319, - "end": 4325, + "start": 4554, + "end": 4560, "loc": { "start": { - "line": 148, + "line": 158, "column": 23 }, "end": { - "line": 148, + "line": 158, "column": 29 } } @@ -20152,15 +20152,15 @@ "updateContext": null }, "value": "=", - "start": 4326, - "end": 4327, + "start": 4561, + "end": 4562, "loc": { "start": { - "line": 148, + "line": 158, "column": 30 }, "end": { - "line": 148, + "line": 158, "column": 31 } } @@ -20178,15 +20178,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4328, - "end": 4346, + "start": 4563, + "end": 4581, "loc": { "start": { - "line": 148, + "line": 158, "column": 32 }, "end": { - "line": 148, + "line": 158, "column": 50 } } @@ -20204,15 +20204,15 @@ "binop": null, "updateContext": null }, - "start": 4346, - "end": 4347, + "start": 4581, + "end": 4582, "loc": { "start": { - "line": 148, + "line": 158, "column": 50 }, "end": { - "line": 148, + "line": 158, "column": 51 } } @@ -20230,15 +20230,15 @@ "binop": null }, "value": "method", - "start": 4347, - "end": 4353, + "start": 4582, + "end": 4588, "loc": { "start": { - "line": 148, + "line": 158, "column": 51 }, "end": { - "line": 148, + "line": 158, "column": 57 } } @@ -20256,15 +20256,15 @@ "binop": null, "updateContext": null }, - "start": 4360, - "end": 4361, + "start": 4595, + "end": 4596, "loc": { "start": { - "line": 149, + "line": 159, "column": 6 }, "end": { - "line": 149, + "line": 159, "column": 7 } } @@ -20282,15 +20282,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4362, - "end": 4380, + "start": 4597, + "end": 4615, "loc": { "start": { - "line": 149, + "line": 159, "column": 8 }, "end": { - "line": 149, + "line": 159, "column": 26 } } @@ -20308,15 +20308,15 @@ "binop": null, "updateContext": null }, - "start": 4380, - "end": 4381, + "start": 4615, + "end": 4616, "loc": { "start": { - "line": 149, + "line": 159, "column": 26 }, "end": { - "line": 149, + "line": 159, "column": 27 } } @@ -20334,15 +20334,15 @@ "binop": null }, "value": "method", - "start": 4381, - "end": 4387, + "start": 4616, + "end": 4622, "loc": { "start": { - "line": 149, + "line": 159, "column": 27 }, "end": { - "line": 149, + "line": 159, "column": 33 } } @@ -20360,15 +20360,15 @@ "binop": null, "updateContext": null }, - "start": 4387, - "end": 4388, + "start": 4622, + "end": 4623, "loc": { "start": { - "line": 149, + "line": 159, "column": 33 }, "end": { - "line": 149, + "line": 159, "column": 34 } } @@ -20386,15 +20386,15 @@ "binop": null }, "value": "toLowerCase", - "start": 4388, - "end": 4399, + "start": 4623, + "end": 4634, "loc": { "start": { - "line": 149, + "line": 159, "column": 34 }, "end": { - "line": 149, + "line": 159, "column": 45 } } @@ -20411,15 +20411,15 @@ "postfix": false, "binop": null }, - "start": 4399, - "end": 4400, + "start": 4634, + "end": 4635, "loc": { "start": { - "line": 149, + "line": 159, "column": 45 }, "end": { - "line": 149, + "line": 159, "column": 46 } } @@ -20436,15 +20436,15 @@ "postfix": false, "binop": null }, - "start": 4400, - "end": 4401, + "start": 4635, + "end": 4636, "loc": { "start": { - "line": 149, + "line": 159, "column": 46 }, "end": { - "line": 149, + "line": 159, "column": 47 } } @@ -20462,15 +20462,15 @@ "binop": null, "updateContext": null }, - "start": 4408, - "end": 4409, + "start": 4643, + "end": 4644, "loc": { "start": { - "line": 150, + "line": 160, "column": 6 }, "end": { - "line": 150, + "line": 160, "column": 7 } } @@ -20488,15 +20488,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4410, - "end": 4428, + "start": 4645, + "end": 4663, "loc": { "start": { - "line": 150, + "line": 160, "column": 8 }, "end": { - "line": 150, + "line": 160, "column": 26 } } @@ -20514,15 +20514,15 @@ "binop": null, "updateContext": null }, - "start": 4428, - "end": 4429, + "start": 4663, + "end": 4664, "loc": { "start": { - "line": 150, + "line": 160, "column": 26 }, "end": { - "line": 150, + "line": 160, "column": 27 } } @@ -20540,15 +20540,15 @@ "binop": null }, "value": "method", - "start": 4429, - "end": 4435, + "start": 4664, + "end": 4670, "loc": { "start": { - "line": 150, + "line": 160, "column": 27 }, "end": { - "line": 150, + "line": 160, "column": 33 } } @@ -20566,15 +20566,15 @@ "binop": null, "updateContext": null }, - "start": 4435, - "end": 4436, + "start": 4670, + "end": 4671, "loc": { "start": { - "line": 150, + "line": 160, "column": 33 }, "end": { - "line": 150, + "line": 160, "column": 34 } } @@ -20594,15 +20594,15 @@ "updateContext": null }, "value": "if", - "start": 4441, - "end": 4443, + "start": 4676, + "end": 4678, "loc": { "start": { - "line": 151, + "line": 161, "column": 4 }, "end": { - "line": 151, + "line": 161, "column": 6 } } @@ -20619,15 +20619,15 @@ "postfix": false, "binop": null }, - "start": 4444, - "end": 4445, + "start": 4679, + "end": 4680, "loc": { "start": { - "line": 151, + "line": 161, "column": 7 }, "end": { - "line": 151, + "line": 161, "column": 8 } } @@ -20645,15 +20645,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4445, - "end": 4463, + "start": 4680, + "end": 4698, "loc": { "start": { - "line": 151, + "line": 161, "column": 8 }, "end": { - "line": 151, + "line": 161, "column": 26 } } @@ -20671,15 +20671,15 @@ "binop": null, "updateContext": null }, - "start": 4463, - "end": 4464, + "start": 4698, + "end": 4699, "loc": { "start": { - "line": 151, + "line": 161, "column": 26 }, "end": { - "line": 151, + "line": 161, "column": 27 } } @@ -20697,15 +20697,15 @@ "binop": null }, "value": "method", - "start": 4464, - "end": 4470, + "start": 4699, + "end": 4705, "loc": { "start": { - "line": 151, + "line": 161, "column": 27 }, "end": { - "line": 151, + "line": 161, "column": 33 } } @@ -20724,15 +20724,15 @@ "updateContext": null }, "value": "===", - "start": 4471, - "end": 4474, + "start": 4706, + "end": 4709, "loc": { "start": { - "line": 151, + "line": 161, "column": 34 }, "end": { - "line": 151, + "line": 161, "column": 37 } } @@ -20751,15 +20751,15 @@ "updateContext": null }, "value": "get", - "start": 4475, - "end": 4480, + "start": 4710, + "end": 4715, "loc": { "start": { - "line": 151, + "line": 161, "column": 38 }, "end": { - "line": 151, + "line": 161, "column": 43 } } @@ -20776,15 +20776,15 @@ "postfix": false, "binop": null }, - "start": 4480, - "end": 4481, + "start": 4715, + "end": 4716, "loc": { "start": { - "line": 151, + "line": 161, "column": 43 }, "end": { - "line": 151, + "line": 161, "column": 44 } } @@ -20801,15 +20801,15 @@ "postfix": false, "binop": null }, - "start": 4482, - "end": 4483, + "start": 4717, + "end": 4718, "loc": { "start": { - "line": 151, + "line": 161, "column": 45 }, "end": { - "line": 151, + "line": 161, "column": 46 } } @@ -20827,15 +20827,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4490, - "end": 4508, + "start": 4725, + "end": 4743, "loc": { "start": { - "line": 152, + "line": 162, "column": 6 }, "end": { - "line": 152, + "line": 162, "column": 24 } } @@ -20853,15 +20853,15 @@ "binop": null, "updateContext": null }, - "start": 4508, - "end": 4509, + "start": 4743, + "end": 4744, "loc": { "start": { - "line": 152, + "line": 162, "column": 24 }, "end": { - "line": 152, + "line": 162, "column": 25 } } @@ -20879,15 +20879,15 @@ "binop": null }, "value": "url", - "start": 4509, - "end": 4512, + "start": 4744, + "end": 4747, "loc": { "start": { - "line": 152, + "line": 162, "column": 25 }, "end": { - "line": 152, + "line": 162, "column": 28 } } @@ -20906,15 +20906,15 @@ "updateContext": null }, "value": "=", - "start": 4513, - "end": 4514, + "start": 4748, + "end": 4749, "loc": { "start": { - "line": 152, + "line": 162, "column": 29 }, "end": { - "line": 152, + "line": 162, "column": 30 } } @@ -20931,15 +20931,15 @@ "postfix": false, "binop": null }, - "start": 4515, - "end": 4516, + "start": 4750, + "end": 4751, "loc": { "start": { - "line": 152, + "line": 162, "column": 31 }, "end": { - "line": 152, + "line": 162, "column": 32 } } @@ -20958,15 +20958,15 @@ "updateContext": null }, "value": "", - "start": 4516, - "end": 4516, + "start": 4751, + "end": 4751, "loc": { "start": { - "line": 152, + "line": 162, "column": 32 }, "end": { - "line": 152, + "line": 162, "column": 32 } } @@ -20983,15 +20983,15 @@ "postfix": false, "binop": null }, - "start": 4516, - "end": 4518, + "start": 4751, + "end": 4753, "loc": { "start": { - "line": 152, + "line": 162, "column": 32 }, "end": { - "line": 152, + "line": 162, "column": 34 } } @@ -21009,15 +21009,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4518, - "end": 4536, + "start": 4753, + "end": 4771, "loc": { "start": { - "line": 152, + "line": 162, "column": 34 }, "end": { - "line": 152, + "line": 162, "column": 52 } } @@ -21035,15 +21035,15 @@ "binop": null, "updateContext": null }, - "start": 4536, - "end": 4537, + "start": 4771, + "end": 4772, "loc": { "start": { - "line": 152, + "line": 162, "column": 52 }, "end": { - "line": 152, + "line": 162, "column": 53 } } @@ -21061,15 +21061,15 @@ "binop": null }, "value": "url", - "start": 4537, - "end": 4540, + "start": 4772, + "end": 4775, "loc": { "start": { - "line": 152, + "line": 162, "column": 53 }, "end": { - "line": 152, + "line": 162, "column": 56 } } @@ -21086,15 +21086,15 @@ "postfix": false, "binop": null }, - "start": 4540, - "end": 4541, + "start": 4775, + "end": 4776, "loc": { "start": { - "line": 152, + "line": 162, "column": 56 }, "end": { - "line": 152, + "line": 162, "column": 57 } } @@ -21113,15 +21113,15 @@ "updateContext": null }, "value": "?", - "start": 4541, - "end": 4542, + "start": 4776, + "end": 4777, "loc": { "start": { - "line": 152, + "line": 162, "column": 57 }, "end": { - "line": 152, + "line": 162, "column": 58 } } @@ -21138,15 +21138,15 @@ "postfix": false, "binop": null }, - "start": 4542, - "end": 4544, + "start": 4777, + "end": 4779, "loc": { "start": { - "line": 152, + "line": 162, "column": 58 }, "end": { - "line": 152, + "line": 162, "column": 60 } } @@ -21166,15 +21166,15 @@ "updateContext": null }, "value": "this", - "start": 4544, - "end": 4548, + "start": 4779, + "end": 4783, "loc": { "start": { - "line": 152, + "line": 162, "column": 60 }, "end": { - "line": 152, + "line": 162, "column": 64 } } @@ -21192,15 +21192,15 @@ "binop": null, "updateContext": null }, - "start": 4548, - "end": 4549, + "start": 4783, + "end": 4784, "loc": { "start": { - "line": 152, + "line": 162, "column": 64 }, "end": { - "line": 152, + "line": 162, "column": 65 } } @@ -21218,15 +21218,15 @@ "binop": null }, "value": "queryBuilder", - "start": 4549, - "end": 4561, + "start": 4784, + "end": 4796, "loc": { "start": { - "line": 152, + "line": 162, "column": 65 }, "end": { - "line": 152, + "line": 162, "column": 77 } } @@ -21244,15 +21244,15 @@ "binop": null, "updateContext": null }, - "start": 4561, - "end": 4562, + "start": 4796, + "end": 4797, "loc": { "start": { - "line": 152, + "line": 162, "column": 77 }, "end": { - "line": 152, + "line": 162, "column": 78 } } @@ -21270,15 +21270,15 @@ "binop": null }, "value": "getQueryString", - "start": 4562, - "end": 4576, + "start": 4797, + "end": 4811, "loc": { "start": { - "line": 152, + "line": 162, "column": 78 }, "end": { - "line": 152, + "line": 162, "column": 92 } } @@ -21295,15 +21295,15 @@ "postfix": false, "binop": null }, - "start": 4576, - "end": 4577, + "start": 4811, + "end": 4812, "loc": { "start": { - "line": 152, + "line": 162, "column": 92 }, "end": { - "line": 152, + "line": 162, "column": 93 } } @@ -21323,15 +21323,15 @@ "updateContext": null }, "value": "this", - "start": 4577, - "end": 4581, + "start": 4812, + "end": 4816, "loc": { "start": { - "line": 152, + "line": 162, "column": 93 }, "end": { - "line": 152, + "line": 162, "column": 97 } } @@ -21348,15 +21348,15 @@ "postfix": false, "binop": null }, - "start": 4581, - "end": 4582, + "start": 4816, + "end": 4817, "loc": { "start": { - "line": 152, + "line": 162, "column": 97 }, "end": { - "line": 152, + "line": 162, "column": 98 } } @@ -21373,15 +21373,15 @@ "postfix": false, "binop": null }, - "start": 4582, - "end": 4583, + "start": 4817, + "end": 4818, "loc": { "start": { - "line": 152, + "line": 162, "column": 98 }, "end": { - "line": 152, + "line": 162, "column": 99 } } @@ -21400,15 +21400,15 @@ "updateContext": null }, "value": "", - "start": 4583, - "end": 4583, + "start": 4818, + "end": 4818, "loc": { "start": { - "line": 152, + "line": 162, "column": 99 }, "end": { - "line": 152, + "line": 162, "column": 99 } } @@ -21425,15 +21425,15 @@ "postfix": false, "binop": null }, - "start": 4583, - "end": 4584, + "start": 4818, + "end": 4819, "loc": { "start": { - "line": 152, + "line": 162, "column": 99 }, "end": { - "line": 152, + "line": 162, "column": 100 } } @@ -21451,15 +21451,15 @@ "binop": null, "updateContext": null }, - "start": 4584, - "end": 4585, + "start": 4819, + "end": 4820, "loc": { "start": { - "line": 152, + "line": 162, "column": 100 }, "end": { - "line": 152, + "line": 162, "column": 101 } } @@ -21476,15 +21476,15 @@ "postfix": false, "binop": null }, - "start": 4590, - "end": 4591, + "start": 4825, + "end": 4826, "loc": { "start": { - "line": 153, + "line": 163, "column": 4 }, "end": { - "line": 153, + "line": 163, "column": 5 } } @@ -21504,15 +21504,15 @@ "updateContext": null }, "value": "else", - "start": 4592, - "end": 4596, + "start": 4827, + "end": 4831, "loc": { "start": { - "line": 153, + "line": 163, "column": 6 }, "end": { - "line": 153, + "line": 163, "column": 10 } } @@ -21529,15 +21529,15 @@ "postfix": false, "binop": null }, - "start": 4597, - "end": 4598, + "start": 4832, + "end": 4833, "loc": { "start": { - "line": 153, + "line": 163, "column": 11 }, "end": { - "line": 153, + "line": 163, "column": 12 } } @@ -21555,15 +21555,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4605, - "end": 4623, + "start": 4840, + "end": 4858, "loc": { "start": { - "line": 154, + "line": 164, "column": 6 }, "end": { - "line": 154, + "line": 164, "column": 24 } } @@ -21581,15 +21581,15 @@ "binop": null, "updateContext": null }, - "start": 4623, - "end": 4624, + "start": 4858, + "end": 4859, "loc": { "start": { - "line": 154, + "line": 164, "column": 24 }, "end": { - "line": 154, + "line": 164, "column": 25 } } @@ -21607,15 +21607,15 @@ "binop": null }, "value": "data", - "start": 4624, - "end": 4628, + "start": 4859, + "end": 4863, "loc": { "start": { - "line": 154, + "line": 164, "column": 25 }, "end": { - "line": 154, + "line": 164, "column": 29 } } @@ -21634,15 +21634,15 @@ "updateContext": null }, "value": "=", - "start": 4629, - "end": 4630, + "start": 4864, + "end": 4865, "loc": { "start": { - "line": 154, + "line": 164, "column": 30 }, "end": { - "line": 154, + "line": 164, "column": 31 } } @@ -21662,15 +21662,15 @@ "updateContext": null }, "value": "this", - "start": 4631, - "end": 4635, + "start": 4866, + "end": 4870, "loc": { "start": { - "line": 154, + "line": 164, "column": 32 }, "end": { - "line": 154, + "line": 164, "column": 36 } } @@ -21688,15 +21688,15 @@ "binop": null, "updateContext": null }, - "start": 4635, - "end": 4636, + "start": 4870, + "end": 4871, "loc": { "start": { - "line": 154, + "line": 164, "column": 36 }, "end": { - "line": 154, + "line": 164, "column": 37 } } @@ -21714,15 +21714,15 @@ "binop": null }, "value": "queryBuilder", - "start": 4636, - "end": 4648, + "start": 4871, + "end": 4883, "loc": { "start": { - "line": 154, + "line": 164, "column": 37 }, "end": { - "line": 154, + "line": 164, "column": 49 } } @@ -21740,15 +21740,15 @@ "binop": null, "updateContext": null }, - "start": 4648, - "end": 4649, + "start": 4883, + "end": 4884, "loc": { "start": { - "line": 154, + "line": 164, "column": 49 }, "end": { - "line": 154, + "line": 164, "column": 50 } } @@ -21766,15 +21766,15 @@ "binop": null }, "value": "getQueryObject", - "start": 4649, - "end": 4663, + "start": 4884, + "end": 4898, "loc": { "start": { - "line": 154, + "line": 164, "column": 50 }, "end": { - "line": 154, + "line": 164, "column": 64 } } @@ -21791,15 +21791,15 @@ "postfix": false, "binop": null }, - "start": 4663, - "end": 4664, + "start": 4898, + "end": 4899, "loc": { "start": { - "line": 154, + "line": 164, "column": 64 }, "end": { - "line": 154, + "line": 164, "column": 65 } } @@ -21819,15 +21819,15 @@ "updateContext": null }, "value": "this", - "start": 4664, - "end": 4668, + "start": 4899, + "end": 4903, "loc": { "start": { - "line": 154, + "line": 164, "column": 65 }, "end": { - "line": 154, + "line": 164, "column": 69 } } @@ -21844,15 +21844,15 @@ "postfix": false, "binop": null }, - "start": 4668, - "end": 4669, + "start": 4903, + "end": 4904, "loc": { "start": { - "line": 154, + "line": 164, "column": 69 }, "end": { - "line": 154, + "line": 164, "column": 70 } } @@ -21870,15 +21870,15 @@ "binop": null, "updateContext": null }, - "start": 4669, - "end": 4670, + "start": 4904, + "end": 4905, "loc": { "start": { - "line": 154, + "line": 164, "column": 70 }, "end": { - "line": 154, + "line": 164, "column": 71 } } @@ -21895,15 +21895,15 @@ "postfix": false, "binop": null }, - "start": 4675, - "end": 4676, + "start": 4910, + "end": 4911, "loc": { "start": { - "line": 155, + "line": 165, "column": 4 }, "end": { - "line": 155, + "line": 165, "column": 5 } } @@ -21923,15 +21923,15 @@ "updateContext": null }, "value": "return", - "start": 4681, - "end": 4687, + "start": 4916, + "end": 4922, "loc": { "start": { - "line": 156, + "line": 166, "column": 4 }, "end": { - "line": 156, + "line": 166, "column": 10 } } @@ -21949,15 +21949,15 @@ "binop": null }, "value": "axios", - "start": 4688, - "end": 4693, + "start": 4923, + "end": 4928, "loc": { "start": { - "line": 156, + "line": 166, "column": 11 }, "end": { - "line": 156, + "line": 166, "column": 16 } } @@ -21974,15 +21974,15 @@ "postfix": false, "binop": null }, - "start": 4693, - "end": 4694, + "start": 4928, + "end": 4929, "loc": { "start": { - "line": 156, + "line": 166, "column": 16 }, "end": { - "line": 156, + "line": 166, "column": 17 } } @@ -22000,15 +22000,15 @@ "binop": null }, "value": "actualAxiosOptions", - "start": 4694, - "end": 4712, + "start": 4929, + "end": 4947, "loc": { "start": { - "line": 156, + "line": 166, "column": 17 }, "end": { - "line": 156, + "line": 166, "column": 35 } } @@ -22025,15 +22025,15 @@ "postfix": false, "binop": null }, - "start": 4712, - "end": 4713, + "start": 4947, + "end": 4948, "loc": { "start": { - "line": 156, + "line": 166, "column": 35 }, "end": { - "line": 156, + "line": 166, "column": 36 } } @@ -22051,15 +22051,15 @@ "binop": null, "updateContext": null }, - "start": 4713, - "end": 4714, + "start": 4948, + "end": 4949, "loc": { "start": { - "line": 156, + "line": 166, "column": 36 }, "end": { - "line": 156, + "line": 166, "column": 37 } } @@ -22076,15 +22076,15 @@ "postfix": false, "binop": null }, - "start": 4717, - "end": 4718, + "start": 4952, + "end": 4953, "loc": { "start": { - "line": 157, + "line": 167, "column": 2 }, "end": { - "line": 157, + "line": 167, "column": 3 } } @@ -22092,15 +22092,15 @@ { "type": "CommentBlock", "value": "*\n * Builds an AJAX handler function.\n * @access private\n * @return {Function} A callback function which performs\n * the actual ajax operation.\n ", - "start": 4722, - "end": 4900, + "start": 4957, + "end": 5135, "loc": { "start": { - "line": 159, + "line": 169, "column": 2 }, "end": { - "line": 164, + "line": 174, "column": 5 } } @@ -22118,15 +22118,15 @@ "binop": null }, "value": "_buildAjaxHandler", - "start": 4903, - "end": 4920, + "start": 5138, + "end": 5155, "loc": { "start": { - "line": 165, + "line": 175, "column": 2 }, "end": { - "line": 165, + "line": 175, "column": 19 } } @@ -22143,15 +22143,15 @@ "postfix": false, "binop": null }, - "start": 4920, - "end": 4921, + "start": 5155, + "end": 5156, "loc": { "start": { - "line": 165, + "line": 175, "column": 19 }, "end": { - "line": 165, + "line": 175, "column": 20 } } @@ -22168,15 +22168,15 @@ "postfix": false, "binop": null }, - "start": 4921, - "end": 4922, + "start": 5156, + "end": 5157, "loc": { "start": { - "line": 165, + "line": 175, "column": 20 }, "end": { - "line": 165, + "line": 175, "column": 21 } } @@ -22193,15 +22193,15 @@ "postfix": false, "binop": null }, - "start": 4923, - "end": 4924, + "start": 5158, + "end": 5159, "loc": { "start": { - "line": 165, + "line": 175, "column": 22 }, "end": { - "line": 165, + "line": 175, "column": 23 } } @@ -22221,15 +22221,15 @@ "updateContext": null }, "value": "const", - "start": 4929, - "end": 4934, + "start": 5164, + "end": 5169, "loc": { "start": { - "line": 166, + "line": 176, "column": 4 }, "end": { - "line": 166, + "line": 176, "column": 9 } } @@ -22247,15 +22247,15 @@ "binop": null }, "value": "ajaxHandler", - "start": 4935, - "end": 4946, + "start": 5170, + "end": 5181, "loc": { "start": { - "line": 166, + "line": 176, "column": 10 }, "end": { - "line": 166, + "line": 176, "column": 21 } } @@ -22274,15 +22274,15 @@ "updateContext": null }, "value": "=", - "start": 4947, - "end": 4948, + "start": 5182, + "end": 5183, "loc": { "start": { - "line": 166, + "line": 176, "column": 22 }, "end": { - "line": 166, + "line": 176, "column": 23 } } @@ -22299,15 +22299,15 @@ "postfix": false, "binop": null }, - "start": 4949, - "end": 4950, + "start": 5184, + "end": 5185, "loc": { "start": { - "line": 166, + "line": 176, "column": 24 }, "end": { - "line": 166, + "line": 176, "column": 25 } } @@ -22326,15 +22326,15 @@ "binop": null }, "value": "function", - "start": 4957, - "end": 4965, + "start": 5192, + "end": 5200, "loc": { "start": { - "line": 167, + "line": 177, "column": 6 }, "end": { - "line": 167, + "line": 177, "column": 14 } } @@ -22352,15 +22352,15 @@ "binop": null, "updateContext": null }, - "start": 4965, - "end": 4966, + "start": 5200, + "end": 5201, "loc": { "start": { - "line": 167, + "line": 177, "column": 14 }, "end": { - "line": 167, + "line": 177, "column": 15 } } @@ -22377,15 +22377,15 @@ "postfix": false, "binop": null }, - "start": 4967, - "end": 4968, + "start": 5202, + "end": 5203, "loc": { "start": { - "line": 167, + "line": 177, "column": 16 }, "end": { - "line": 167, + "line": 177, "column": 17 } } @@ -22402,15 +22402,15 @@ "postfix": false, "binop": null }, - "start": 4968, - "end": 4969, + "start": 5203, + "end": 5204, "loc": { "start": { - "line": 167, + "line": 177, "column": 17 }, "end": { - "line": 167, + "line": 177, "column": 18 } } @@ -22428,15 +22428,15 @@ "binop": null, "updateContext": null }, - "start": 4970, - "end": 4972, + "start": 5205, + "end": 5207, "loc": { "start": { - "line": 167, + "line": 177, "column": 19 }, "end": { - "line": 167, + "line": 177, "column": 21 } } @@ -22456,15 +22456,15 @@ "updateContext": null }, "value": "this", - "start": 4973, - "end": 4977, + "start": 5208, + "end": 5212, "loc": { "start": { - "line": 167, + "line": 177, "column": 22 }, "end": { - "line": 167, + "line": 177, "column": 26 } } @@ -22482,15 +22482,15 @@ "binop": null, "updateContext": null }, - "start": 4977, - "end": 4978, + "start": 5212, + "end": 5213, "loc": { "start": { - "line": 167, + "line": 177, "column": 26 }, "end": { - "line": 167, + "line": 177, "column": 27 } } @@ -22508,15 +22508,15 @@ "binop": null }, "value": "ajax", - "start": 4978, - "end": 4982, + "start": 5213, + "end": 5217, "loc": { "start": { - "line": 167, + "line": 177, "column": 27 }, "end": { - "line": 167, + "line": 177, "column": 31 } } @@ -22534,15 +22534,15 @@ "binop": null, "updateContext": null }, - "start": 4982, - "end": 4983, + "start": 5217, + "end": 5218, "loc": { "start": { - "line": 167, + "line": 177, "column": 31 }, "end": { - "line": 167, + "line": 177, "column": 32 } } @@ -22560,15 +22560,15 @@ "binop": null }, "value": "call", - "start": 4983, - "end": 4987, + "start": 5218, + "end": 5222, "loc": { "start": { - "line": 167, + "line": 177, "column": 32 }, "end": { - "line": 167, + "line": 177, "column": 36 } } @@ -22585,15 +22585,15 @@ "postfix": false, "binop": null }, - "start": 4987, - "end": 4988, + "start": 5222, + "end": 5223, "loc": { "start": { - "line": 167, + "line": 177, "column": 36 }, "end": { - "line": 167, + "line": 177, "column": 37 } } @@ -22613,15 +22613,15 @@ "updateContext": null }, "value": "this", - "start": 4988, - "end": 4992, + "start": 5223, + "end": 5227, "loc": { "start": { - "line": 167, + "line": 177, "column": 37 }, "end": { - "line": 167, + "line": 177, "column": 41 } } @@ -22639,15 +22639,15 @@ "binop": null, "updateContext": null }, - "start": 4992, - "end": 4993, + "start": 5227, + "end": 5228, "loc": { "start": { - "line": 167, + "line": 177, "column": 41 }, "end": { - "line": 167, + "line": 177, "column": 42 } } @@ -22667,15 +22667,15 @@ "updateContext": null }, "value": "this", - "start": 4994, - "end": 4998, + "start": 5229, + "end": 5233, "loc": { "start": { - "line": 167, + "line": 177, "column": 43 }, "end": { - "line": 167, + "line": 177, "column": 47 } } @@ -22693,15 +22693,15 @@ "binop": null, "updateContext": null }, - "start": 4998, - "end": 4999, + "start": 5233, + "end": 5234, "loc": { "start": { - "line": 167, + "line": 177, "column": 47 }, "end": { - "line": 167, + "line": 177, "column": 48 } } @@ -22719,15 +22719,15 @@ "binop": null }, "value": "queryBuilder", - "start": 4999, - "end": 5011, + "start": 5234, + "end": 5246, "loc": { "start": { - "line": 167, + "line": 177, "column": 48 }, "end": { - "line": 167, + "line": 177, "column": 60 } } @@ -22744,15 +22744,15 @@ "postfix": false, "binop": null }, - "start": 5011, - "end": 5012, + "start": 5246, + "end": 5247, "loc": { "start": { - "line": 167, + "line": 177, "column": 60 }, "end": { - "line": 167, + "line": 177, "column": 61 } } @@ -22770,15 +22770,15 @@ "binop": null, "updateContext": null }, - "start": 5012, - "end": 5013, + "start": 5247, + "end": 5248, "loc": { "start": { - "line": 167, + "line": 177, "column": 61 }, "end": { - "line": 167, + "line": 177, "column": 62 } } @@ -22796,15 +22796,15 @@ "binop": null }, "value": "string", - "start": 5020, - "end": 5026, + "start": 5255, + "end": 5261, "loc": { "start": { - "line": 168, + "line": 178, "column": 6 }, "end": { - "line": 168, + "line": 178, "column": 12 } } @@ -22822,15 +22822,15 @@ "binop": null, "updateContext": null }, - "start": 5026, - "end": 5027, + "start": 5261, + "end": 5262, "loc": { "start": { - "line": 168, + "line": 178, "column": 12 }, "end": { - "line": 168, + "line": 178, "column": 13 } } @@ -22847,15 +22847,15 @@ "postfix": false, "binop": null }, - "start": 5028, - "end": 5029, + "start": 5263, + "end": 5264, "loc": { "start": { - "line": 168, + "line": 178, "column": 14 }, "end": { - "line": 168, + "line": 178, "column": 15 } } @@ -22872,15 +22872,15 @@ "postfix": false, "binop": null }, - "start": 5029, - "end": 5030, + "start": 5264, + "end": 5265, "loc": { "start": { - "line": 168, + "line": 178, "column": 15 }, "end": { - "line": 168, + "line": 178, "column": 16 } } @@ -22898,15 +22898,15 @@ "binop": null, "updateContext": null }, - "start": 5031, - "end": 5033, + "start": 5266, + "end": 5268, "loc": { "start": { - "line": 168, + "line": 178, "column": 17 }, "end": { - "line": 168, + "line": 178, "column": 19 } } @@ -22923,15 +22923,15 @@ "postfix": false, "binop": null }, - "start": 5034, - "end": 5035, + "start": 5269, + "end": 5270, "loc": { "start": { - "line": 168, + "line": 178, "column": 20 }, "end": { - "line": 168, + "line": 178, "column": 21 } } @@ -22951,15 +22951,15 @@ "updateContext": null }, "value": "const", - "start": 5044, - "end": 5049, + "start": 5279, + "end": 5284, "loc": { "start": { - "line": 169, + "line": 179, "column": 8 }, "end": { - "line": 169, + "line": 179, "column": 13 } } @@ -22977,15 +22977,15 @@ "binop": null }, "value": "url", - "start": 5050, - "end": 5053, + "start": 5285, + "end": 5288, "loc": { "start": { - "line": 169, + "line": 179, "column": 14 }, "end": { - "line": 169, + "line": 179, "column": 17 } } @@ -23004,15 +23004,15 @@ "updateContext": null }, "value": "=", - "start": 5054, - "end": 5055, + "start": 5289, + "end": 5290, "loc": { "start": { - "line": 169, + "line": 179, "column": 18 }, "end": { - "line": 169, + "line": 179, "column": 19 } } @@ -23032,15 +23032,15 @@ "updateContext": null }, "value": "this", - "start": 5056, - "end": 5060, + "start": 5291, + "end": 5295, "loc": { "start": { - "line": 169, + "line": 179, "column": 20 }, "end": { - "line": 169, + "line": 179, "column": 24 } } @@ -23058,15 +23058,15 @@ "binop": null, "updateContext": null }, - "start": 5060, - "end": 5061, + "start": 5295, + "end": 5296, "loc": { "start": { - "line": 169, + "line": 179, "column": 24 }, "end": { - "line": 169, + "line": 179, "column": 25 } } @@ -23084,15 +23084,15 @@ "binop": null }, "value": "ajax", - "start": 5061, - "end": 5065, + "start": 5296, + "end": 5300, "loc": { "start": { - "line": 169, + "line": 179, "column": 25 }, "end": { - "line": 169, + "line": 179, "column": 29 } } @@ -23110,15 +23110,15 @@ "binop": null, "updateContext": null }, - "start": 5065, - "end": 5066, + "start": 5300, + "end": 5301, "loc": { "start": { - "line": 169, + "line": 179, "column": 29 }, "end": { - "line": 169, + "line": 179, "column": 30 } } @@ -23138,15 +23138,15 @@ "updateContext": null }, "value": "return", - "start": 5075, - "end": 5081, + "start": 5310, + "end": 5316, "loc": { "start": { - "line": 170, + "line": 180, "column": 8 }, "end": { - "line": 170, + "line": 180, "column": 14 } } @@ -23166,15 +23166,15 @@ "updateContext": null }, "value": "this", - "start": 5082, - "end": 5086, + "start": 5317, + "end": 5321, "loc": { "start": { - "line": 170, + "line": 180, "column": 15 }, "end": { - "line": 170, + "line": 180, "column": 19 } } @@ -23192,15 +23192,15 @@ "binop": null, "updateContext": null }, - "start": 5086, - "end": 5087, + "start": 5321, + "end": 5322, "loc": { "start": { - "line": 170, + "line": 180, "column": 19 }, "end": { - "line": 170, + "line": 180, "column": 20 } } @@ -23218,15 +23218,15 @@ "binop": null }, "value": "_ajaxCall", - "start": 5087, - "end": 5096, + "start": 5322, + "end": 5331, "loc": { "start": { - "line": 170, + "line": 180, "column": 20 }, "end": { - "line": 170, + "line": 180, "column": 29 } } @@ -23243,15 +23243,15 @@ "postfix": false, "binop": null }, - "start": 5096, - "end": 5097, + "start": 5331, + "end": 5332, "loc": { "start": { - "line": 170, + "line": 180, "column": 29 }, "end": { - "line": 170, + "line": 180, "column": 30 } } @@ -23268,15 +23268,15 @@ "postfix": false, "binop": null }, - "start": 5097, - "end": 5098, + "start": 5332, + "end": 5333, "loc": { "start": { - "line": 170, + "line": 180, "column": 30 }, "end": { - "line": 170, + "line": 180, "column": 31 } } @@ -23294,15 +23294,15 @@ "binop": null }, "value": "url", - "start": 5109, - "end": 5112, + "start": 5344, + "end": 5347, "loc": { "start": { - "line": 171, + "line": 181, "column": 10 }, "end": { - "line": 171, + "line": 181, "column": 13 } } @@ -23320,15 +23320,15 @@ "binop": null, "updateContext": null }, - "start": 5112, - "end": 5113, + "start": 5347, + "end": 5348, "loc": { "start": { - "line": 171, + "line": 181, "column": 13 }, "end": { - "line": 171, + "line": 181, "column": 14 } } @@ -23346,15 +23346,15 @@ "binop": null }, "value": "method", - "start": 5124, - "end": 5130, + "start": 5359, + "end": 5365, "loc": { "start": { - "line": 172, + "line": 182, "column": 10 }, "end": { - "line": 172, + "line": 182, "column": 16 } } @@ -23372,15 +23372,15 @@ "binop": null, "updateContext": null }, - "start": 5130, - "end": 5131, + "start": 5365, + "end": 5366, "loc": { "start": { - "line": 172, + "line": 182, "column": 16 }, "end": { - "line": 172, + "line": 182, "column": 17 } } @@ -23399,15 +23399,15 @@ "updateContext": null }, "value": "get", - "start": 5132, - "end": 5137, + "start": 5367, + "end": 5372, "loc": { "start": { - "line": 172, + "line": 182, "column": 18 }, "end": { - "line": 172, + "line": 182, "column": 23 } } @@ -23425,15 +23425,15 @@ "binop": null, "updateContext": null }, - "start": 5137, - "end": 5138, + "start": 5372, + "end": 5373, "loc": { "start": { - "line": 172, + "line": 182, "column": 23 }, "end": { - "line": 172, + "line": 182, "column": 24 } } @@ -23450,15 +23450,15 @@ "postfix": false, "binop": null }, - "start": 5147, - "end": 5148, + "start": 5382, + "end": 5383, "loc": { "start": { - "line": 173, + "line": 183, "column": 8 }, "end": { - "line": 173, + "line": 183, "column": 9 } } @@ -23475,15 +23475,15 @@ "postfix": false, "binop": null }, - "start": 5148, - "end": 5149, + "start": 5383, + "end": 5384, "loc": { "start": { - "line": 173, + "line": 183, "column": 9 }, "end": { - "line": 173, + "line": 183, "column": 10 } } @@ -23501,15 +23501,15 @@ "binop": null, "updateContext": null }, - "start": 5149, - "end": 5150, + "start": 5384, + "end": 5385, "loc": { "start": { - "line": 173, + "line": 183, "column": 10 }, "end": { - "line": 173, + "line": 183, "column": 11 } } @@ -23526,15 +23526,15 @@ "postfix": false, "binop": null }, - "start": 5157, - "end": 5158, + "start": 5392, + "end": 5393, "loc": { "start": { - "line": 174, + "line": 184, "column": 6 }, "end": { - "line": 174, + "line": 184, "column": 7 } } @@ -23552,15 +23552,15 @@ "binop": null, "updateContext": null }, - "start": 5158, - "end": 5159, + "start": 5393, + "end": 5394, "loc": { "start": { - "line": 174, + "line": 184, "column": 7 }, "end": { - "line": 174, + "line": 184, "column": 8 } } @@ -23578,15 +23578,15 @@ "binop": null }, "value": "object", - "start": 5166, - "end": 5172, + "start": 5401, + "end": 5407, "loc": { "start": { - "line": 175, + "line": 185, "column": 6 }, "end": { - "line": 175, + "line": 185, "column": 12 } } @@ -23604,15 +23604,15 @@ "binop": null, "updateContext": null }, - "start": 5172, - "end": 5173, + "start": 5407, + "end": 5408, "loc": { "start": { - "line": 175, + "line": 185, "column": 12 }, "end": { - "line": 175, + "line": 185, "column": 13 } } @@ -23629,15 +23629,15 @@ "postfix": false, "binop": null }, - "start": 5174, - "end": 5175, + "start": 5409, + "end": 5410, "loc": { "start": { - "line": 175, + "line": 185, "column": 14 }, "end": { - "line": 175, + "line": 185, "column": 15 } } @@ -23654,15 +23654,15 @@ "postfix": false, "binop": null }, - "start": 5175, - "end": 5176, + "start": 5410, + "end": 5411, "loc": { "start": { - "line": 175, + "line": 185, "column": 15 }, "end": { - "line": 175, + "line": 185, "column": 16 } } @@ -23680,15 +23680,15 @@ "binop": null, "updateContext": null }, - "start": 5177, - "end": 5179, + "start": 5412, + "end": 5414, "loc": { "start": { - "line": 175, + "line": 185, "column": 17 }, "end": { - "line": 175, + "line": 185, "column": 19 } } @@ -23705,15 +23705,15 @@ "postfix": false, "binop": null }, - "start": 5180, - "end": 5181, + "start": 5415, + "end": 5416, "loc": { "start": { - "line": 175, + "line": 185, "column": 20 }, "end": { - "line": 175, + "line": 185, "column": 21 } } @@ -23733,15 +23733,15 @@ "updateContext": null }, "value": "this", - "start": 5190, - "end": 5194, + "start": 5425, + "end": 5429, "loc": { "start": { - "line": 176, + "line": 186, "column": 8 }, "end": { - "line": 176, + "line": 186, "column": 12 } } @@ -23759,15 +23759,15 @@ "binop": null, "updateContext": null }, - "start": 5194, - "end": 5195, + "start": 5429, + "end": 5430, "loc": { "start": { - "line": 176, + "line": 186, "column": 12 }, "end": { - "line": 176, + "line": 186, "column": 13 } } @@ -23785,15 +23785,15 @@ "binop": null }, "value": "ajax", - "start": 5195, - "end": 5199, + "start": 5430, + "end": 5434, "loc": { "start": { - "line": 176, + "line": 186, "column": 13 }, "end": { - "line": 176, + "line": 186, "column": 17 } } @@ -23811,15 +23811,15 @@ "binop": null, "updateContext": null }, - "start": 5199, - "end": 5200, + "start": 5434, + "end": 5435, "loc": { "start": { - "line": 176, + "line": 186, "column": 17 }, "end": { - "line": 176, + "line": 186, "column": 18 } } @@ -23837,15 +23837,15 @@ "binop": null }, "value": "method", - "start": 5200, - "end": 5206, + "start": 5435, + "end": 5441, "loc": { "start": { - "line": 176, + "line": 186, "column": 18 }, "end": { - "line": 176, + "line": 186, "column": 24 } } @@ -23864,15 +23864,15 @@ "updateContext": null }, "value": "=", - "start": 5207, - "end": 5208, + "start": 5442, + "end": 5443, "loc": { "start": { - "line": 176, + "line": 186, "column": 25 }, "end": { - "line": 176, + "line": 186, "column": 26 } } @@ -23892,15 +23892,15 @@ "updateContext": null }, "value": "this", - "start": 5209, - "end": 5213, + "start": 5444, + "end": 5448, "loc": { "start": { - "line": 176, + "line": 186, "column": 27 }, "end": { - "line": 176, + "line": 186, "column": 31 } } @@ -23918,15 +23918,15 @@ "binop": null, "updateContext": null }, - "start": 5213, - "end": 5214, + "start": 5448, + "end": 5449, "loc": { "start": { - "line": 176, + "line": 186, "column": 31 }, "end": { - "line": 176, + "line": 186, "column": 32 } } @@ -23944,15 +23944,15 @@ "binop": null }, "value": "ajax", - "start": 5214, - "end": 5218, + "start": 5449, + "end": 5453, "loc": { "start": { - "line": 176, + "line": 186, "column": 32 }, "end": { - "line": 176, + "line": 186, "column": 36 } } @@ -23970,15 +23970,15 @@ "binop": null, "updateContext": null }, - "start": 5218, - "end": 5219, + "start": 5453, + "end": 5454, "loc": { "start": { - "line": 176, + "line": 186, "column": 36 }, "end": { - "line": 176, + "line": 186, "column": 37 } } @@ -23996,15 +23996,15 @@ "binop": null }, "value": "method", - "start": 5219, - "end": 5225, + "start": 5454, + "end": 5460, "loc": { "start": { - "line": 176, + "line": 186, "column": 37 }, "end": { - "line": 176, + "line": 186, "column": 43 } } @@ -24023,15 +24023,15 @@ "updateContext": null }, "value": "||", - "start": 5226, - "end": 5228, + "start": 5461, + "end": 5463, "loc": { "start": { - "line": 176, + "line": 186, "column": 44 }, "end": { - "line": 176, + "line": 186, "column": 46 } } @@ -24050,15 +24050,15 @@ "updateContext": null }, "value": "get", - "start": 5229, - "end": 5234, + "start": 5464, + "end": 5469, "loc": { "start": { - "line": 176, + "line": 186, "column": 47 }, "end": { - "line": 176, + "line": 186, "column": 52 } } @@ -24076,15 +24076,15 @@ "binop": null, "updateContext": null }, - "start": 5234, - "end": 5235, + "start": 5469, + "end": 5470, "loc": { "start": { - "line": 176, + "line": 186, "column": 52 }, "end": { - "line": 176, + "line": 186, "column": 53 } } @@ -24104,15 +24104,15 @@ "updateContext": null }, "value": "return", - "start": 5244, - "end": 5250, + "start": 5479, + "end": 5485, "loc": { "start": { - "line": 177, + "line": 187, "column": 8 }, "end": { - "line": 177, + "line": 187, "column": 14 } } @@ -24132,15 +24132,15 @@ "updateContext": null }, "value": "this", - "start": 5251, - "end": 5255, + "start": 5486, + "end": 5490, "loc": { "start": { - "line": 177, + "line": 187, "column": 15 }, "end": { - "line": 177, + "line": 187, "column": 19 } } @@ -24158,15 +24158,15 @@ "binop": null, "updateContext": null }, - "start": 5255, - "end": 5256, + "start": 5490, + "end": 5491, "loc": { "start": { - "line": 177, + "line": 187, "column": 19 }, "end": { - "line": 177, + "line": 187, "column": 20 } } @@ -24184,15 +24184,15 @@ "binop": null }, "value": "_ajaxCall", - "start": 5256, - "end": 5265, + "start": 5491, + "end": 5500, "loc": { "start": { - "line": 177, + "line": 187, "column": 20 }, "end": { - "line": 177, + "line": 187, "column": 29 } } @@ -24209,15 +24209,15 @@ "postfix": false, "binop": null }, - "start": 5265, - "end": 5266, + "start": 5500, + "end": 5501, "loc": { "start": { - "line": 177, + "line": 187, "column": 29 }, "end": { - "line": 177, + "line": 187, "column": 30 } } @@ -24237,15 +24237,15 @@ "updateContext": null }, "value": "this", - "start": 5266, - "end": 5270, + "start": 5501, + "end": 5505, "loc": { "start": { - "line": 177, + "line": 187, "column": 30 }, "end": { - "line": 177, + "line": 187, "column": 34 } } @@ -24263,15 +24263,15 @@ "binop": null, "updateContext": null }, - "start": 5270, - "end": 5271, + "start": 5505, + "end": 5506, "loc": { "start": { - "line": 177, + "line": 187, "column": 34 }, "end": { - "line": 177, + "line": 187, "column": 35 } } @@ -24289,15 +24289,15 @@ "binop": null }, "value": "ajax", - "start": 5271, - "end": 5275, + "start": 5506, + "end": 5510, "loc": { "start": { - "line": 177, + "line": 187, "column": 35 }, "end": { - "line": 177, + "line": 187, "column": 39 } } @@ -24314,15 +24314,15 @@ "postfix": false, "binop": null }, - "start": 5275, - "end": 5276, + "start": 5510, + "end": 5511, "loc": { "start": { - "line": 177, + "line": 187, "column": 39 }, "end": { - "line": 177, + "line": 187, "column": 40 } } @@ -24340,15 +24340,15 @@ "binop": null, "updateContext": null }, - "start": 5276, - "end": 5277, + "start": 5511, + "end": 5512, "loc": { "start": { - "line": 177, + "line": 187, "column": 40 }, "end": { - "line": 177, + "line": 187, "column": 41 } } @@ -24365,15 +24365,15 @@ "postfix": false, "binop": null }, - "start": 5284, - "end": 5285, + "start": 5519, + "end": 5520, "loc": { "start": { - "line": 178, + "line": 188, "column": 6 }, "end": { - "line": 178, + "line": 188, "column": 7 } } @@ -24391,15 +24391,15 @@ "binop": null, "updateContext": null }, - "start": 5285, - "end": 5286, + "start": 5520, + "end": 5521, "loc": { "start": { - "line": 178, + "line": 188, "column": 7 }, "end": { - "line": 178, + "line": 188, "column": 8 } } @@ -24416,15 +24416,15 @@ "postfix": false, "binop": null }, - "start": 5291, - "end": 5292, + "start": 5526, + "end": 5527, "loc": { "start": { - "line": 179, + "line": 189, "column": 4 }, "end": { - "line": 179, + "line": 189, "column": 5 } } @@ -24442,15 +24442,15 @@ "binop": null, "updateContext": null }, - "start": 5292, - "end": 5293, + "start": 5527, + "end": 5528, "loc": { "start": { - "line": 179, + "line": 189, "column": 5 }, "end": { - "line": 179, + "line": 189, "column": 6 } } @@ -24470,15 +24470,15 @@ "updateContext": null }, "value": "const", - "start": 5298, - "end": 5303, + "start": 5533, + "end": 5538, "loc": { "start": { - "line": 180, + "line": 190, "column": 4 }, "end": { - "line": 180, + "line": 190, "column": 9 } } @@ -24496,15 +24496,15 @@ "binop": null }, "value": "ajaxObjectType", - "start": 5304, - "end": 5318, + "start": 5539, + "end": 5553, "loc": { "start": { - "line": 180, + "line": 190, "column": 10 }, "end": { - "line": 180, + "line": 190, "column": 24 } } @@ -24523,15 +24523,15 @@ "updateContext": null }, "value": "=", - "start": 5319, - "end": 5320, + "start": 5554, + "end": 5555, "loc": { "start": { - "line": 180, + "line": 190, "column": 25 }, "end": { - "line": 180, + "line": 190, "column": 26 } } @@ -24551,15 +24551,15 @@ "updateContext": null }, "value": "typeof", - "start": 5321, - "end": 5327, + "start": 5556, + "end": 5562, "loc": { "start": { - "line": 180, + "line": 190, "column": 27 }, "end": { - "line": 180, + "line": 190, "column": 33 } } @@ -24579,15 +24579,15 @@ "updateContext": null }, "value": "this", - "start": 5328, - "end": 5332, + "start": 5563, + "end": 5567, "loc": { "start": { - "line": 180, + "line": 190, "column": 34 }, "end": { - "line": 180, + "line": 190, "column": 38 } } @@ -24605,15 +24605,15 @@ "binop": null, "updateContext": null }, - "start": 5332, - "end": 5333, + "start": 5567, + "end": 5568, "loc": { "start": { - "line": 180, + "line": 190, "column": 38 }, "end": { - "line": 180, + "line": 190, "column": 39 } } @@ -24631,15 +24631,15 @@ "binop": null }, "value": "ajax", - "start": 5333, - "end": 5337, + "start": 5568, + "end": 5572, "loc": { "start": { - "line": 180, + "line": 190, "column": 39 }, "end": { - "line": 180, + "line": 190, "column": 43 } } @@ -24657,15 +24657,15 @@ "binop": null, "updateContext": null }, - "start": 5337, - "end": 5338, + "start": 5572, + "end": 5573, "loc": { "start": { - "line": 180, + "line": 190, "column": 43 }, "end": { - "line": 180, + "line": 190, "column": 44 } } @@ -24685,15 +24685,15 @@ "updateContext": null }, "value": "const", - "start": 5343, - "end": 5348, + "start": 5578, + "end": 5583, "loc": { "start": { - "line": 181, + "line": 191, "column": 4 }, "end": { - "line": 181, + "line": 191, "column": 9 } } @@ -24711,15 +24711,15 @@ "binop": null }, "value": "actualAjaxHandler", - "start": 5349, - "end": 5366, + "start": 5584, + "end": 5601, "loc": { "start": { - "line": 181, + "line": 191, "column": 10 }, "end": { - "line": 181, + "line": 191, "column": 27 } } @@ -24738,15 +24738,15 @@ "updateContext": null }, "value": "=", - "start": 5367, - "end": 5368, + "start": 5602, + "end": 5603, "loc": { "start": { - "line": 181, + "line": 191, "column": 28 }, "end": { - "line": 181, + "line": 191, "column": 29 } } @@ -24764,15 +24764,15 @@ "binop": null }, "value": "ajaxHandler", - "start": 5369, - "end": 5380, + "start": 5604, + "end": 5615, "loc": { "start": { - "line": 181, + "line": 191, "column": 30 }, "end": { - "line": 181, + "line": 191, "column": 41 } } @@ -24790,15 +24790,15 @@ "binop": null, "updateContext": null }, - "start": 5380, - "end": 5381, + "start": 5615, + "end": 5616, "loc": { "start": { - "line": 181, + "line": 191, "column": 41 }, "end": { - "line": 181, + "line": 191, "column": 42 } } @@ -24816,15 +24816,15 @@ "binop": null }, "value": "ajaxObjectType", - "start": 5381, - "end": 5395, + "start": 5616, + "end": 5630, "loc": { "start": { - "line": 181, + "line": 191, "column": 42 }, "end": { - "line": 181, + "line": 191, "column": 56 } } @@ -24842,15 +24842,15 @@ "binop": null, "updateContext": null }, - "start": 5395, - "end": 5396, + "start": 5630, + "end": 5631, "loc": { "start": { - "line": 181, + "line": 191, "column": 56 }, "end": { - "line": 181, + "line": 191, "column": 57 } } @@ -24868,15 +24868,15 @@ "binop": null, "updateContext": null }, - "start": 5396, - "end": 5397, + "start": 5631, + "end": 5632, "loc": { "start": { - "line": 181, + "line": 191, "column": 57 }, "end": { - "line": 181, + "line": 191, "column": 58 } } @@ -24896,15 +24896,15 @@ "updateContext": null }, "value": "if", - "start": 5402, - "end": 5404, + "start": 5637, + "end": 5639, "loc": { "start": { - "line": 182, + "line": 192, "column": 4 }, "end": { - "line": 182, + "line": 192, "column": 6 } } @@ -24921,15 +24921,15 @@ "postfix": false, "binop": null }, - "start": 5405, - "end": 5406, + "start": 5640, + "end": 5641, "loc": { "start": { - "line": 182, + "line": 192, "column": 7 }, "end": { - "line": 182, + "line": 192, "column": 8 } } @@ -24948,15 +24948,15 @@ "updateContext": null }, "value": "!", - "start": 5406, - "end": 5407, + "start": 5641, + "end": 5642, "loc": { "start": { - "line": 182, + "line": 192, "column": 8 }, "end": { - "line": 182, + "line": 192, "column": 9 } } @@ -24974,15 +24974,15 @@ "binop": null }, "value": "actualAjaxHandler", - "start": 5407, - "end": 5424, + "start": 5642, + "end": 5659, "loc": { "start": { - "line": 182, + "line": 192, "column": 9 }, "end": { - "line": 182, + "line": 192, "column": 26 } } @@ -24999,15 +24999,15 @@ "postfix": false, "binop": null }, - "start": 5424, - "end": 5425, + "start": 5659, + "end": 5660, "loc": { "start": { - "line": 182, + "line": 192, "column": 26 }, "end": { - "line": 182, + "line": 192, "column": 27 } } @@ -25024,15 +25024,15 @@ "postfix": false, "binop": null }, - "start": 5426, - "end": 5427, + "start": 5661, + "end": 5662, "loc": { "start": { - "line": 182, + "line": 192, "column": 28 }, "end": { - "line": 182, + "line": 192, "column": 29 } } @@ -25052,15 +25052,15 @@ "updateContext": null }, "value": "throw", - "start": 5434, - "end": 5439, + "start": 5669, + "end": 5674, "loc": { "start": { - "line": 183, + "line": 193, "column": 6 }, "end": { - "line": 183, + "line": 193, "column": 11 } } @@ -25080,15 +25080,15 @@ "updateContext": null }, "value": "new", - "start": 5440, - "end": 5443, + "start": 5675, + "end": 5678, "loc": { "start": { - "line": 183, + "line": 193, "column": 12 }, "end": { - "line": 183, + "line": 193, "column": 15 } } @@ -25106,15 +25106,15 @@ "binop": null }, "value": "Error", - "start": 5444, - "end": 5449, + "start": 5679, + "end": 5684, "loc": { "start": { - "line": 183, + "line": 193, "column": 16 }, "end": { - "line": 183, + "line": 193, "column": 21 } } @@ -25131,15 +25131,15 @@ "postfix": false, "binop": null }, - "start": 5449, - "end": 5450, + "start": 5684, + "end": 5685, "loc": { "start": { - "line": 183, + "line": 193, "column": 21 }, "end": { - "line": 183, + "line": 193, "column": 22 } } @@ -25156,15 +25156,15 @@ "postfix": false, "binop": null }, - "start": 5450, - "end": 5451, + "start": 5685, + "end": 5686, "loc": { "start": { - "line": 183, + "line": 193, "column": 22 }, "end": { - "line": 183, + "line": 193, "column": 23 } } @@ -25183,15 +25183,15 @@ "updateContext": null }, "value": "Does not support provided ajax object of type ", - "start": 5451, - "end": 5497, + "start": 5686, + "end": 5732, "loc": { "start": { - "line": 183, + "line": 193, "column": 23 }, "end": { - "line": 183, + "line": 193, "column": 69 } } @@ -25208,15 +25208,15 @@ "postfix": false, "binop": null }, - "start": 5497, - "end": 5499, + "start": 5732, + "end": 5734, "loc": { "start": { - "line": 183, + "line": 193, "column": 69 }, "end": { - "line": 183, + "line": 193, "column": 71 } } @@ -25234,15 +25234,15 @@ "binop": null }, "value": "ajaxObjectType", - "start": 5499, - "end": 5513, + "start": 5734, + "end": 5748, "loc": { "start": { - "line": 183, + "line": 193, "column": 71 }, "end": { - "line": 183, + "line": 193, "column": 85 } } @@ -25259,15 +25259,15 @@ "postfix": false, "binop": null }, - "start": 5513, - "end": 5514, + "start": 5748, + "end": 5749, "loc": { "start": { - "line": 183, + "line": 193, "column": 85 }, "end": { - "line": 183, + "line": 193, "column": 86 } } @@ -25286,15 +25286,15 @@ "updateContext": null }, "value": "", - "start": 5514, - "end": 5514, + "start": 5749, + "end": 5749, "loc": { "start": { - "line": 183, + "line": 193, "column": 86 }, "end": { - "line": 183, + "line": 193, "column": 86 } } @@ -25311,15 +25311,15 @@ "postfix": false, "binop": null }, - "start": 5514, - "end": 5515, + "start": 5749, + "end": 5750, "loc": { "start": { - "line": 183, + "line": 193, "column": 86 }, "end": { - "line": 183, + "line": 193, "column": 87 } } @@ -25336,15 +25336,15 @@ "postfix": false, "binop": null }, - "start": 5515, - "end": 5516, + "start": 5750, + "end": 5751, "loc": { "start": { - "line": 183, + "line": 193, "column": 87 }, "end": { - "line": 183, + "line": 193, "column": 88 } } @@ -25362,15 +25362,15 @@ "binop": null, "updateContext": null }, - "start": 5516, - "end": 5517, + "start": 5751, + "end": 5752, "loc": { "start": { - "line": 183, + "line": 193, "column": 88 }, "end": { - "line": 183, + "line": 193, "column": 89 } } @@ -25387,15 +25387,15 @@ "postfix": false, "binop": null }, - "start": 5522, - "end": 5523, + "start": 5757, + "end": 5758, "loc": { "start": { - "line": 184, + "line": 194, "column": 4 }, "end": { - "line": 184, + "line": 194, "column": 5 } } @@ -25415,15 +25415,15 @@ "updateContext": null }, "value": "return", - "start": 5528, - "end": 5534, + "start": 5763, + "end": 5769, "loc": { "start": { - "line": 185, + "line": 195, "column": 4 }, "end": { - "line": 185, + "line": 195, "column": 10 } } @@ -25441,15 +25441,15 @@ "binop": null }, "value": "actualAjaxHandler", - "start": 5535, - "end": 5552, + "start": 5770, + "end": 5787, "loc": { "start": { - "line": 185, + "line": 195, "column": 11 }, "end": { - "line": 185, + "line": 195, "column": 28 } } @@ -25467,15 +25467,15 @@ "binop": null, "updateContext": null }, - "start": 5552, - "end": 5553, + "start": 5787, + "end": 5788, "loc": { "start": { - "line": 185, + "line": 195, "column": 28 }, "end": { - "line": 185, + "line": 195, "column": 29 } } @@ -25492,15 +25492,15 @@ "postfix": false, "binop": null }, - "start": 5556, - "end": 5557, + "start": 5791, + "end": 5792, "loc": { "start": { - "line": 186, + "line": 196, "column": 2 }, "end": { - "line": 186, + "line": 196, "column": 3 } } @@ -25508,15 +25508,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 5561, - "end": 5604, + "start": 5796, + "end": 5839, "loc": { "start": { - "line": 188, + "line": 198, "column": 2 }, "end": { - "line": 190, + "line": 200, "column": 5 } } @@ -25524,15 +25524,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 5608, - "end": 5669, + "start": 5843, + "end": 5904, "loc": { "start": { - "line": 192, + "line": 202, "column": 2 }, "end": { - "line": 196, + "line": 206, "column": 5 } } @@ -25550,15 +25550,15 @@ "binop": null }, "value": "get", - "start": 5672, - "end": 5675, + "start": 5907, + "end": 5910, "loc": { "start": { - "line": 197, + "line": 207, "column": 2 }, "end": { - "line": 197, + "line": 207, "column": 5 } } @@ -25576,15 +25576,15 @@ "binop": null }, "value": "total", - "start": 5676, - "end": 5681, + "start": 5911, + "end": 5916, "loc": { "start": { - "line": 197, + "line": 207, "column": 6 }, "end": { - "line": 197, + "line": 207, "column": 11 } } @@ -25601,15 +25601,15 @@ "postfix": false, "binop": null }, - "start": 5681, - "end": 5682, + "start": 5916, + "end": 5917, "loc": { "start": { - "line": 197, + "line": 207, "column": 11 }, "end": { - "line": 197, + "line": 207, "column": 12 } } @@ -25626,15 +25626,15 @@ "postfix": false, "binop": null }, - "start": 5682, - "end": 5683, + "start": 5917, + "end": 5918, "loc": { "start": { - "line": 197, + "line": 207, "column": 12 }, "end": { - "line": 197, + "line": 207, "column": 13 } } @@ -25651,15 +25651,15 @@ "postfix": false, "binop": null }, - "start": 5684, - "end": 5685, + "start": 5919, + "end": 5920, "loc": { "start": { - "line": 197, + "line": 207, "column": 14 }, "end": { - "line": 197, + "line": 207, "column": 15 } } @@ -25679,15 +25679,15 @@ "updateContext": null }, "value": "return", - "start": 5690, - "end": 5696, + "start": 5925, + "end": 5931, "loc": { "start": { - "line": 198, + "line": 208, "column": 4 }, "end": { - "line": 198, + "line": 208, "column": 10 } } @@ -25707,15 +25707,15 @@ "updateContext": null }, "value": "this", - "start": 5697, - "end": 5701, + "start": 5932, + "end": 5936, "loc": { "start": { - "line": 198, + "line": 208, "column": 11 }, "end": { - "line": 198, + "line": 208, "column": 15 } } @@ -25733,15 +25733,15 @@ "binop": null, "updateContext": null }, - "start": 5701, - "end": 5702, + "start": 5936, + "end": 5937, "loc": { "start": { - "line": 198, + "line": 208, "column": 15 }, "end": { - "line": 198, + "line": 208, "column": 16 } } @@ -25759,15 +25759,15 @@ "binop": null }, "value": "_total", - "start": 5702, - "end": 5708, + "start": 5937, + "end": 5943, "loc": { "start": { - "line": 198, + "line": 208, "column": 16 }, "end": { - "line": 198, + "line": 208, "column": 22 } } @@ -25785,15 +25785,15 @@ "binop": null, "updateContext": null }, - "start": 5708, - "end": 5709, + "start": 5943, + "end": 5944, "loc": { "start": { - "line": 198, + "line": 208, "column": 22 }, "end": { - "line": 198, + "line": 208, "column": 23 } } @@ -25810,15 +25810,15 @@ "postfix": false, "binop": null }, - "start": 5712, - "end": 5713, + "start": 5947, + "end": 5948, "loc": { "start": { - "line": 199, + "line": 209, "column": 2 }, "end": { - "line": 199, + "line": 209, "column": 3 } } @@ -25826,15 +25826,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 5717, - "end": 5778, + "start": 5952, + "end": 6013, "loc": { "start": { - "line": 201, + "line": 211, "column": 2 }, "end": { - "line": 205, + "line": 215, "column": 5 } } @@ -25852,15 +25852,15 @@ "binop": null }, "value": "get", - "start": 5781, - "end": 5784, + "start": 6016, + "end": 6019, "loc": { "start": { - "line": 206, + "line": 216, "column": 2 }, "end": { - "line": 206, + "line": 216, "column": 5 } } @@ -25878,15 +25878,15 @@ "binop": null }, "value": "data", - "start": 5785, - "end": 5789, + "start": 6020, + "end": 6024, "loc": { "start": { - "line": 206, + "line": 216, "column": 6 }, "end": { - "line": 206, + "line": 216, "column": 10 } } @@ -25903,15 +25903,15 @@ "postfix": false, "binop": null }, - "start": 5789, - "end": 5790, + "start": 6024, + "end": 6025, "loc": { "start": { - "line": 206, + "line": 216, "column": 10 }, "end": { - "line": 206, + "line": 216, "column": 11 } } @@ -25928,15 +25928,15 @@ "postfix": false, "binop": null }, - "start": 5790, - "end": 5791, + "start": 6025, + "end": 6026, "loc": { "start": { - "line": 206, + "line": 216, "column": 11 }, "end": { - "line": 206, + "line": 216, "column": 12 } } @@ -25953,15 +25953,15 @@ "postfix": false, "binop": null }, - "start": 5792, - "end": 5793, + "start": 6027, + "end": 6028, "loc": { "start": { - "line": 206, + "line": 216, "column": 13 }, "end": { - "line": 206, + "line": 216, "column": 14 } } @@ -25981,15 +25981,15 @@ "updateContext": null }, "value": "return", - "start": 5798, - "end": 5804, + "start": 6033, + "end": 6039, "loc": { "start": { - "line": 207, + "line": 217, "column": 4 }, "end": { - "line": 207, + "line": 217, "column": 10 } } @@ -26009,15 +26009,15 @@ "updateContext": null }, "value": "this", - "start": 5805, - "end": 5809, + "start": 6040, + "end": 6044, "loc": { "start": { - "line": 207, + "line": 217, "column": 11 }, "end": { - "line": 207, + "line": 217, "column": 15 } } @@ -26035,15 +26035,15 @@ "binop": null, "updateContext": null }, - "start": 5809, - "end": 5810, + "start": 6044, + "end": 6045, "loc": { "start": { - "line": 207, + "line": 217, "column": 15 }, "end": { - "line": 207, + "line": 217, "column": 16 } } @@ -26061,15 +26061,15 @@ "binop": null }, "value": "_data", - "start": 5810, - "end": 5815, + "start": 6045, + "end": 6050, "loc": { "start": { - "line": 207, + "line": 217, "column": 16 }, "end": { - "line": 207, + "line": 217, "column": 21 } } @@ -26087,15 +26087,15 @@ "binop": null, "updateContext": null }, - "start": 5815, - "end": 5816, + "start": 6050, + "end": 6051, "loc": { "start": { - "line": 207, + "line": 217, "column": 21 }, "end": { - "line": 207, + "line": 217, "column": 22 } } @@ -26112,15 +26112,15 @@ "postfix": false, "binop": null }, - "start": 5819, - "end": 5820, + "start": 6054, + "end": 6055, "loc": { "start": { - "line": 208, + "line": 218, "column": 2 }, "end": { - "line": 208, + "line": 218, "column": 3 } } @@ -26128,15 +26128,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 5824, - "end": 5865, + "start": 6059, + "end": 6100, "loc": { "start": { - "line": 210, + "line": 220, "column": 2 }, "end": { - "line": 213, + "line": 223, "column": 5 } } @@ -26154,15 +26154,15 @@ "binop": null }, "value": "async", - "start": 5868, - "end": 5873, + "start": 6103, + "end": 6108, "loc": { "start": { - "line": 214, + "line": 224, "column": 2 }, "end": { - "line": 214, + "line": 224, "column": 7 } } @@ -26180,15 +26180,15 @@ "binop": null }, "value": "_update", - "start": 5874, - "end": 5881, + "start": 6109, + "end": 6116, "loc": { "start": { - "line": 214, + "line": 224, "column": 8 }, "end": { - "line": 214, + "line": 224, "column": 15 } } @@ -26205,15 +26205,15 @@ "postfix": false, "binop": null }, - "start": 5881, - "end": 5882, + "start": 6116, + "end": 6117, "loc": { "start": { - "line": 214, + "line": 224, "column": 15 }, "end": { - "line": 214, + "line": 224, "column": 16 } } @@ -26230,15 +26230,15 @@ "postfix": false, "binop": null }, - "start": 5882, - "end": 5883, + "start": 6117, + "end": 6118, "loc": { "start": { - "line": 214, + "line": 224, "column": 16 }, "end": { - "line": 214, + "line": 224, "column": 17 } } @@ -26255,15 +26255,15 @@ "postfix": false, "binop": null }, - "start": 5884, - "end": 5885, + "start": 6119, + "end": 6120, "loc": { "start": { - "line": 214, + "line": 224, "column": 18 }, "end": { - "line": 214, + "line": 224, "column": 19 } } @@ -26283,15 +26283,15 @@ "updateContext": null }, "value": "const", - "start": 5890, - "end": 5895, + "start": 6125, + "end": 6130, "loc": { "start": { - "line": 215, + "line": 225, "column": 4 }, "end": { - "line": 215, + "line": 225, "column": 9 } } @@ -26309,15 +26309,15 @@ "binop": null }, "value": "requestStartArgs", - "start": 5896, - "end": 5912, + "start": 6131, + "end": 6147, "loc": { "start": { - "line": 215, + "line": 225, "column": 10 }, "end": { - "line": 215, + "line": 225, "column": 26 } } @@ -26336,15 +26336,15 @@ "updateContext": null }, "value": "=", - "start": 5913, - "end": 5914, + "start": 6148, + "end": 6149, "loc": { "start": { - "line": 215, + "line": 225, "column": 27 }, "end": { - "line": 215, + "line": 225, "column": 28 } } @@ -26361,15 +26361,15 @@ "postfix": false, "binop": null }, - "start": 5915, - "end": 5916, + "start": 6150, + "end": 6151, "loc": { "start": { - "line": 215, + "line": 225, "column": 29 }, "end": { - "line": 215, + "line": 225, "column": 30 } } @@ -26387,15 +26387,15 @@ "binop": null }, "value": "sender", - "start": 5923, - "end": 5929, + "start": 6158, + "end": 6164, "loc": { "start": { - "line": 216, + "line": 226, "column": 6 }, "end": { - "line": 216, + "line": 226, "column": 12 } } @@ -26413,15 +26413,15 @@ "binop": null, "updateContext": null }, - "start": 5929, - "end": 5930, + "start": 6164, + "end": 6165, "loc": { "start": { - "line": 216, + "line": 226, "column": 12 }, "end": { - "line": 216, + "line": 226, "column": 13 } } @@ -26441,15 +26441,15 @@ "updateContext": null }, "value": "this", - "start": 5931, - "end": 5935, + "start": 6166, + "end": 6170, "loc": { "start": { - "line": 216, + "line": 226, "column": 14 }, "end": { - "line": 216, + "line": 226, "column": 18 } } @@ -26467,15 +26467,15 @@ "binop": null, "updateContext": null }, - "start": 5935, - "end": 5936, + "start": 6170, + "end": 6171, "loc": { "start": { - "line": 216, + "line": 226, "column": 18 }, "end": { - "line": 216, + "line": 226, "column": 19 } } @@ -26493,15 +26493,15 @@ "binop": null }, "value": "prevented", - "start": 5943, - "end": 5952, + "start": 6178, + "end": 6187, "loc": { "start": { - "line": 217, + "line": 227, "column": 6 }, "end": { - "line": 217, + "line": 227, "column": 15 } } @@ -26519,15 +26519,15 @@ "binop": null, "updateContext": null }, - "start": 5952, - "end": 5953, + "start": 6187, + "end": 6188, "loc": { "start": { - "line": 217, + "line": 227, "column": 15 }, "end": { - "line": 217, + "line": 227, "column": 16 } } @@ -26547,15 +26547,15 @@ "updateContext": null }, "value": "false", - "start": 5954, - "end": 5959, + "start": 6189, + "end": 6194, "loc": { "start": { - "line": 217, + "line": 227, "column": 17 }, "end": { - "line": 217, + "line": 227, "column": 22 } } @@ -26573,15 +26573,15 @@ "binop": null, "updateContext": null }, - "start": 5959, - "end": 5960, + "start": 6194, + "end": 6195, "loc": { "start": { - "line": 217, + "line": 227, "column": 22 }, "end": { - "line": 217, + "line": 227, "column": 23 } } @@ -26599,15 +26599,15 @@ "binop": null }, "value": "preventDefault", - "start": 5967, - "end": 5981, + "start": 6202, + "end": 6216, "loc": { "start": { - "line": 218, + "line": 228, "column": 6 }, "end": { - "line": 218, + "line": 228, "column": 20 } } @@ -26624,15 +26624,15 @@ "postfix": false, "binop": null }, - "start": 5981, - "end": 5982, + "start": 6216, + "end": 6217, "loc": { "start": { - "line": 218, + "line": 228, "column": 20 }, "end": { - "line": 218, + "line": 228, "column": 21 } } @@ -26649,15 +26649,15 @@ "postfix": false, "binop": null }, - "start": 5982, - "end": 5983, + "start": 6217, + "end": 6218, "loc": { "start": { - "line": 218, + "line": 228, "column": 21 }, "end": { - "line": 218, + "line": 228, "column": 22 } } @@ -26674,15 +26674,15 @@ "postfix": false, "binop": null }, - "start": 5984, - "end": 5985, + "start": 6219, + "end": 6220, "loc": { "start": { - "line": 218, + "line": 228, "column": 23 }, "end": { - "line": 218, + "line": 228, "column": 24 } } @@ -26700,15 +26700,15 @@ "binop": null }, "value": "requestStartArgs", - "start": 5994, - "end": 6010, + "start": 6229, + "end": 6245, "loc": { "start": { - "line": 219, + "line": 229, "column": 8 }, "end": { - "line": 219, + "line": 229, "column": 24 } } @@ -26726,15 +26726,15 @@ "binop": null, "updateContext": null }, - "start": 6010, - "end": 6011, + "start": 6245, + "end": 6246, "loc": { "start": { - "line": 219, + "line": 229, "column": 24 }, "end": { - "line": 219, + "line": 229, "column": 25 } } @@ -26752,15 +26752,15 @@ "binop": null }, "value": "prevented", - "start": 6011, - "end": 6020, + "start": 6246, + "end": 6255, "loc": { "start": { - "line": 219, + "line": 229, "column": 25 }, "end": { - "line": 219, + "line": 229, "column": 34 } } @@ -26779,15 +26779,15 @@ "updateContext": null }, "value": "=", - "start": 6021, - "end": 6022, + "start": 6256, + "end": 6257, "loc": { "start": { - "line": 219, + "line": 229, "column": 35 }, "end": { - "line": 219, + "line": 229, "column": 36 } } @@ -26807,15 +26807,15 @@ "updateContext": null }, "value": "true", - "start": 6023, - "end": 6027, + "start": 6258, + "end": 6262, "loc": { "start": { - "line": 219, + "line": 229, "column": 37 }, "end": { - "line": 219, + "line": 229, "column": 41 } } @@ -26833,15 +26833,15 @@ "binop": null, "updateContext": null }, - "start": 6027, - "end": 6028, + "start": 6262, + "end": 6263, "loc": { "start": { - "line": 219, + "line": 229, "column": 41 }, "end": { - "line": 219, + "line": 229, "column": 42 } } @@ -26858,15 +26858,15 @@ "postfix": false, "binop": null }, - "start": 6035, - "end": 6036, + "start": 6270, + "end": 6271, "loc": { "start": { - "line": 220, + "line": 230, "column": 6 }, "end": { - "line": 220, + "line": 230, "column": 7 } } @@ -26884,15 +26884,15 @@ "binop": null, "updateContext": null }, - "start": 6036, - "end": 6037, + "start": 6271, + "end": 6272, "loc": { "start": { - "line": 220, + "line": 230, "column": 7 }, "end": { - "line": 220, + "line": 230, "column": 8 } } @@ -26909,15 +26909,15 @@ "postfix": false, "binop": null }, - "start": 6042, - "end": 6043, + "start": 6277, + "end": 6278, "loc": { "start": { - "line": 221, + "line": 231, "column": 4 }, "end": { - "line": 221, + "line": 231, "column": 5 } } @@ -26935,15 +26935,15 @@ "binop": null, "updateContext": null }, - "start": 6043, - "end": 6044, + "start": 6278, + "end": 6279, "loc": { "start": { - "line": 221, + "line": 231, "column": 5 }, "end": { - "line": 221, + "line": 231, "column": 6 } } @@ -26963,15 +26963,15 @@ "updateContext": null }, "value": "this", - "start": 6049, - "end": 6053, + "start": 6284, + "end": 6288, "loc": { "start": { - "line": 222, + "line": 232, "column": 4 }, "end": { - "line": 222, + "line": 232, "column": 8 } } @@ -26989,15 +26989,15 @@ "binop": null, "updateContext": null }, - "start": 6053, - "end": 6054, + "start": 6288, + "end": 6289, "loc": { "start": { - "line": 222, + "line": 232, "column": 8 }, "end": { - "line": 222, + "line": 232, "column": 9 } } @@ -27015,15 +27015,15 @@ "binop": null }, "value": "emit", - "start": 6054, - "end": 6058, + "start": 6289, + "end": 6293, "loc": { "start": { - "line": 222, + "line": 232, "column": 9 }, "end": { - "line": 222, + "line": 232, "column": 13 } } @@ -27040,15 +27040,15 @@ "postfix": false, "binop": null }, - "start": 6058, - "end": 6059, + "start": 6293, + "end": 6294, "loc": { "start": { - "line": 222, + "line": 232, "column": 13 }, "end": { - "line": 222, + "line": 232, "column": 14 } } @@ -27067,15 +27067,15 @@ "updateContext": null }, "value": "requeststart", - "start": 6059, - "end": 6073, + "start": 6294, + "end": 6308, "loc": { "start": { - "line": 222, + "line": 232, "column": 14 }, "end": { - "line": 222, + "line": 232, "column": 28 } } @@ -27093,15 +27093,15 @@ "binop": null, "updateContext": null }, - "start": 6073, - "end": 6074, + "start": 6308, + "end": 6309, "loc": { "start": { - "line": 222, + "line": 232, "column": 28 }, "end": { - "line": 222, + "line": 232, "column": 29 } } @@ -27119,15 +27119,15 @@ "binop": null }, "value": "requestStartArgs", - "start": 6075, - "end": 6091, + "start": 6310, + "end": 6326, "loc": { "start": { - "line": 222, + "line": 232, "column": 30 }, "end": { - "line": 222, + "line": 232, "column": 46 } } @@ -27144,15 +27144,15 @@ "postfix": false, "binop": null }, - "start": 6091, - "end": 6092, + "start": 6326, + "end": 6327, "loc": { "start": { - "line": 222, + "line": 232, "column": 46 }, "end": { - "line": 222, + "line": 232, "column": 47 } } @@ -27170,15 +27170,15 @@ "binop": null, "updateContext": null }, - "start": 6092, - "end": 6093, + "start": 6327, + "end": 6328, "loc": { "start": { - "line": 222, + "line": 232, "column": 47 }, "end": { - "line": 222, + "line": 232, "column": 48 } } @@ -27198,15 +27198,15 @@ "updateContext": null }, "value": "if", - "start": 6098, - "end": 6100, + "start": 6333, + "end": 6335, "loc": { "start": { - "line": 223, + "line": 233, "column": 4 }, "end": { - "line": 223, + "line": 233, "column": 6 } } @@ -27223,15 +27223,15 @@ "postfix": false, "binop": null }, - "start": 6101, - "end": 6102, + "start": 6336, + "end": 6337, "loc": { "start": { - "line": 223, + "line": 233, "column": 7 }, "end": { - "line": 223, + "line": 233, "column": 8 } } @@ -27249,15 +27249,15 @@ "binop": null }, "value": "requestStartArgs", - "start": 6102, - "end": 6118, + "start": 6337, + "end": 6353, "loc": { "start": { - "line": 223, + "line": 233, "column": 8 }, "end": { - "line": 223, + "line": 233, "column": 24 } } @@ -27275,15 +27275,15 @@ "binop": null, "updateContext": null }, - "start": 6118, - "end": 6119, + "start": 6353, + "end": 6354, "loc": { "start": { - "line": 223, + "line": 233, "column": 24 }, "end": { - "line": 223, + "line": 233, "column": 25 } } @@ -27301,15 +27301,15 @@ "binop": null }, "value": "prevented", - "start": 6119, - "end": 6128, + "start": 6354, + "end": 6363, "loc": { "start": { - "line": 223, + "line": 233, "column": 25 }, "end": { - "line": 223, + "line": 233, "column": 34 } } @@ -27326,15 +27326,15 @@ "postfix": false, "binop": null }, - "start": 6128, - "end": 6129, + "start": 6363, + "end": 6364, "loc": { "start": { - "line": 223, + "line": 233, "column": 34 }, "end": { - "line": 223, + "line": 233, "column": 35 } } @@ -27351,15 +27351,15 @@ "postfix": false, "binop": null }, - "start": 6130, - "end": 6131, + "start": 6365, + "end": 6366, "loc": { "start": { - "line": 223, + "line": 233, "column": 36 }, "end": { - "line": 223, + "line": 233, "column": 37 } } @@ -27379,15 +27379,15 @@ "updateContext": null }, "value": "return", - "start": 6138, - "end": 6144, + "start": 6373, + "end": 6379, "loc": { "start": { - "line": 224, + "line": 234, "column": 6 }, "end": { - "line": 224, + "line": 234, "column": 12 } } @@ -27407,15 +27407,15 @@ "updateContext": null }, "value": "null", - "start": 6145, - "end": 6149, + "start": 6380, + "end": 6384, "loc": { "start": { - "line": 224, + "line": 234, "column": 13 }, "end": { - "line": 224, + "line": 234, "column": 17 } } @@ -27433,15 +27433,15 @@ "binop": null, "updateContext": null }, - "start": 6149, - "end": 6150, + "start": 6384, + "end": 6385, "loc": { "start": { - "line": 224, + "line": 234, "column": 17 }, "end": { - "line": 224, + "line": 234, "column": 18 } } @@ -27458,15 +27458,15 @@ "postfix": false, "binop": null }, - "start": 6155, - "end": 6156, + "start": 6390, + "end": 6391, "loc": { "start": { - "line": 225, + "line": 235, "column": 4 }, "end": { - "line": 225, + "line": 235, "column": 5 } } @@ -27486,15 +27486,15 @@ "updateContext": null }, "value": "const", - "start": 6161, - "end": 6166, + "start": 6396, + "end": 6401, "loc": { "start": { - "line": 226, + "line": 236, "column": 4 }, "end": { - "line": 226, + "line": 236, "column": 9 } } @@ -27512,15 +27512,15 @@ "binop": null }, "value": "ajaxHandler", - "start": 6167, - "end": 6178, + "start": 6402, + "end": 6413, "loc": { "start": { - "line": 226, + "line": 236, "column": 10 }, "end": { - "line": 226, + "line": 236, "column": 21 } } @@ -27539,15 +27539,15 @@ "updateContext": null }, "value": "=", - "start": 6179, - "end": 6180, + "start": 6414, + "end": 6415, "loc": { "start": { - "line": 226, + "line": 236, "column": 22 }, "end": { - "line": 226, + "line": 236, "column": 23 } } @@ -27567,15 +27567,15 @@ "updateContext": null }, "value": "this", - "start": 6181, - "end": 6185, + "start": 6416, + "end": 6420, "loc": { "start": { - "line": 226, + "line": 236, "column": 24 }, "end": { - "line": 226, + "line": 236, "column": 28 } } @@ -27593,15 +27593,15 @@ "binop": null, "updateContext": null }, - "start": 6185, - "end": 6186, + "start": 6420, + "end": 6421, "loc": { "start": { - "line": 226, + "line": 236, "column": 28 }, "end": { - "line": 226, + "line": 236, "column": 29 } } @@ -27619,15 +27619,15 @@ "binop": null }, "value": "_buildAjaxHandler", - "start": 6186, - "end": 6203, + "start": 6421, + "end": 6438, "loc": { "start": { - "line": 226, + "line": 236, "column": 29 }, "end": { - "line": 226, + "line": 236, "column": 46 } } @@ -27644,15 +27644,15 @@ "postfix": false, "binop": null }, - "start": 6203, - "end": 6204, + "start": 6438, + "end": 6439, "loc": { "start": { - "line": 226, + "line": 236, "column": 46 }, "end": { - "line": 226, + "line": 236, "column": 47 } } @@ -27669,15 +27669,15 @@ "postfix": false, "binop": null }, - "start": 6204, - "end": 6205, + "start": 6439, + "end": 6440, "loc": { "start": { - "line": 226, + "line": 236, "column": 47 }, "end": { - "line": 226, + "line": 236, "column": 48 } } @@ -27695,15 +27695,15 @@ "binop": null, "updateContext": null }, - "start": 6205, - "end": 6206, + "start": 6440, + "end": 6441, "loc": { "start": { - "line": 226, + "line": 236, "column": 48 }, "end": { - "line": 226, + "line": 236, "column": 49 } } @@ -27723,15 +27723,15 @@ "updateContext": null }, "value": "const", - "start": 6211, - "end": 6216, + "start": 6446, + "end": 6451, "loc": { "start": { - "line": 227, + "line": 237, "column": 4 }, "end": { - "line": 227, + "line": 237, "column": 9 } } @@ -27749,15 +27749,15 @@ "binop": null }, "value": "response", - "start": 6217, - "end": 6225, + "start": 6452, + "end": 6460, "loc": { "start": { - "line": 227, + "line": 237, "column": 10 }, "end": { - "line": 227, + "line": 237, "column": 18 } } @@ -27776,15 +27776,15 @@ "updateContext": null }, "value": "=", - "start": 6226, - "end": 6227, + "start": 6461, + "end": 6462, "loc": { "start": { - "line": 227, + "line": 237, "column": 19 }, "end": { - "line": 227, + "line": 237, "column": 20 } } @@ -27802,15 +27802,15 @@ "binop": null }, "value": "await", - "start": 6228, - "end": 6233, + "start": 6463, + "end": 6468, "loc": { "start": { - "line": 227, + "line": 237, "column": 21 }, "end": { - "line": 227, + "line": 237, "column": 26 } } @@ -27828,15 +27828,15 @@ "binop": null }, "value": "ajaxHandler", - "start": 6234, - "end": 6245, + "start": 6469, + "end": 6480, "loc": { "start": { - "line": 227, + "line": 237, "column": 27 }, "end": { - "line": 227, + "line": 237, "column": 38 } } @@ -27854,15 +27854,15 @@ "binop": null, "updateContext": null }, - "start": 6245, - "end": 6246, + "start": 6480, + "end": 6481, "loc": { "start": { - "line": 227, + "line": 237, "column": 38 }, "end": { - "line": 227, + "line": 237, "column": 39 } } @@ -27880,15 +27880,15 @@ "binop": null }, "value": "call", - "start": 6246, - "end": 6250, + "start": 6481, + "end": 6485, "loc": { "start": { - "line": 227, + "line": 237, "column": 39 }, "end": { - "line": 227, + "line": 237, "column": 43 } } @@ -27905,15 +27905,15 @@ "postfix": false, "binop": null }, - "start": 6250, - "end": 6251, + "start": 6485, + "end": 6486, "loc": { "start": { - "line": 227, + "line": 237, "column": 43 }, "end": { - "line": 227, + "line": 237, "column": 44 } } @@ -27933,15 +27933,15 @@ "updateContext": null }, "value": "this", - "start": 6251, - "end": 6255, + "start": 6486, + "end": 6490, "loc": { "start": { - "line": 227, + "line": 237, "column": 44 }, "end": { - "line": 227, + "line": 237, "column": 48 } } @@ -27958,15 +27958,15 @@ "postfix": false, "binop": null }, - "start": 6255, - "end": 6256, + "start": 6490, + "end": 6491, "loc": { "start": { - "line": 227, + "line": 237, "column": 48 }, "end": { - "line": 227, + "line": 237, "column": 49 } } @@ -27984,15 +27984,15 @@ "binop": null, "updateContext": null }, - "start": 6256, - "end": 6257, + "start": 6491, + "end": 6492, "loc": { "start": { - "line": 227, + "line": 237, "column": 49 }, "end": { - "line": 227, + "line": 237, "column": 50 } } @@ -28012,15 +28012,15 @@ "updateContext": null }, "value": "this", - "start": 6262, - "end": 6266, + "start": 6497, + "end": 6501, "loc": { "start": { - "line": 228, + "line": 238, "column": 4 }, "end": { - "line": 228, + "line": 238, "column": 8 } } @@ -28038,15 +28038,15 @@ "binop": null, "updateContext": null }, - "start": 6266, - "end": 6267, + "start": 6501, + "end": 6502, "loc": { "start": { - "line": 228, + "line": 238, "column": 8 }, "end": { - "line": 228, + "line": 238, "column": 9 } } @@ -28064,15 +28064,15 @@ "binop": null }, "value": "emit", - "start": 6267, - "end": 6271, + "start": 6502, + "end": 6506, "loc": { "start": { - "line": 228, + "line": 238, "column": 9 }, "end": { - "line": 228, + "line": 238, "column": 13 } } @@ -28089,15 +28089,15 @@ "postfix": false, "binop": null }, - "start": 6271, - "end": 6272, + "start": 6506, + "end": 6507, "loc": { "start": { - "line": 228, + "line": 238, "column": 13 }, "end": { - "line": 228, + "line": 238, "column": 14 } } @@ -28116,15 +28116,15 @@ "updateContext": null }, "value": "requestend", - "start": 6272, - "end": 6284, + "start": 6507, + "end": 6519, "loc": { "start": { - "line": 228, + "line": 238, "column": 14 }, "end": { - "line": 228, + "line": 238, "column": 26 } } @@ -28142,15 +28142,15 @@ "binop": null, "updateContext": null }, - "start": 6284, - "end": 6285, + "start": 6519, + "end": 6520, "loc": { "start": { - "line": 228, + "line": 238, "column": 26 }, "end": { - "line": 228, + "line": 238, "column": 27 } } @@ -28167,15 +28167,15 @@ "postfix": false, "binop": null }, - "start": 6286, - "end": 6287, + "start": 6521, + "end": 6522, "loc": { "start": { - "line": 228, + "line": 238, "column": 28 }, "end": { - "line": 228, + "line": 238, "column": 29 } } @@ -28193,15 +28193,15 @@ "binop": null }, "value": "sender", - "start": 6294, - "end": 6300, + "start": 6529, + "end": 6535, "loc": { "start": { - "line": 229, + "line": 239, "column": 6 }, "end": { - "line": 229, + "line": 239, "column": 12 } } @@ -28219,15 +28219,15 @@ "binop": null, "updateContext": null }, - "start": 6300, - "end": 6301, + "start": 6535, + "end": 6536, "loc": { "start": { - "line": 229, + "line": 239, "column": 12 }, "end": { - "line": 229, + "line": 239, "column": 13 } } @@ -28247,15 +28247,15 @@ "updateContext": null }, "value": "this", - "start": 6302, - "end": 6306, + "start": 6537, + "end": 6541, "loc": { "start": { - "line": 229, + "line": 239, "column": 14 }, "end": { - "line": 229, + "line": 239, "column": 18 } } @@ -28273,15 +28273,15 @@ "binop": null, "updateContext": null }, - "start": 6306, - "end": 6307, + "start": 6541, + "end": 6542, "loc": { "start": { - "line": 229, + "line": 239, "column": 18 }, "end": { - "line": 229, + "line": 239, "column": 19 } } @@ -28299,15 +28299,15 @@ "binop": null }, "value": "response", - "start": 6314, - "end": 6322, + "start": 6549, + "end": 6557, "loc": { "start": { - "line": 230, + "line": 240, "column": 6 }, "end": { - "line": 230, + "line": 240, "column": 14 } } @@ -28325,15 +28325,15 @@ "binop": null, "updateContext": null }, - "start": 6322, - "end": 6323, + "start": 6557, + "end": 6558, "loc": { "start": { - "line": 230, + "line": 240, "column": 14 }, "end": { - "line": 230, + "line": 240, "column": 15 } } @@ -28350,15 +28350,15 @@ "postfix": false, "binop": null }, - "start": 6328, - "end": 6329, + "start": 6563, + "end": 6564, "loc": { "start": { - "line": 231, + "line": 241, "column": 4 }, "end": { - "line": 231, + "line": 241, "column": 5 } } @@ -28375,15 +28375,15 @@ "postfix": false, "binop": null }, - "start": 6329, - "end": 6330, + "start": 6564, + "end": 6565, "loc": { "start": { - "line": 231, + "line": 241, "column": 5 }, "end": { - "line": 231, + "line": 241, "column": 6 } } @@ -28401,15 +28401,15 @@ "binop": null, "updateContext": null }, - "start": 6330, - "end": 6331, + "start": 6565, + "end": 6566, "loc": { "start": { - "line": 231, + "line": 241, "column": 6 }, "end": { - "line": 231, + "line": 241, "column": 7 } } @@ -28417,15 +28417,15 @@ { "type": "CommentLine", "value": " If not provided an object, use the default mapper", - "start": 6336, - "end": 6388, + "start": 6571, + "end": 6623, "loc": { "start": { - "line": 232, + "line": 242, "column": 4 }, "end": { - "line": 232, + "line": 242, "column": 56 } } @@ -28445,15 +28445,15 @@ "updateContext": null }, "value": "const", - "start": 6393, - "end": 6398, + "start": 6628, + "end": 6633, "loc": { "start": { - "line": 233, + "line": 243, "column": 4 }, "end": { - "line": 233, + "line": 243, "column": 9 } } @@ -28471,15 +28471,15 @@ "binop": null }, "value": "mapper", - "start": 6399, - "end": 6405, + "start": 6634, + "end": 6640, "loc": { "start": { - "line": 233, + "line": 243, "column": 10 }, "end": { - "line": 233, + "line": 243, "column": 16 } } @@ -28498,15 +28498,15 @@ "updateContext": null }, "value": "=", - "start": 6406, - "end": 6407, + "start": 6641, + "end": 6642, "loc": { "start": { - "line": 233, + "line": 243, "column": 17 }, "end": { - "line": 233, + "line": 243, "column": 18 } } @@ -28526,15 +28526,15 @@ "updateContext": null }, "value": "this", - "start": 6408, - "end": 6412, + "start": 6643, + "end": 6647, "loc": { "start": { - "line": 233, + "line": 243, "column": 19 }, "end": { - "line": 233, + "line": 243, "column": 23 } } @@ -28552,15 +28552,15 @@ "binop": null, "updateContext": null }, - "start": 6412, - "end": 6413, + "start": 6647, + "end": 6648, "loc": { "start": { - "line": 233, + "line": 243, "column": 23 }, "end": { - "line": 233, + "line": 243, "column": 24 } } @@ -28578,15 +28578,15 @@ "binop": null }, "value": "ajax", - "start": 6413, - "end": 6417, + "start": 6648, + "end": 6652, "loc": { "start": { - "line": 233, + "line": 243, "column": 24 }, "end": { - "line": 233, + "line": 243, "column": 28 } } @@ -28604,15 +28604,15 @@ "binop": null, "updateContext": null }, - "start": 6417, - "end": 6418, + "start": 6652, + "end": 6653, "loc": { "start": { - "line": 233, + "line": 243, "column": 28 }, "end": { - "line": 233, + "line": 243, "column": 29 } } @@ -28630,15 +28630,15 @@ "binop": null }, "value": "mapper", - "start": 6418, - "end": 6424, + "start": 6653, + "end": 6659, "loc": { "start": { - "line": 233, + "line": 243, "column": 29 }, "end": { - "line": 233, + "line": 243, "column": 35 } } @@ -28657,15 +28657,15 @@ "updateContext": null }, "value": "||", - "start": 6425, - "end": 6427, + "start": 6660, + "end": 6662, "loc": { "start": { - "line": 233, + "line": 243, "column": 36 }, "end": { - "line": 233, + "line": 243, "column": 38 } } @@ -28683,15 +28683,15 @@ "binop": null }, "value": "AjaxDatasource", - "start": 6428, - "end": 6442, + "start": 6663, + "end": 6677, "loc": { "start": { - "line": 233, + "line": 243, "column": 39 }, "end": { - "line": 233, + "line": 243, "column": 53 } } @@ -28709,15 +28709,15 @@ "binop": null, "updateContext": null }, - "start": 6442, - "end": 6443, + "start": 6677, + "end": 6678, "loc": { "start": { - "line": 233, + "line": 243, "column": 53 }, "end": { - "line": 233, + "line": 243, "column": 54 } } @@ -28735,15 +28735,15 @@ "binop": null }, "value": "prototype", - "start": 6443, - "end": 6452, + "start": 6678, + "end": 6687, "loc": { "start": { - "line": 233, + "line": 243, "column": 54 }, "end": { - "line": 233, + "line": 243, "column": 63 } } @@ -28761,15 +28761,15 @@ "binop": null, "updateContext": null }, - "start": 6452, - "end": 6453, + "start": 6687, + "end": 6688, "loc": { "start": { - "line": 233, + "line": 243, "column": 63 }, "end": { - "line": 233, + "line": 243, "column": 64 } } @@ -28787,15 +28787,15 @@ "binop": null }, "value": "defaults", - "start": 6453, - "end": 6461, + "start": 6688, + "end": 6696, "loc": { "start": { - "line": 233, + "line": 243, "column": 64 }, "end": { - "line": 233, + "line": 243, "column": 72 } } @@ -28813,15 +28813,15 @@ "binop": null, "updateContext": null }, - "start": 6461, - "end": 6462, + "start": 6696, + "end": 6697, "loc": { "start": { - "line": 233, + "line": 243, "column": 72 }, "end": { - "line": 233, + "line": 243, "column": 73 } } @@ -28839,15 +28839,15 @@ "binop": null }, "value": "ajax", - "start": 6462, - "end": 6466, + "start": 6697, + "end": 6701, "loc": { "start": { - "line": 233, + "line": 243, "column": 73 }, "end": { - "line": 233, + "line": 243, "column": 77 } } @@ -28865,15 +28865,15 @@ "binop": null, "updateContext": null }, - "start": 6466, - "end": 6467, + "start": 6701, + "end": 6702, "loc": { "start": { - "line": 233, + "line": 243, "column": 77 }, "end": { - "line": 233, + "line": 243, "column": 78 } } @@ -28891,15 +28891,15 @@ "binop": null }, "value": "mapper", - "start": 6467, - "end": 6473, + "start": 6702, + "end": 6708, "loc": { "start": { - "line": 233, + "line": 243, "column": 78 }, "end": { - "line": 233, + "line": 243, "column": 84 } } @@ -28917,15 +28917,15 @@ "binop": null, "updateContext": null }, - "start": 6473, - "end": 6474, + "start": 6708, + "end": 6709, "loc": { "start": { - "line": 233, + "line": 243, "column": 84 }, "end": { - "line": 233, + "line": 243, "column": 85 } } @@ -28945,15 +28945,15 @@ "updateContext": null }, "value": "const", - "start": 6479, - "end": 6484, + "start": 6714, + "end": 6719, "loc": { "start": { - "line": 234, + "line": 244, "column": 4 }, "end": { - "line": 234, + "line": 244, "column": 9 } } @@ -28971,15 +28971,15 @@ "binop": null }, "value": "mappedObject", - "start": 6485, - "end": 6497, + "start": 6720, + "end": 6732, "loc": { "start": { - "line": 234, + "line": 244, "column": 10 }, "end": { - "line": 234, + "line": 244, "column": 22 } } @@ -28998,15 +28998,15 @@ "updateContext": null }, "value": "=", - "start": 6498, - "end": 6499, + "start": 6733, + "end": 6734, "loc": { "start": { - "line": 234, + "line": 244, "column": 23 }, "end": { - "line": 234, + "line": 244, "column": 24 } } @@ -29024,15 +29024,15 @@ "binop": null }, "value": "mapper", - "start": 6500, - "end": 6506, + "start": 6735, + "end": 6741, "loc": { "start": { - "line": 234, + "line": 244, "column": 25 }, "end": { - "line": 234, + "line": 244, "column": 31 } } @@ -29050,15 +29050,15 @@ "binop": null, "updateContext": null }, - "start": 6506, - "end": 6507, + "start": 6741, + "end": 6742, "loc": { "start": { - "line": 234, + "line": 244, "column": 31 }, "end": { - "line": 234, + "line": 244, "column": 32 } } @@ -29076,15 +29076,15 @@ "binop": null }, "value": "call", - "start": 6507, - "end": 6511, + "start": 6742, + "end": 6746, "loc": { "start": { - "line": 234, + "line": 244, "column": 32 }, "end": { - "line": 234, + "line": 244, "column": 36 } } @@ -29101,15 +29101,15 @@ "postfix": false, "binop": null }, - "start": 6511, - "end": 6512, + "start": 6746, + "end": 6747, "loc": { "start": { - "line": 234, + "line": 244, "column": 36 }, "end": { - "line": 234, + "line": 244, "column": 37 } } @@ -29129,15 +29129,15 @@ "updateContext": null }, "value": "this", - "start": 6512, - "end": 6516, + "start": 6747, + "end": 6751, "loc": { "start": { - "line": 234, + "line": 244, "column": 37 }, "end": { - "line": 234, + "line": 244, "column": 41 } } @@ -29155,15 +29155,15 @@ "binop": null, "updateContext": null }, - "start": 6516, - "end": 6517, + "start": 6751, + "end": 6752, "loc": { "start": { - "line": 234, + "line": 244, "column": 41 }, "end": { - "line": 234, + "line": 244, "column": 42 } } @@ -29181,15 +29181,15 @@ "binop": null }, "value": "response", - "start": 6518, - "end": 6526, + "start": 6753, + "end": 6761, "loc": { "start": { - "line": 234, + "line": 244, "column": 43 }, "end": { - "line": 234, + "line": 244, "column": 51 } } @@ -29206,15 +29206,15 @@ "postfix": false, "binop": null }, - "start": 6526, - "end": 6527, + "start": 6761, + "end": 6762, "loc": { "start": { - "line": 234, + "line": 244, "column": 51 }, "end": { - "line": 234, + "line": 244, "column": 52 } } @@ -29232,15 +29232,15 @@ "binop": null, "updateContext": null }, - "start": 6527, - "end": 6528, + "start": 6762, + "end": 6763, "loc": { "start": { - "line": 234, + "line": 244, "column": 52 }, "end": { - "line": 234, + "line": 244, "column": 53 } } @@ -29260,15 +29260,15 @@ "updateContext": null }, "value": "this", - "start": 6533, - "end": 6537, + "start": 6768, + "end": 6772, "loc": { "start": { - "line": 235, + "line": 245, "column": 4 }, "end": { - "line": 235, + "line": 245, "column": 8 } } @@ -29286,15 +29286,15 @@ "binop": null, "updateContext": null }, - "start": 6537, - "end": 6538, + "start": 6772, + "end": 6773, "loc": { "start": { - "line": 235, + "line": 245, "column": 8 }, "end": { - "line": 235, + "line": 245, "column": 9 } } @@ -29312,15 +29312,15 @@ "binop": null }, "value": "_data", - "start": 6538, - "end": 6543, + "start": 6773, + "end": 6778, "loc": { "start": { - "line": 235, + "line": 245, "column": 9 }, "end": { - "line": 235, + "line": 245, "column": 14 } } @@ -29339,15 +29339,15 @@ "updateContext": null }, "value": "=", - "start": 6544, - "end": 6545, + "start": 6779, + "end": 6780, "loc": { "start": { - "line": 235, + "line": 245, "column": 15 }, "end": { - "line": 235, + "line": 245, "column": 16 } } @@ -29365,15 +29365,15 @@ "binop": null }, "value": "mappedObject", - "start": 6546, - "end": 6558, + "start": 6781, + "end": 6793, "loc": { "start": { - "line": 235, + "line": 245, "column": 17 }, "end": { - "line": 235, + "line": 245, "column": 29 } } @@ -29391,15 +29391,15 @@ "binop": null, "updateContext": null }, - "start": 6558, - "end": 6559, + "start": 6793, + "end": 6794, "loc": { "start": { - "line": 235, + "line": 245, "column": 29 }, "end": { - "line": 235, + "line": 245, "column": 30 } } @@ -29417,15 +29417,15 @@ "binop": null }, "value": "data", - "start": 6559, - "end": 6563, + "start": 6794, + "end": 6798, "loc": { "start": { - "line": 235, + "line": 245, "column": 30 }, "end": { - "line": 235, + "line": 245, "column": 34 } } @@ -29443,15 +29443,15 @@ "binop": null, "updateContext": null }, - "start": 6563, - "end": 6564, + "start": 6798, + "end": 6799, "loc": { "start": { - "line": 235, + "line": 245, "column": 34 }, "end": { - "line": 235, + "line": 245, "column": 35 } } @@ -29471,15 +29471,15 @@ "updateContext": null }, "value": "this", - "start": 6569, - "end": 6573, + "start": 6804, + "end": 6808, "loc": { "start": { - "line": 236, + "line": 246, "column": 4 }, "end": { - "line": 236, + "line": 246, "column": 8 } } @@ -29497,15 +29497,15 @@ "binop": null, "updateContext": null }, - "start": 6573, - "end": 6574, + "start": 6808, + "end": 6809, "loc": { "start": { - "line": 236, + "line": 246, "column": 8 }, "end": { - "line": 236, + "line": 246, "column": 9 } } @@ -29523,15 +29523,15 @@ "binop": null }, "value": "_total", - "start": 6574, - "end": 6580, + "start": 6809, + "end": 6815, "loc": { "start": { - "line": 236, + "line": 246, "column": 9 }, "end": { - "line": 236, + "line": 246, "column": 15 } } @@ -29550,15 +29550,15 @@ "updateContext": null }, "value": "=", - "start": 6581, - "end": 6582, + "start": 6816, + "end": 6817, "loc": { "start": { - "line": 236, + "line": 246, "column": 16 }, "end": { - "line": 236, + "line": 246, "column": 17 } } @@ -29576,15 +29576,15 @@ "binop": null }, "value": "mappedObject", - "start": 6583, - "end": 6595, + "start": 6818, + "end": 6830, "loc": { "start": { - "line": 236, + "line": 246, "column": 18 }, "end": { - "line": 236, + "line": 246, "column": 30 } } @@ -29602,15 +29602,15 @@ "binop": null, "updateContext": null }, - "start": 6595, - "end": 6596, + "start": 6830, + "end": 6831, "loc": { "start": { - "line": 236, + "line": 246, "column": 30 }, "end": { - "line": 236, + "line": 246, "column": 31 } } @@ -29628,15 +29628,15 @@ "binop": null }, "value": "total", - "start": 6596, - "end": 6601, + "start": 6831, + "end": 6836, "loc": { "start": { - "line": 236, + "line": 246, "column": 31 }, "end": { - "line": 236, + "line": 246, "column": 36 } } @@ -29654,15 +29654,15 @@ "binop": null, "updateContext": null }, - "start": 6601, - "end": 6602, + "start": 6836, + "end": 6837, "loc": { "start": { - "line": 236, + "line": 246, "column": 36 }, "end": { - "line": 236, + "line": 246, "column": 37 } } @@ -29682,15 +29682,15 @@ "updateContext": null }, "value": "return", - "start": 6607, - "end": 6613, + "start": 6842, + "end": 6848, "loc": { "start": { - "line": 237, + "line": 247, "column": 4 }, "end": { - "line": 237, + "line": 247, "column": 10 } } @@ -29708,15 +29708,15 @@ "binop": null }, "value": "response", - "start": 6614, - "end": 6622, + "start": 6849, + "end": 6857, "loc": { "start": { - "line": 237, + "line": 247, "column": 11 }, "end": { - "line": 237, + "line": 247, "column": 19 } } @@ -29734,15 +29734,15 @@ "binop": null, "updateContext": null }, - "start": 6622, - "end": 6623, + "start": 6857, + "end": 6858, "loc": { "start": { - "line": 237, + "line": 247, "column": 19 }, "end": { - "line": 237, + "line": 247, "column": 20 } } @@ -29759,15 +29759,15 @@ "postfix": false, "binop": null }, - "start": 6626, - "end": 6627, + "start": 6861, + "end": 6862, "loc": { "start": { - "line": 238, + "line": 248, "column": 2 }, "end": { - "line": 238, + "line": 248, "column": 3 } } @@ -29784,15 +29784,15 @@ "postfix": false, "binop": null }, - "start": 6628, - "end": 6629, + "start": 6863, + "end": 6864, "loc": { "start": { - "line": 239, + "line": 249, "column": 0 }, "end": { - "line": 239, + "line": 249, "column": 1 } } @@ -29810,15 +29810,15 @@ "binop": null }, "value": "AjaxDatasource", - "start": 6631, - "end": 6645, + "start": 6866, + "end": 6880, "loc": { "start": { - "line": 241, + "line": 251, "column": 0 }, "end": { - "line": 241, + "line": 251, "column": 14 } } @@ -29836,15 +29836,15 @@ "binop": null, "updateContext": null }, - "start": 6645, - "end": 6646, + "start": 6880, + "end": 6881, "loc": { "start": { - "line": 241, + "line": 251, "column": 14 }, "end": { - "line": 241, + "line": 251, "column": 15 } } @@ -29862,15 +29862,15 @@ "binop": null }, "value": "prototype", - "start": 6646, - "end": 6655, + "start": 6881, + "end": 6890, "loc": { "start": { - "line": 241, + "line": 251, "column": 15 }, "end": { - "line": 241, + "line": 251, "column": 24 } } @@ -29888,15 +29888,15 @@ "binop": null, "updateContext": null }, - "start": 6655, - "end": 6656, + "start": 6890, + "end": 6891, "loc": { "start": { - "line": 241, + "line": 251, "column": 24 }, "end": { - "line": 241, + "line": 251, "column": 25 } } @@ -29914,15 +29914,15 @@ "binop": null }, "value": "defaults", - "start": 6656, - "end": 6664, + "start": 6891, + "end": 6899, "loc": { "start": { - "line": 241, + "line": 251, "column": 25 }, "end": { - "line": 241, + "line": 251, "column": 33 } } @@ -29941,15 +29941,15 @@ "updateContext": null }, "value": "=", - "start": 6665, - "end": 6666, + "start": 6900, + "end": 6901, "loc": { "start": { - "line": 241, + "line": 251, "column": 34 }, "end": { - "line": 241, + "line": 251, "column": 35 } } @@ -29966,15 +29966,15 @@ "postfix": false, "binop": null }, - "start": 6667, - "end": 6668, + "start": 6902, + "end": 6903, "loc": { "start": { - "line": 241, + "line": 251, "column": 36 }, "end": { - "line": 241, + "line": 251, "column": 37 } } @@ -29992,15 +29992,15 @@ "binop": null }, "value": "queryBuilder", - "start": 6671, - "end": 6683, + "start": 6906, + "end": 6918, "loc": { "start": { - "line": 242, + "line": 252, "column": 2 }, "end": { - "line": 242, + "line": 252, "column": 14 } } @@ -30018,15 +30018,15 @@ "binop": null, "updateContext": null }, - "start": 6683, - "end": 6684, + "start": 6918, + "end": 6919, "loc": { "start": { - "line": 242, + "line": 252, "column": 14 }, "end": { - "line": 242, + "line": 252, "column": 15 } } @@ -30043,15 +30043,15 @@ "postfix": false, "binop": null }, - "start": 6685, - "end": 6686, + "start": 6920, + "end": 6921, "loc": { "start": { - "line": 242, + "line": 252, "column": 16 }, "end": { - "line": 242, + "line": 252, "column": 17 } } @@ -30068,15 +30068,15 @@ "postfix": false, "binop": null }, - "start": 6686, - "end": 6687, + "start": 6921, + "end": 6922, "loc": { "start": { - "line": 242, + "line": 252, "column": 17 }, "end": { - "line": 242, + "line": 252, "column": 18 } } @@ -30094,15 +30094,15 @@ "binop": null, "updateContext": null }, - "start": 6687, - "end": 6688, + "start": 6922, + "end": 6923, "loc": { "start": { - "line": 242, + "line": 252, "column": 18 }, "end": { - "line": 242, + "line": 252, "column": 19 } } @@ -30110,15 +30110,15 @@ { "type": "CommentLine", "value": " ajax can be an object, function, or even a simple string", - "start": 6691, - "end": 6750, + "start": 6926, + "end": 6985, "loc": { "start": { - "line": 243, + "line": 253, "column": 2 }, "end": { - "line": 243, + "line": 253, "column": 61 } } @@ -30136,15 +30136,15 @@ "binop": null }, "value": "ajax", - "start": 6753, - "end": 6757, + "start": 6988, + "end": 6992, "loc": { "start": { - "line": 244, + "line": 254, "column": 2 }, "end": { - "line": 244, + "line": 254, "column": 6 } } @@ -30162,15 +30162,15 @@ "binop": null, "updateContext": null }, - "start": 6757, - "end": 6758, + "start": 6992, + "end": 6993, "loc": { "start": { - "line": 244, + "line": 254, "column": 6 }, "end": { - "line": 244, + "line": 254, "column": 7 } } @@ -30187,15 +30187,15 @@ "postfix": false, "binop": null }, - "start": 6759, - "end": 6760, + "start": 6994, + "end": 6995, "loc": { "start": { - "line": 244, + "line": 254, "column": 8 }, "end": { - "line": 244, + "line": 254, "column": 9 } } @@ -30203,15 +30203,15 @@ { "type": "CommentLine", "value": " Axios options object", - "start": 6761, - "end": 6784, + "start": 6996, + "end": 7019, "loc": { "start": { - "line": 244, + "line": 254, "column": 10 }, "end": { - "line": 244, + "line": 254, "column": 33 } } @@ -30219,15 +30219,15 @@ { "type": "CommentLine", "value": " Maps the response to return the data in an expected format", - "start": 6789, - "end": 6850, + "start": 7024, + "end": 7085, "loc": { "start": { - "line": 245, + "line": 255, "column": 4 }, "end": { - "line": 245, + "line": 255, "column": 65 } } @@ -30245,15 +30245,15 @@ "binop": null }, "value": "mapper", - "start": 6855, - "end": 6861, + "start": 7090, + "end": 7096, "loc": { "start": { - "line": 246, + "line": 256, "column": 4 }, "end": { - "line": 246, + "line": 256, "column": 10 } } @@ -30270,15 +30270,15 @@ "postfix": false, "binop": null }, - "start": 6861, - "end": 6862, + "start": 7096, + "end": 7097, "loc": { "start": { - "line": 246, + "line": 256, "column": 10 }, "end": { - "line": 246, + "line": 256, "column": 11 } } @@ -30296,15 +30296,15 @@ "binop": null }, "value": "response", - "start": 6862, - "end": 6870, + "start": 7097, + "end": 7105, "loc": { "start": { - "line": 246, + "line": 256, "column": 11 }, "end": { - "line": 246, + "line": 256, "column": 19 } } @@ -30321,15 +30321,15 @@ "postfix": false, "binop": null }, - "start": 6870, - "end": 6871, + "start": 7105, + "end": 7106, "loc": { "start": { - "line": 246, + "line": 256, "column": 19 }, "end": { - "line": 246, + "line": 256, "column": 20 } } @@ -30346,15 +30346,15 @@ "postfix": false, "binop": null }, - "start": 6872, - "end": 6873, + "start": 7107, + "end": 7108, "loc": { "start": { - "line": 246, + "line": 256, "column": 21 }, "end": { - "line": 246, + "line": 256, "column": 22 } } @@ -30374,15 +30374,15 @@ "updateContext": null }, "value": "return", - "start": 6880, - "end": 6886, + "start": 7115, + "end": 7121, "loc": { "start": { - "line": 247, + "line": 257, "column": 6 }, "end": { - "line": 247, + "line": 257, "column": 12 } } @@ -30399,15 +30399,15 @@ "postfix": false, "binop": null }, - "start": 6887, - "end": 6888, + "start": 7122, + "end": 7123, "loc": { "start": { - "line": 247, + "line": 257, "column": 13 }, "end": { - "line": 247, + "line": 257, "column": 14 } } @@ -30425,15 +30425,15 @@ "binop": null }, "value": "data", - "start": 6897, - "end": 6901, + "start": 7132, + "end": 7136, "loc": { "start": { - "line": 248, + "line": 258, "column": 8 }, "end": { - "line": 248, + "line": 258, "column": 12 } } @@ -30451,15 +30451,15 @@ "binop": null, "updateContext": null }, - "start": 6901, - "end": 6902, + "start": 7136, + "end": 7137, "loc": { "start": { - "line": 248, + "line": 258, "column": 12 }, "end": { - "line": 248, + "line": 258, "column": 13 } } @@ -30477,15 +30477,15 @@ "binop": null }, "value": "response", - "start": 6903, - "end": 6911, + "start": 7138, + "end": 7146, "loc": { "start": { - "line": 248, + "line": 258, "column": 14 }, "end": { - "line": 248, + "line": 258, "column": 22 } } @@ -30503,15 +30503,15 @@ "binop": null, "updateContext": null }, - "start": 6911, - "end": 6912, + "start": 7146, + "end": 7147, "loc": { "start": { - "line": 248, + "line": 258, "column": 22 }, "end": { - "line": 248, + "line": 258, "column": 23 } } @@ -30529,15 +30529,15 @@ "binop": null }, "value": "data", - "start": 6912, - "end": 6916, + "start": 7147, + "end": 7151, "loc": { "start": { - "line": 248, + "line": 258, "column": 23 }, "end": { - "line": 248, + "line": 258, "column": 27 } } @@ -30555,15 +30555,15 @@ "binop": null, "updateContext": null }, - "start": 6916, - "end": 6917, + "start": 7151, + "end": 7152, "loc": { "start": { - "line": 248, + "line": 258, "column": 27 }, "end": { - "line": 248, + "line": 258, "column": 28 } } @@ -30581,15 +30581,15 @@ "binop": null }, "value": "total", - "start": 6926, - "end": 6931, + "start": 7161, + "end": 7166, "loc": { "start": { - "line": 249, + "line": 259, "column": 8 }, "end": { - "line": 249, + "line": 259, "column": 13 } } @@ -30607,15 +30607,15 @@ "binop": null, "updateContext": null }, - "start": 6931, - "end": 6932, + "start": 7166, + "end": 7167, "loc": { "start": { - "line": 249, + "line": 259, "column": 13 }, "end": { - "line": 249, + "line": 259, "column": 14 } } @@ -30633,15 +30633,15 @@ "binop": null }, "value": "response", - "start": 6933, - "end": 6941, + "start": 7168, + "end": 7176, "loc": { "start": { - "line": 249, + "line": 259, "column": 15 }, "end": { - "line": 249, + "line": 259, "column": 23 } } @@ -30659,15 +30659,15 @@ "binop": null, "updateContext": null }, - "start": 6941, - "end": 6942, + "start": 7176, + "end": 7177, "loc": { "start": { - "line": 249, + "line": 259, "column": 23 }, "end": { - "line": 249, + "line": 259, "column": 24 } } @@ -30685,15 +30685,15 @@ "binop": null }, "value": "total", - "start": 6942, - "end": 6947, + "start": 7177, + "end": 7182, "loc": { "start": { - "line": 249, + "line": 259, "column": 24 }, "end": { - "line": 249, + "line": 259, "column": 29 } } @@ -30711,15 +30711,15 @@ "binop": null, "updateContext": null }, - "start": 6947, - "end": 6948, + "start": 7182, + "end": 7183, "loc": { "start": { - "line": 249, + "line": 259, "column": 29 }, "end": { - "line": 249, + "line": 259, "column": 30 } } @@ -30736,15 +30736,15 @@ "postfix": false, "binop": null }, - "start": 6955, - "end": 6956, + "start": 7190, + "end": 7191, "loc": { "start": { - "line": 250, + "line": 260, "column": 6 }, "end": { - "line": 250, + "line": 260, "column": 7 } } @@ -30762,15 +30762,15 @@ "binop": null, "updateContext": null }, - "start": 6956, - "end": 6957, + "start": 7191, + "end": 7192, "loc": { "start": { - "line": 250, + "line": 260, "column": 7 }, "end": { - "line": 250, + "line": 260, "column": 8 } } @@ -30787,15 +30787,15 @@ "postfix": false, "binop": null }, - "start": 6962, - "end": 6963, + "start": 7197, + "end": 7198, "loc": { "start": { - "line": 251, + "line": 261, "column": 4 }, "end": { - "line": 251, + "line": 261, "column": 5 } } @@ -30813,15 +30813,15 @@ "binop": null, "updateContext": null }, - "start": 6963, - "end": 6964, + "start": 7198, + "end": 7199, "loc": { "start": { - "line": 251, + "line": 261, "column": 5 }, "end": { - "line": 251, + "line": 261, "column": 6 } } @@ -30838,15 +30838,15 @@ "postfix": false, "binop": null }, - "start": 6967, - "end": 6968, + "start": 7202, + "end": 7203, "loc": { "start": { - "line": 252, + "line": 262, "column": 2 }, "end": { - "line": 252, + "line": 262, "column": 3 } } @@ -30864,15 +30864,15 @@ "binop": null, "updateContext": null }, - "start": 6968, - "end": 6969, + "start": 7203, + "end": 7204, "loc": { "start": { - "line": 252, + "line": 262, "column": 3 }, "end": { - "line": 252, + "line": 262, "column": 4 } } @@ -30889,15 +30889,15 @@ "postfix": false, "binop": null }, - "start": 6970, - "end": 6971, + "start": 7205, + "end": 7206, "loc": { "start": { - "line": 253, + "line": 263, "column": 0 }, "end": { - "line": 253, + "line": 263, "column": 1 } } @@ -30915,15 +30915,15 @@ "binop": null, "updateContext": null }, - "start": 6971, - "end": 6972, + "start": 7206, + "end": 7207, "loc": { "start": { - "line": 253, + "line": 263, "column": 1 }, "end": { - "line": 253, + "line": 263, "column": 2 } } @@ -30943,15 +30943,15 @@ "updateContext": null }, "value": "export", - "start": 6974, - "end": 6980, + "start": 7209, + "end": 7215, "loc": { "start": { - "line": 255, + "line": 265, "column": 0 }, "end": { - "line": 255, + "line": 265, "column": 6 } } @@ -30971,15 +30971,15 @@ "updateContext": null }, "value": "default", - "start": 6981, - "end": 6988, + "start": 7216, + "end": 7223, "loc": { "start": { - "line": 255, + "line": 265, "column": 7 }, "end": { - "line": 255, + "line": 265, "column": 14 } } @@ -30997,15 +30997,15 @@ "binop": null }, "value": "AjaxDatasource", - "start": 6989, - "end": 7003, + "start": 7224, + "end": 7238, "loc": { "start": { - "line": 255, + "line": 265, "column": 15 }, "end": { - "line": 255, + "line": 265, "column": 29 } } @@ -31023,15 +31023,15 @@ "binop": null, "updateContext": null }, - "start": 7003, - "end": 7004, + "start": 7238, + "end": 7239, "loc": { "start": { - "line": 255, + "line": 265, "column": 29 }, "end": { - "line": 255, + "line": 265, "column": 30 } } @@ -31049,15 +31049,15 @@ "binop": null, "updateContext": null }, - "start": 7005, - "end": 7005, + "start": 7240, + "end": 7240, "loc": { "start": { - "line": 256, + "line": 266, "column": 0 }, "end": { - "line": 256, + "line": 266, "column": 0 } } diff --git a/projects/mitch-datasource-documentation/docs/ast/source/ArrayDatasource.js.json b/projects/mitch-datasource-documentation/docs/ast/source/ArrayDatasource.js.json index c76225f..71cbeaa 100644 --- a/projects/mitch-datasource-documentation/docs/ast/source/ArrayDatasource.js.json +++ b/projects/mitch-datasource-documentation/docs/ast/source/ArrayDatasource.js.json @@ -1,28 +1,28 @@ { "type": "File", "start": 0, - "end": 4428, + "end": 5931, "loc": { "start": { "line": 1, "column": 0 }, "end": { - "line": 196, + "line": 255, "column": 0 } }, "program": { "type": "Program", "start": 0, - "end": 4428, + "end": 5931, "loc": { "start": { "line": 1, "column": 0 }, "end": { - "line": 196, + "line": 255, "column": 0 } }, @@ -99,16 +99,16 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Sorting\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * sort: (data, sortArguments = { 'firstName': 'asc' }) => {\n * return mockSortLogic(data, sortArguments);\n * }\n * });\n * await datasource.sort({ 'lastName': 'asc' });\n * console.log(`First page of sorted data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Filtering\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * search: (data, searchText) => {\n * return mockSearchLogic(data, searchText);\n * }\n * });\n * await datasource.search('John Smith');\n * console.log(`First page of filtered data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 48, - "end": 623, + "end": 2126, "loc": { "start": { "line": 3, "column": 0 }, "end": { - "line": 27, + "line": 86, "column": 3 } } @@ -117,29 +117,29 @@ }, { "type": "Identifier", - "start": 624, - "end": 4154, + "start": 2127, + "end": 5657, "loc": { "start": { - "line": 28, + "line": 87, "column": 0 }, "end": { - "line": 181, + "line": 240, "column": 1 } }, "id": { "type": "Identifier", - "start": 630, - "end": 645, + "start": 2133, + "end": 2148, "loc": { "start": { - "line": 28, + "line": 87, "column": 6 }, "end": { - "line": 28, + "line": 87, "column": 21 }, "identifierName": "ArrayDatasource" @@ -149,15 +149,15 @@ }, "superClass": { "type": "Identifier", - "start": 654, - "end": 668, + "start": 2157, + "end": 2171, "loc": { "start": { - "line": 28, + "line": 87, "column": 30 }, "end": { - "line": 28, + "line": 87, "column": 44 }, "identifierName": "DatasourceBase" @@ -166,30 +166,30 @@ }, "body": { "type": "ClassBody", - "start": 669, - "end": 4154, + "start": 2172, + "end": 5657, "loc": { "start": { - "line": 28, + "line": 87, "column": 45 }, "end": { - "line": 181, + "line": 240, "column": 1 } }, "body": [ { "type": "ClassMethod", - "start": 1570, - "end": 2775, + "start": 3073, + "end": 4278, "loc": { "start": { - "line": 61, + "line": 120, "column": 2 }, "end": { - "line": 116, + "line": 175, "column": 3 } }, @@ -197,15 +197,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 1570, - "end": 1581, + "start": 3073, + "end": 3084, "loc": { "start": { - "line": 61, + "line": 120, "column": 2 }, "end": { - "line": 61, + "line": 120, "column": 13 }, "identifierName": "constructor" @@ -221,29 +221,29 @@ "params": [ { "type": "AssignmentPattern", - "start": 1582, - "end": 1594, + "start": 3085, + "end": 3097, "loc": { "start": { - "line": 61, + "line": 120, "column": 14 }, "end": { - "line": 61, + "line": 120, "column": 26 } }, "left": { "type": "Identifier", - "start": 1582, - "end": 1589, + "start": 3085, + "end": 3092, "loc": { "start": { - "line": 61, + "line": 120, "column": 14 }, "end": { - "line": 61, + "line": 120, "column": 21 }, "identifierName": "options" @@ -252,15 +252,15 @@ }, "right": { "type": "ObjectExpression", - "start": 1592, - "end": 1594, + "start": 3095, + "end": 3097, "loc": { "start": { - "line": 61, + "line": 120, "column": 24 }, "end": { - "line": 61, + "line": 120, "column": 26 } }, @@ -270,59 +270,59 @@ ], "body": { "type": "BlockStatement", - "start": 1596, - "end": 2775, + "start": 3099, + "end": 4278, "loc": { "start": { - "line": 61, + "line": 120, "column": 28 }, "end": { - "line": 116, + "line": 175, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 1602, - "end": 1695, + "start": 3105, + "end": 3198, "loc": { "start": { - "line": 62, + "line": 121, "column": 4 }, "end": { - "line": 65, + "line": 124, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 1608, - "end": 1694, + "start": 3111, + "end": 3197, "loc": { "start": { - "line": 62, + "line": 121, "column": 10 }, "end": { - "line": 65, + "line": 124, "column": 5 } }, "id": { "type": "Identifier", - "start": 1608, - "end": 1621, + "start": 3111, + "end": 3124, "loc": { "start": { - "line": 62, + "line": 121, "column": 10 }, "end": { - "line": 62, + "line": 121, "column": 23 }, "identifierName": "mergedOptions" @@ -331,72 +331,72 @@ }, "init": { "type": "ObjectExpression", - "start": 1624, - "end": 1694, + "start": 3127, + "end": 3197, "loc": { "start": { - "line": 62, + "line": 121, "column": 26 }, "end": { - "line": 65, + "line": 124, "column": 5 } }, "properties": [ { "type": "SpreadProperty", - "start": 1632, - "end": 1669, + "start": 3135, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 6 }, "end": { - "line": 63, + "line": 122, "column": 43 } }, "argument": { "type": "MemberExpression", - "start": 1635, - "end": 1669, + "start": 3138, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 43 } }, "object": { "type": "MemberExpression", - "start": 1635, - "end": 1660, + "start": 3138, + "end": 3163, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 34 } }, "object": { "type": "Identifier", - "start": 1635, - "end": 1650, + "start": 3138, + "end": 3153, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 24 }, "identifierName": "ArrayDatasource" @@ -405,15 +405,15 @@ }, "property": { "type": "Identifier", - "start": 1651, - "end": 1660, + "start": 3154, + "end": 3163, "loc": { "start": { - "line": 63, + "line": 122, "column": 25 }, "end": { - "line": 63, + "line": 122, "column": 34 }, "identifierName": "prototype" @@ -424,15 +424,15 @@ }, "property": { "type": "Identifier", - "start": 1661, - "end": 1669, + "start": 3164, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 35 }, "end": { - "line": 63, + "line": 122, "column": 43 }, "identifierName": "defaults" @@ -444,29 +444,29 @@ }, { "type": "SpreadProperty", - "start": 1677, - "end": 1687, + "start": 3180, + "end": 3190, "loc": { "start": { - "line": 64, + "line": 123, "column": 6 }, "end": { - "line": 64, + "line": 123, "column": 16 } }, "argument": { "type": "Identifier", - "start": 1680, - "end": 1687, + "start": 3183, + "end": 3190, "loc": { "start": { - "line": 64, + "line": 123, "column": 9 }, "end": { - "line": 64, + "line": 123, "column": 16 }, "identifierName": "options" @@ -482,43 +482,43 @@ }, { "type": "ExpressionStatement", - "start": 1700, - "end": 1721, + "start": 3203, + "end": 3224, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 25 } }, "expression": { "type": "CallExpression", - "start": 1700, - "end": 1720, + "start": 3203, + "end": 3223, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 24 } }, "callee": { "type": "Super", - "start": 1700, - "end": 1705, + "start": 3203, + "end": 3208, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 9 } } @@ -526,15 +526,15 @@ "arguments": [ { "type": "Identifier", - "start": 1706, - "end": 1719, + "start": 3209, + "end": 3222, "loc": { "start": { - "line": 66, + "line": 125, "column": 10 }, "end": { - "line": 66, + "line": 125, "column": 23 }, "identifierName": "mergedOptions" @@ -547,15 +547,15 @@ { "type": "CommentBlock", "value": "*\n * The raw, unfiltered, unsorted,\n * unpaginated set of data.\n *\n * @access private\n * @type {?Array}\n ", - "start": 1726, - "end": 1859, + "start": 3229, + "end": 3362, "loc": { "start": { - "line": 67, + "line": 126, "column": 4 }, "end": { - "line": 73, + "line": 132, "column": 7 } } @@ -564,58 +564,58 @@ }, { "type": "ExpressionStatement", - "start": 1864, - "end": 1899, + "start": 3367, + "end": 3402, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 39 } }, "expression": { "type": "AssignmentExpression", - "start": 1864, - "end": 1898, + "start": 3367, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 38 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 1864, - "end": 1877, + "start": 3367, + "end": 3380, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 17 } }, "object": { "type": "ThisExpression", - "start": 1864, - "end": 1868, + "start": 3367, + "end": 3371, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 8 } }, @@ -623,15 +623,15 @@ }, "property": { "type": "Identifier", - "start": 1869, - "end": 1877, + "start": 3372, + "end": 3380, "loc": { "start": { - "line": 74, + "line": 133, "column": 9 }, "end": { - "line": 74, + "line": 133, "column": 17 }, "identifierName": "_rawData" @@ -643,29 +643,29 @@ }, "right": { "type": "MemberExpression", - "start": 1880, - "end": 1898, + "start": 3383, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 20 }, "end": { - "line": 74, + "line": 133, "column": 38 } }, "object": { "type": "Identifier", - "start": 1880, - "end": 1893, + "start": 3383, + "end": 3396, "loc": { "start": { - "line": 74, + "line": 133, "column": 20 }, "end": { - "line": 74, + "line": 133, "column": 33 }, "identifierName": "mergedOptions" @@ -674,15 +674,15 @@ }, "property": { "type": "Identifier", - "start": 1894, - "end": 1898, + "start": 3397, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 34 }, "end": { - "line": 74, + "line": 133, "column": 38 }, "identifierName": "data" @@ -697,15 +697,15 @@ { "type": "CommentBlock", "value": "*\n * The raw, unfiltered, unsorted,\n * unpaginated set of data.\n *\n * @access private\n * @type {?Array}\n ", - "start": 1726, - "end": 1859, + "start": 3229, + "end": 3362, "loc": { "start": { - "line": 67, + "line": 126, "column": 4 }, "end": { - "line": 73, + "line": 132, "column": 7 } } @@ -715,15 +715,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted set of data.\n * This is not paginated.\n * Extracted from the raw data\n * ({@link ArrayDatasource#_rawData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 1905, - "end": 2116, + "start": 3408, + "end": 3619, "loc": { "start": { - "line": 76, + "line": 135, "column": 4 }, "end": { - "line": 84, + "line": 143, "column": 7 } } @@ -732,58 +732,58 @@ }, { "type": "ExpressionStatement", - "start": 2121, - "end": 2148, + "start": 3624, + "end": 3651, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 31 } }, "expression": { "type": "AssignmentExpression", - "start": 2121, - "end": 2147, + "start": 3624, + "end": 3650, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 30 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2121, - "end": 2140, + "start": 3624, + "end": 3643, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 2121, - "end": 2125, + "start": 3624, + "end": 3628, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 8 } }, @@ -791,15 +791,15 @@ }, "property": { "type": "Identifier", - "start": 2126, - "end": 2140, + "start": 3629, + "end": 3643, "loc": { "start": { - "line": 85, + "line": 144, "column": 9 }, "end": { - "line": 85, + "line": 144, "column": 23 }, "identifierName": "_processedData" @@ -811,15 +811,15 @@ }, "right": { "type": "NullLiteral", - "start": 2143, - "end": 2147, + "start": 3646, + "end": 3650, "loc": { "start": { - "line": 85, + "line": 144, "column": 26 }, "end": { - "line": 85, + "line": 144, "column": 30 } } @@ -830,15 +830,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted set of data.\n * This is not paginated.\n * Extracted from the raw data\n * ({@link ArrayDatasource#_rawData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 1905, - "end": 2116, + "start": 3408, + "end": 3619, "loc": { "start": { - "line": 76, + "line": 135, "column": 4 }, "end": { - "line": 84, + "line": 143, "column": 7 } } @@ -848,15 +848,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted, paginated set\n * of data. Extracted from the processed data\n * ({@link ArrayDatasource#_processedData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 2154, - "end": 2358, + "start": 3657, + "end": 3861, "loc": { "start": { - "line": 87, + "line": 146, "column": 4 }, "end": { - "line": 94, + "line": 153, "column": 7 } } @@ -865,58 +865,58 @@ }, { "type": "ExpressionStatement", - "start": 2363, - "end": 2381, + "start": 3866, + "end": 3884, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 22 } }, "expression": { "type": "AssignmentExpression", - "start": 2363, - "end": 2380, + "start": 3866, + "end": 3883, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 21 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2363, - "end": 2373, + "start": 3866, + "end": 3876, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 2363, - "end": 2367, + "start": 3866, + "end": 3870, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 8 } }, @@ -924,15 +924,15 @@ }, "property": { "type": "Identifier", - "start": 2368, - "end": 2373, + "start": 3871, + "end": 3876, "loc": { "start": { - "line": 95, + "line": 154, "column": 9 }, "end": { - "line": 95, + "line": 154, "column": 14 }, "identifierName": "_data" @@ -944,15 +944,15 @@ }, "right": { "type": "NullLiteral", - "start": 2376, - "end": 2380, + "start": 3879, + "end": 3883, "loc": { "start": { - "line": 95, + "line": 154, "column": 17 }, "end": { - "line": 95, + "line": 154, "column": 21 } } @@ -963,15 +963,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted, paginated set\n * of data. Extracted from the processed data\n * ({@link ArrayDatasource#_processedData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 2154, - "end": 2358, + "start": 3657, + "end": 3861, "loc": { "start": { - "line": 87, + "line": 146, "column": 4 }, "end": { - "line": 94, + "line": 153, "column": 7 } } @@ -981,15 +981,15 @@ { "type": "CommentBlock", "value": "*\n * The search callback, called\n * when search operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2387, - "end": 2539, + "start": 3890, + "end": 4042, "loc": { "start": { - "line": 97, + "line": 156, "column": 4 }, "end": { - "line": 104, + "line": 163, "column": 7 } } @@ -998,58 +998,58 @@ }, { "type": "ExpressionStatement", - "start": 2544, - "end": 2580, + "start": 4047, + "end": 4083, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 40 } }, "expression": { "type": "AssignmentExpression", - "start": 2544, - "end": 2579, + "start": 4047, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 39 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2544, - "end": 2556, + "start": 4047, + "end": 4059, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 16 } }, "object": { "type": "ThisExpression", - "start": 2544, - "end": 2548, + "start": 4047, + "end": 4051, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 8 } }, @@ -1057,15 +1057,15 @@ }, "property": { "type": "Identifier", - "start": 2549, - "end": 2556, + "start": 4052, + "end": 4059, "loc": { "start": { - "line": 105, + "line": 164, "column": 9 }, "end": { - "line": 105, + "line": 164, "column": 16 }, "identifierName": "_search" @@ -1077,29 +1077,29 @@ }, "right": { "type": "MemberExpression", - "start": 2559, - "end": 2579, + "start": 4062, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 19 }, "end": { - "line": 105, + "line": 164, "column": 39 } }, "object": { "type": "Identifier", - "start": 2559, - "end": 2572, + "start": 4062, + "end": 4075, "loc": { "start": { - "line": 105, + "line": 164, "column": 19 }, "end": { - "line": 105, + "line": 164, "column": 32 }, "identifierName": "mergedOptions" @@ -1108,15 +1108,15 @@ }, "property": { "type": "Identifier", - "start": 2573, - "end": 2579, + "start": 4076, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 33 }, "end": { - "line": 105, + "line": 164, "column": 39 }, "identifierName": "search" @@ -1131,15 +1131,15 @@ { "type": "CommentBlock", "value": "*\n * The search callback, called\n * when search operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2387, - "end": 2539, + "start": 3890, + "end": 4042, "loc": { "start": { - "line": 97, + "line": 156, "column": 4 }, "end": { - "line": 104, + "line": 163, "column": 7 } } @@ -1149,15 +1149,15 @@ { "type": "CommentBlock", "value": "*\n * The sort callback, called\n * when sort operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2586, - "end": 2734, + "start": 4089, + "end": 4237, "loc": { "start": { - "line": 107, + "line": 166, "column": 4 }, "end": { - "line": 114, + "line": 173, "column": 7 } } @@ -1166,58 +1166,58 @@ }, { "type": "ExpressionStatement", - "start": 2739, - "end": 2771, + "start": 4242, + "end": 4274, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 36 } }, "expression": { "type": "AssignmentExpression", - "start": 2739, - "end": 2770, + "start": 4242, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 35 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2739, - "end": 2749, + "start": 4242, + "end": 4252, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 2739, - "end": 2743, + "start": 4242, + "end": 4246, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 8 } }, @@ -1225,15 +1225,15 @@ }, "property": { "type": "Identifier", - "start": 2744, - "end": 2749, + "start": 4247, + "end": 4252, "loc": { "start": { - "line": 115, + "line": 174, "column": 9 }, "end": { - "line": 115, + "line": 174, "column": 14 }, "identifierName": "_sort" @@ -1245,29 +1245,29 @@ }, "right": { "type": "MemberExpression", - "start": 2752, - "end": 2770, + "start": 4255, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 17 }, "end": { - "line": 115, + "line": 174, "column": 35 } }, "object": { "type": "Identifier", - "start": 2752, - "end": 2765, + "start": 4255, + "end": 4268, "loc": { "start": { - "line": 115, + "line": 174, "column": 17 }, "end": { - "line": 115, + "line": 174, "column": 30 }, "identifierName": "mergedOptions" @@ -1276,15 +1276,15 @@ }, "property": { "type": "Identifier", - "start": 2766, - "end": 2770, + "start": 4269, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 31 }, "end": { - "line": 115, + "line": 174, "column": 35 }, "identifierName": "sort" @@ -1299,15 +1299,15 @@ { "type": "CommentBlock", "value": "*\n * The sort callback, called\n * when sort operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2586, - "end": 2734, + "start": 4089, + "end": 4237, "loc": { "start": { - "line": 107, + "line": 166, "column": 4 }, "end": { - "line": 114, + "line": 173, "column": 7 } } @@ -1322,15 +1322,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 673, - "end": 885, + "start": 2176, + "end": 2388, "loc": { "start": { - "line": 29, + "line": 88, "column": 2 }, "end": { - "line": 36, + "line": 95, "column": 5 } } @@ -1338,15 +1338,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 889, - "end": 1101, + "start": 2392, + "end": 2604, "loc": { "start": { - "line": 38, + "line": 97, "column": 2 }, "end": { - "line": 45, + "line": 104, "column": 5 } } @@ -1354,15 +1354,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {Array} options.data\n * The data array of items.\n * @param {Function} [options.search]\n * The search function callback, which\n * gets called when searching is requested.\n * @param {Function} [options.sort]\n * The sort function callback, which\n * gets called when sorting is requested.\n ", - "start": 1105, - "end": 1567, + "start": 2608, + "end": 3070, "loc": { "start": { - "line": 47, + "line": 106, "column": 2 }, "end": { - "line": 60, + "line": 119, "column": 5 } } @@ -1372,15 +1372,15 @@ { "type": "CommentBlock", "value": "*\n * Extracts the processed set of data\n * (i.e sorted, filtered) from the\n * raw data provided.\n * @access private\n * @return {Array} The array of processed data items.\n ", - "start": 2779, - "end": 2966, + "start": 4282, + "end": 4469, "loc": { "start": { - "line": 118, + "line": 177, "column": 2 }, "end": { - "line": 124, + "line": 183, "column": 5 } } @@ -1389,15 +1389,15 @@ }, { "type": "ClassMethod", - "start": 2969, - "end": 3478, + "start": 4472, + "end": 4981, "loc": { "start": { - "line": 125, + "line": 184, "column": 2 }, "end": { - "line": 139, + "line": 198, "column": 3 } }, @@ -1405,15 +1405,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2969, - "end": 2986, + "start": 4472, + "end": 4489, "loc": { "start": { - "line": 125, + "line": 184, "column": 2 }, "end": { - "line": 125, + "line": 184, "column": 19 }, "identifierName": "_getProcessedData" @@ -1429,44 +1429,44 @@ "params": [], "body": { "type": "BlockStatement", - "start": 2989, - "end": 3478, + "start": 4492, + "end": 4981, "loc": { "start": { - "line": 125, + "line": 184, "column": 22 }, "end": { - "line": 139, + "line": 198, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 2995, - "end": 3039, + "start": 4498, + "end": 4542, "loc": { "start": { - "line": 126, + "line": 185, "column": 4 }, "end": { - "line": 128, + "line": 187, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 2999, - "end": 3013, + "start": 4502, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 8 }, "end": { - "line": 126, + "line": 185, "column": 22 } }, @@ -1474,44 +1474,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 3000, - "end": 3013, + "start": 4503, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 9 }, "end": { - "line": 126, + "line": 185, "column": 22 } }, "object": { "type": "ThisExpression", - "start": 3000, - "end": 3004, + "start": 4503, + "end": 4507, "loc": { "start": { - "line": 126, + "line": 185, "column": 9 }, "end": { - "line": 126, + "line": 185, "column": 13 } } }, "property": { "type": "Identifier", - "start": 3005, - "end": 3013, + "start": 4508, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 14 }, "end": { - "line": 126, + "line": 185, "column": 22 }, "identifierName": "_rawData" @@ -1526,44 +1526,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 3015, - "end": 3039, + "start": 4518, + "end": 4542, "loc": { "start": { - "line": 126, + "line": 185, "column": 24 }, "end": { - "line": 128, + "line": 187, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3023, - "end": 3033, + "start": 4526, + "end": 4536, "loc": { "start": { - "line": 127, + "line": 186, "column": 6 }, "end": { - "line": 127, + "line": 186, "column": 16 } }, "argument": { "type": "ArrayExpression", - "start": 3030, - "end": 3032, + "start": 4533, + "end": 4535, "loc": { "start": { - "line": 127, + "line": 186, "column": 13 }, "end": { - "line": 127, + "line": 186, "column": 15 } }, @@ -1577,44 +1577,44 @@ }, { "type": "VariableDeclaration", - "start": 3044, - "end": 3083, + "start": 4547, + "end": 4586, "loc": { "start": { - "line": 129, + "line": 188, "column": 4 }, "end": { - "line": 129, + "line": 188, "column": 43 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 3048, - "end": 3082, + "start": 4551, + "end": 4585, "loc": { "start": { - "line": 129, + "line": 188, "column": 8 }, "end": { - "line": 129, + "line": 188, "column": 42 } }, "id": { "type": "Identifier", - "start": 3048, - "end": 3061, + "start": 4551, + "end": 4564, "loc": { "start": { - "line": 129, + "line": 188, "column": 8 }, "end": { - "line": 129, + "line": 188, "column": 21 }, "identifierName": "processedData" @@ -1623,73 +1623,73 @@ }, "init": { "type": "ArrayExpression", - "start": 3064, - "end": 3082, + "start": 4567, + "end": 4585, "loc": { "start": { - "line": 129, + "line": 188, "column": 24 }, "end": { - "line": 129, + "line": 188, "column": 42 } }, "elements": [ { "type": "SpreadElement", - "start": 3065, - "end": 3081, + "start": 4568, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 25 }, "end": { - "line": 129, + "line": 188, "column": 41 } }, "argument": { "type": "MemberExpression", - "start": 3068, - "end": 3081, + "start": 4571, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 28 }, "end": { - "line": 129, + "line": 188, "column": 41 } }, "object": { "type": "ThisExpression", - "start": 3068, - "end": 3072, + "start": 4571, + "end": 4575, "loc": { "start": { - "line": 129, + "line": 188, "column": 28 }, "end": { - "line": 129, + "line": 188, "column": 32 } } }, "property": { "type": "Identifier", - "start": 3073, - "end": 3081, + "start": 4576, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 33 }, "end": { - "line": 129, + "line": 188, "column": 41 }, "identifierName": "_rawData" @@ -1707,58 +1707,58 @@ }, { "type": "IfStatement", - "start": 3088, - "end": 3318, + "start": 4591, + "end": 4821, "loc": { "start": { - "line": 130, + "line": 189, "column": 4 }, "end": { - "line": 134, + "line": 193, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3092, - "end": 3112, + "start": 4595, + "end": 4615, "loc": { "start": { - "line": 130, + "line": 189, "column": 8 }, "end": { - "line": 130, + "line": 189, "column": 28 } }, "object": { "type": "ThisExpression", - "start": 3092, - "end": 3096, + "start": 4595, + "end": 4599, "loc": { "start": { - "line": 130, + "line": 189, "column": 8 }, "end": { - "line": 130, + "line": 189, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3097, - "end": 3112, + "start": 4600, + "end": 4615, "loc": { "start": { - "line": 130, + "line": 189, "column": 13 }, "end": { - "line": 130, + "line": 189, "column": 28 }, "identifierName": "searchArguments" @@ -1769,59 +1769,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 3114, - "end": 3205, + "start": 4617, + "end": 4708, "loc": { "start": { - "line": 130, + "line": 189, "column": 30 }, "end": { - "line": 132, + "line": 191, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3122, - "end": 3199, + "start": 4625, + "end": 4702, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 83 } }, "expression": { "type": "AssignmentExpression", - "start": 3122, - "end": 3198, + "start": 4625, + "end": 4701, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 82 } }, "operator": "=", "left": { "type": "Identifier", - "start": 3122, - "end": 3135, + "start": 4625, + "end": 4638, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 19 }, "identifierName": "processedData" @@ -1830,72 +1830,72 @@ }, "right": { "type": "CallExpression", - "start": 3138, - "end": 3198, + "start": 4641, + "end": 4701, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 82 } }, "callee": { "type": "MemberExpression", - "start": 3138, - "end": 3155, + "start": 4641, + "end": 4658, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 39 } }, "object": { "type": "MemberExpression", - "start": 3138, - "end": 3150, + "start": 4641, + "end": 4653, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 34 } }, "object": { "type": "ThisExpression", - "start": 3138, - "end": 3142, + "start": 4641, + "end": 4645, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3143, - "end": 3150, + "start": 4646, + "end": 4653, "loc": { "start": { - "line": 131, + "line": 190, "column": 27 }, "end": { - "line": 131, + "line": 190, "column": 34 }, "identifierName": "_search" @@ -1906,15 +1906,15 @@ }, "property": { "type": "Identifier", - "start": 3151, - "end": 3155, + "start": 4654, + "end": 4658, "loc": { "start": { - "line": 131, + "line": 190, "column": 35 }, "end": { - "line": 131, + "line": 190, "column": 39 }, "identifierName": "call" @@ -1926,30 +1926,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 3156, - "end": 3160, + "start": 4659, + "end": 4663, "loc": { "start": { - "line": 131, + "line": 190, "column": 40 }, "end": { - "line": 131, + "line": 190, "column": 44 } } }, { "type": "Identifier", - "start": 3162, - "end": 3175, + "start": 4665, + "end": 4678, "loc": { "start": { - "line": 131, + "line": 190, "column": 46 }, "end": { - "line": 131, + "line": 190, "column": 59 }, "identifierName": "processedData" @@ -1958,44 +1958,44 @@ }, { "type": "MemberExpression", - "start": 3177, - "end": 3197, + "start": 4680, + "end": 4700, "loc": { "start": { - "line": 131, + "line": 190, "column": 61 }, "end": { - "line": 131, + "line": 190, "column": 81 } }, "object": { "type": "ThisExpression", - "start": 3177, - "end": 3181, + "start": 4680, + "end": 4684, "loc": { "start": { - "line": 131, + "line": 190, "column": 61 }, "end": { - "line": 131, + "line": 190, "column": 65 } } }, "property": { "type": "Identifier", - "start": 3182, - "end": 3197, + "start": 4685, + "end": 4700, "loc": { "start": { - "line": 131, + "line": 190, "column": 66 }, "end": { - "line": 131, + "line": 190, "column": 81 }, "identifierName": "searchArguments" @@ -2013,58 +2013,58 @@ }, "alternate": { "type": "IfStatement", - "start": 3211, - "end": 3318, + "start": 4714, + "end": 4821, "loc": { "start": { - "line": 132, + "line": 191, "column": 11 }, "end": { - "line": 134, + "line": 193, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3215, - "end": 3230, + "start": 4718, + "end": 4733, "loc": { "start": { - "line": 132, + "line": 191, "column": 15 }, "end": { - "line": 132, + "line": 191, "column": 30 } }, "object": { "type": "ThisExpression", - "start": 3215, - "end": 3219, + "start": 4718, + "end": 4722, "loc": { "start": { - "line": 132, + "line": 191, "column": 15 }, "end": { - "line": 132, + "line": 191, "column": 19 } } }, "property": { "type": "Identifier", - "start": 3220, - "end": 3230, + "start": 4723, + "end": 4733, "loc": { "start": { - "line": 132, + "line": 191, "column": 20 }, "end": { - "line": 132, + "line": 191, "column": 30 }, "identifierName": "searchText" @@ -2075,59 +2075,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 3232, - "end": 3318, + "start": 4735, + "end": 4821, "loc": { "start": { - "line": 132, + "line": 191, "column": 32 }, "end": { - "line": 134, + "line": 193, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3240, - "end": 3312, + "start": 4743, + "end": 4815, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 78 } }, "expression": { "type": "AssignmentExpression", - "start": 3240, - "end": 3311, + "start": 4743, + "end": 4814, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 77 } }, "operator": "=", "left": { "type": "Identifier", - "start": 3240, - "end": 3253, + "start": 4743, + "end": 4756, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 19 }, "identifierName": "processedData" @@ -2136,72 +2136,72 @@ }, "right": { "type": "CallExpression", - "start": 3256, - "end": 3311, + "start": 4759, + "end": 4814, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 77 } }, "callee": { "type": "MemberExpression", - "start": 3256, - "end": 3273, + "start": 4759, + "end": 4776, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 39 } }, "object": { "type": "MemberExpression", - "start": 3256, - "end": 3268, + "start": 4759, + "end": 4771, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 34 } }, "object": { "type": "ThisExpression", - "start": 3256, - "end": 3260, + "start": 4759, + "end": 4763, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3261, - "end": 3268, + "start": 4764, + "end": 4771, "loc": { "start": { - "line": 133, + "line": 192, "column": 27 }, "end": { - "line": 133, + "line": 192, "column": 34 }, "identifierName": "_search" @@ -2212,15 +2212,15 @@ }, "property": { "type": "Identifier", - "start": 3269, - "end": 3273, + "start": 4772, + "end": 4776, "loc": { "start": { - "line": 133, + "line": 192, "column": 35 }, "end": { - "line": 133, + "line": 192, "column": 39 }, "identifierName": "call" @@ -2232,30 +2232,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 3274, - "end": 3278, + "start": 4777, + "end": 4781, "loc": { "start": { - "line": 133, + "line": 192, "column": 40 }, "end": { - "line": 133, + "line": 192, "column": 44 } } }, { "type": "Identifier", - "start": 3280, - "end": 3293, + "start": 4783, + "end": 4796, "loc": { "start": { - "line": 133, + "line": 192, "column": 46 }, "end": { - "line": 133, + "line": 192, "column": 59 }, "identifierName": "processedData" @@ -2264,44 +2264,44 @@ }, { "type": "MemberExpression", - "start": 3295, - "end": 3310, + "start": 4798, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 192, "column": 61 }, "end": { - "line": 133, + "line": 192, "column": 76 } }, "object": { "type": "ThisExpression", - "start": 3295, - "end": 3299, + "start": 4798, + "end": 4802, "loc": { "start": { - "line": 133, + "line": 192, "column": 61 }, "end": { - "line": 133, + "line": 192, "column": 65 } } }, "property": { "type": "Identifier", - "start": 3300, - "end": 3310, + "start": 4803, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 192, "column": 66 }, "end": { - "line": 133, + "line": 192, "column": 76 }, "identifierName": "searchText" @@ -2322,72 +2322,72 @@ }, { "type": "IfStatement", - "start": 3323, - "end": 3448, + "start": 4826, + "end": 4951, "loc": { "start": { - "line": 135, + "line": 194, "column": 4 }, "end": { - "line": 137, + "line": 196, "column": 5 } }, "test": { "type": "LogicalExpression", - "start": 3327, - "end": 3359, + "start": 4830, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 40 } }, "left": { "type": "MemberExpression", - "start": 3327, - "end": 3337, + "start": 4830, + "end": 4840, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 18 } }, "object": { "type": "ThisExpression", - "start": 3327, - "end": 3331, + "start": 4830, + "end": 4834, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3332, - "end": 3337, + "start": 4835, + "end": 4840, "loc": { "start": { - "line": 135, + "line": 194, "column": 13 }, "end": { - "line": 135, + "line": 194, "column": 18 }, "identifierName": "_sort" @@ -2399,44 +2399,44 @@ "operator": "&&", "right": { "type": "MemberExpression", - "start": 3341, - "end": 3359, + "start": 4844, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 22 }, "end": { - "line": 135, + "line": 194, "column": 40 } }, "object": { "type": "ThisExpression", - "start": 3341, - "end": 3345, + "start": 4844, + "end": 4848, "loc": { "start": { - "line": 135, + "line": 194, "column": 22 }, "end": { - "line": 135, + "line": 194, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3346, - "end": 3359, + "start": 4849, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 27 }, "end": { - "line": 135, + "line": 194, "column": 40 }, "identifierName": "sortArguments" @@ -2448,59 +2448,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 3361, - "end": 3448, + "start": 4864, + "end": 4951, "loc": { "start": { - "line": 135, + "line": 194, "column": 42 }, "end": { - "line": 137, + "line": 196, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3369, - "end": 3442, + "start": 4872, + "end": 4945, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 79 } }, "expression": { "type": "AssignmentExpression", - "start": 3369, - "end": 3441, + "start": 4872, + "end": 4944, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 78 } }, "operator": "=", "left": { "type": "Identifier", - "start": 3369, - "end": 3382, + "start": 4872, + "end": 4885, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 19 }, "identifierName": "processedData" @@ -2509,72 +2509,72 @@ }, "right": { "type": "CallExpression", - "start": 3385, - "end": 3441, + "start": 4888, + "end": 4944, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 78 } }, "callee": { "type": "MemberExpression", - "start": 3385, - "end": 3400, + "start": 4888, + "end": 4903, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 37 } }, "object": { "type": "MemberExpression", - "start": 3385, - "end": 3395, + "start": 4888, + "end": 4898, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 32 } }, "object": { "type": "ThisExpression", - "start": 3385, - "end": 3389, + "start": 4888, + "end": 4892, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3390, - "end": 3395, + "start": 4893, + "end": 4898, "loc": { "start": { - "line": 136, + "line": 195, "column": 27 }, "end": { - "line": 136, + "line": 195, "column": 32 }, "identifierName": "_sort" @@ -2585,15 +2585,15 @@ }, "property": { "type": "Identifier", - "start": 3396, - "end": 3400, + "start": 4899, + "end": 4903, "loc": { "start": { - "line": 136, + "line": 195, "column": 33 }, "end": { - "line": 136, + "line": 195, "column": 37 }, "identifierName": "call" @@ -2605,30 +2605,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 3401, - "end": 3405, + "start": 4904, + "end": 4908, "loc": { "start": { - "line": 136, + "line": 195, "column": 38 }, "end": { - "line": 136, + "line": 195, "column": 42 } } }, { "type": "Identifier", - "start": 3407, - "end": 3420, + "start": 4910, + "end": 4923, "loc": { "start": { - "line": 136, + "line": 195, "column": 44 }, "end": { - "line": 136, + "line": 195, "column": 57 }, "identifierName": "processedData" @@ -2637,44 +2637,44 @@ }, { "type": "MemberExpression", - "start": 3422, - "end": 3440, + "start": 4925, + "end": 4943, "loc": { "start": { - "line": 136, + "line": 195, "column": 59 }, "end": { - "line": 136, + "line": 195, "column": 77 } }, "object": { "type": "ThisExpression", - "start": 3422, - "end": 3426, + "start": 4925, + "end": 4929, "loc": { "start": { - "line": 136, + "line": 195, "column": 59 }, "end": { - "line": 136, + "line": 195, "column": 63 } } }, "property": { "type": "Identifier", - "start": 3427, - "end": 3440, + "start": 4930, + "end": 4943, "loc": { "start": { - "line": 136, + "line": 195, "column": 64 }, "end": { - "line": 136, + "line": 195, "column": 77 }, "identifierName": "sortArguments" @@ -2694,29 +2694,29 @@ }, { "type": "ReturnStatement", - "start": 3453, - "end": 3474, + "start": 4956, + "end": 4977, "loc": { "start": { - "line": 138, + "line": 197, "column": 4 }, "end": { - "line": 138, + "line": 197, "column": 25 } }, "argument": { "type": "Identifier", - "start": 3460, - "end": 3473, + "start": 4963, + "end": 4976, "loc": { "start": { - "line": 138, + "line": 197, "column": 11 }, "end": { - "line": 138, + "line": 197, "column": 24 }, "identifierName": "processedData" @@ -2732,15 +2732,15 @@ { "type": "CommentBlock", "value": "*\n * Extracts the processed set of data\n * (i.e sorted, filtered) from the\n * raw data provided.\n * @access private\n * @return {Array} The array of processed data items.\n ", - "start": 2779, - "end": 2966, + "start": 4282, + "end": 4469, "loc": { "start": { - "line": 118, + "line": 177, "column": 2 }, "end": { - "line": 124, + "line": 183, "column": 5 } } @@ -2750,15 +2750,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 3482, - "end": 3525, + "start": 4985, + "end": 5028, "loc": { "start": { - "line": 141, + "line": 200, "column": 2 }, "end": { - "line": 143, + "line": 202, "column": 5 } } @@ -2766,15 +2766,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 3529, - "end": 3590, + "start": 5032, + "end": 5093, "loc": { "start": { - "line": 145, + "line": 204, "column": 2 }, "end": { - "line": 149, + "line": 208, "column": 5 } } @@ -2783,15 +2783,15 @@ }, { "type": "ClassMethod", - "start": 3593, - "end": 3768, + "start": 5096, + "end": 5271, "loc": { "start": { - "line": 150, + "line": 209, "column": 2 }, "end": { - "line": 158, + "line": 217, "column": 3 } }, @@ -2799,15 +2799,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3597, - "end": 3602, + "start": 5100, + "end": 5105, "loc": { "start": { - "line": 150, + "line": 209, "column": 6 }, "end": { - "line": 150, + "line": 209, "column": 11 }, "identifierName": "total" @@ -2822,73 +2822,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 3605, - "end": 3768, + "start": 5108, + "end": 5271, "loc": { "start": { - "line": 150, + "line": 209, "column": 14 }, "end": { - "line": 158, + "line": 217, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 3611, - "end": 3684, + "start": 5114, + "end": 5187, "loc": { "start": { - "line": 151, + "line": 210, "column": 4 }, "end": { - "line": 153, + "line": 212, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3615, - "end": 3634, + "start": 5118, + "end": 5137, "loc": { "start": { - "line": 151, + "line": 210, "column": 8 }, "end": { - "line": 151, + "line": 210, "column": 27 } }, "object": { "type": "ThisExpression", - "start": 3615, - "end": 3619, + "start": 5118, + "end": 5122, "loc": { "start": { - "line": 151, + "line": 210, "column": 8 }, "end": { - "line": 151, + "line": 210, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3620, - "end": 3634, + "start": 5123, + "end": 5137, "loc": { "start": { - "line": 151, + "line": 210, "column": 13 }, "end": { - "line": 151, + "line": 210, "column": 27 }, "identifierName": "_processedData" @@ -2899,87 +2899,87 @@ }, "consequent": { "type": "BlockStatement", - "start": 3636, - "end": 3684, + "start": 5139, + "end": 5187, "loc": { "start": { - "line": 151, + "line": 210, "column": 29 }, "end": { - "line": 153, + "line": 212, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3644, - "end": 3678, + "start": 5147, + "end": 5181, "loc": { "start": { - "line": 152, + "line": 211, "column": 6 }, "end": { - "line": 152, + "line": 211, "column": 40 } }, "argument": { "type": "MemberExpression", - "start": 3651, - "end": 3677, + "start": 5154, + "end": 5180, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 39 } }, "object": { "type": "MemberExpression", - "start": 3651, - "end": 3670, + "start": 5154, + "end": 5173, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 32 } }, "object": { "type": "ThisExpression", - "start": 3651, - "end": 3655, + "start": 5154, + "end": 5158, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 17 } } }, "property": { "type": "Identifier", - "start": 3656, - "end": 3670, + "start": 5159, + "end": 5173, "loc": { "start": { - "line": 152, + "line": 211, "column": 18 }, "end": { - "line": 152, + "line": 211, "column": 32 }, "identifierName": "_processedData" @@ -2990,15 +2990,15 @@ }, "property": { "type": "Identifier", - "start": 3671, - "end": 3677, + "start": 5174, + "end": 5180, "loc": { "start": { - "line": 152, + "line": 211, "column": 33 }, "end": { - "line": 152, + "line": 211, "column": 39 }, "identifierName": "length" @@ -3015,58 +3015,58 @@ }, { "type": "IfStatement", - "start": 3689, - "end": 3750, + "start": 5192, + "end": 5253, "loc": { "start": { - "line": 154, + "line": 213, "column": 4 }, "end": { - "line": 156, + "line": 215, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3693, - "end": 3706, + "start": 5196, + "end": 5209, "loc": { "start": { - "line": 154, + "line": 213, "column": 8 }, "end": { - "line": 154, + "line": 213, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 3693, - "end": 3697, + "start": 5196, + "end": 5200, "loc": { "start": { - "line": 154, + "line": 213, "column": 8 }, "end": { - "line": 154, + "line": 213, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3698, - "end": 3706, + "start": 5201, + "end": 5209, "loc": { "start": { - "line": 154, + "line": 213, "column": 13 }, "end": { - "line": 154, + "line": 213, "column": 21 }, "identifierName": "_rawData" @@ -3077,87 +3077,87 @@ }, "consequent": { "type": "BlockStatement", - "start": 3708, - "end": 3750, + "start": 5211, + "end": 5253, "loc": { "start": { - "line": 154, + "line": 213, "column": 23 }, "end": { - "line": 156, + "line": 215, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3716, - "end": 3744, + "start": 5219, + "end": 5247, "loc": { "start": { - "line": 155, + "line": 214, "column": 6 }, "end": { - "line": 155, + "line": 214, "column": 34 } }, "argument": { "type": "MemberExpression", - "start": 3723, - "end": 3743, + "start": 5226, + "end": 5246, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 33 } }, "object": { "type": "MemberExpression", - "start": 3723, - "end": 3736, + "start": 5226, + "end": 5239, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 26 } }, "object": { "type": "ThisExpression", - "start": 3723, - "end": 3727, + "start": 5226, + "end": 5230, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 17 } } }, "property": { "type": "Identifier", - "start": 3728, - "end": 3736, + "start": 5231, + "end": 5239, "loc": { "start": { - "line": 155, + "line": 214, "column": 18 }, "end": { - "line": 155, + "line": 214, "column": 26 }, "identifierName": "_rawData" @@ -3168,15 +3168,15 @@ }, "property": { "type": "Identifier", - "start": 3737, - "end": 3743, + "start": 5240, + "end": 5246, "loc": { "start": { - "line": 155, + "line": 214, "column": 27 }, "end": { - "line": 155, + "line": 214, "column": 33 }, "identifierName": "length" @@ -3193,29 +3193,29 @@ }, { "type": "ReturnStatement", - "start": 3755, - "end": 3764, + "start": 5258, + "end": 5267, "loc": { "start": { - "line": 157, + "line": 216, "column": 4 }, "end": { - "line": 157, + "line": 216, "column": 13 } }, "argument": { "type": "NumericLiteral", - "start": 3762, - "end": 3763, + "start": 5265, + "end": 5266, "loc": { "start": { - "line": 157, + "line": 216, "column": 11 }, "end": { - "line": 157, + "line": 216, "column": 12 } }, @@ -3234,15 +3234,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 3482, - "end": 3525, + "start": 4985, + "end": 5028, "loc": { "start": { - "line": 141, + "line": 200, "column": 2 }, "end": { - "line": 143, + "line": 202, "column": 5 } } @@ -3250,15 +3250,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 3529, - "end": 3590, + "start": 5032, + "end": 5093, "loc": { "start": { - "line": 145, + "line": 204, "column": 2 }, "end": { - "line": 149, + "line": 208, "column": 5 } } @@ -3268,15 +3268,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 3772, - "end": 3833, + "start": 5275, + "end": 5336, "loc": { "start": { - "line": 160, + "line": 219, "column": 2 }, "end": { - "line": 164, + "line": 223, "column": 5 } } @@ -3285,15 +3285,15 @@ }, { "type": "ClassMethod", - "start": 3836, - "end": 3875, + "start": 5339, + "end": 5378, "loc": { "start": { - "line": 165, + "line": 224, "column": 2 }, "end": { - "line": 167, + "line": 226, "column": 3 } }, @@ -3301,15 +3301,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3840, - "end": 3844, + "start": 5343, + "end": 5347, "loc": { "start": { - "line": 165, + "line": 224, "column": 6 }, "end": { - "line": 165, + "line": 224, "column": 10 }, "identifierName": "data" @@ -3324,73 +3324,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 3847, - "end": 3875, + "start": 5350, + "end": 5378, "loc": { "start": { - "line": 165, + "line": 224, "column": 13 }, "end": { - "line": 167, + "line": 226, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 3853, - "end": 3871, + "start": 5356, + "end": 5374, "loc": { "start": { - "line": 166, + "line": 225, "column": 4 }, "end": { - "line": 166, + "line": 225, "column": 22 } }, "argument": { "type": "MemberExpression", - "start": 3860, - "end": 3870, + "start": 5363, + "end": 5373, "loc": { "start": { - "line": 166, + "line": 225, "column": 11 }, "end": { - "line": 166, + "line": 225, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 3860, - "end": 3864, + "start": 5363, + "end": 5367, "loc": { "start": { - "line": 166, + "line": 225, "column": 11 }, "end": { - "line": 166, + "line": 225, "column": 15 } } }, "property": { "type": "Identifier", - "start": 3865, - "end": 3870, + "start": 5368, + "end": 5373, "loc": { "start": { - "line": 166, + "line": 225, "column": 16 }, "end": { - "line": 166, + "line": 225, "column": 21 }, "identifierName": "_data" @@ -3408,15 +3408,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 3772, - "end": 3833, + "start": 5275, + "end": 5336, "loc": { "start": { - "line": 160, + "line": 219, "column": 2 }, "end": { - "line": 164, + "line": 223, "column": 5 } } @@ -3426,15 +3426,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 3879, - "end": 3920, + "start": 5382, + "end": 5423, "loc": { "start": { - "line": 169, + "line": 228, "column": 2 }, "end": { - "line": 172, + "line": 231, "column": 5 } } @@ -3443,15 +3443,15 @@ }, { "type": "ClassMethod", - "start": 3923, - "end": 4152, + "start": 5426, + "end": 5655, "loc": { "start": { - "line": 173, + "line": 232, "column": 2 }, "end": { - "line": 180, + "line": 239, "column": 3 } }, @@ -3459,15 +3459,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3929, - "end": 3936, + "start": 5432, + "end": 5439, "loc": { "start": { - "line": 173, + "line": 232, "column": 8 }, "end": { - "line": 173, + "line": 232, "column": 15 }, "identifierName": "_update" @@ -3482,44 +3482,44 @@ "params": [], "body": { "type": "BlockStatement", - "start": 3939, - "end": 4152, + "start": 5442, + "end": 5655, "loc": { "start": { - "line": 173, + "line": 232, "column": 18 }, "end": { - "line": 180, + "line": 239, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 3945, - "end": 3991, + "start": 5448, + "end": 5494, "loc": { "start": { - "line": 174, + "line": 233, "column": 4 }, "end": { - "line": 176, + "line": 235, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 3949, - "end": 3963, + "start": 5452, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 8 }, "end": { - "line": 174, + "line": 233, "column": 22 } }, @@ -3527,44 +3527,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 3950, - "end": 3963, + "start": 5453, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 9 }, "end": { - "line": 174, + "line": 233, "column": 22 } }, "object": { "type": "ThisExpression", - "start": 3950, - "end": 3954, + "start": 5453, + "end": 5457, "loc": { "start": { - "line": 174, + "line": 233, "column": 9 }, "end": { - "line": 174, + "line": 233, "column": 13 } } }, "property": { "type": "Identifier", - "start": 3955, - "end": 3963, + "start": 5458, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 14 }, "end": { - "line": 174, + "line": 233, "column": 22 }, "identifierName": "_rawData" @@ -3579,44 +3579,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 3965, - "end": 3991, + "start": 5468, + "end": 5494, "loc": { "start": { - "line": 174, + "line": 233, "column": 24 }, "end": { - "line": 176, + "line": 235, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3973, - "end": 3985, + "start": 5476, + "end": 5488, "loc": { "start": { - "line": 175, + "line": 234, "column": 6 }, "end": { - "line": 175, + "line": 234, "column": 18 } }, "argument": { "type": "NullLiteral", - "start": 3980, - "end": 3984, + "start": 5483, + "end": 5487, "loc": { "start": { - "line": 175, + "line": 234, "column": 13 }, "end": { - "line": 175, + "line": 234, "column": 17 } } @@ -3629,73 +3629,73 @@ }, { "type": "ExpressionStatement", - "start": 3996, - "end": 4043, + "start": 5499, + "end": 5546, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 51 } }, "expression": { "type": "AssignmentExpression", - "start": 3996, - "end": 4042, + "start": 5499, + "end": 5545, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 50 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3996, - "end": 4015, + "start": 5499, + "end": 5518, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 3996, - "end": 4000, + "start": 5499, + "end": 5503, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 8 } } }, "property": { "type": "Identifier", - "start": 4001, - "end": 4015, + "start": 5504, + "end": 5518, "loc": { "start": { - "line": 177, + "line": 236, "column": 9 }, "end": { - "line": 177, + "line": 236, "column": 23 }, "identifierName": "_processedData" @@ -3706,58 +3706,58 @@ }, "right": { "type": "CallExpression", - "start": 4018, - "end": 4042, + "start": 5521, + "end": 5545, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 50 } }, "callee": { "type": "MemberExpression", - "start": 4018, - "end": 4040, + "start": 5521, + "end": 5543, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 48 } }, "object": { "type": "ThisExpression", - "start": 4018, - "end": 4022, + "start": 5521, + "end": 5525, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 30 } } }, "property": { "type": "Identifier", - "start": 4023, - "end": 4040, + "start": 5526, + "end": 5543, "loc": { "start": { - "line": 177, + "line": 236, "column": 31 }, "end": { - "line": 177, + "line": 236, "column": 48 }, "identifierName": "_getProcessedData" @@ -3772,73 +3772,73 @@ }, { "type": "ExpressionStatement", - "start": 4048, - "end": 4125, + "start": 5551, + "end": 5628, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 81 } }, "expression": { "type": "AssignmentExpression", - "start": 4048, - "end": 4124, + "start": 5551, + "end": 5627, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 80 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4048, - "end": 4058, + "start": 5551, + "end": 5561, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 4048, - "end": 4052, + "start": 5551, + "end": 5555, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 8 } } }, "property": { "type": "Identifier", - "start": 4053, - "end": 4058, + "start": 5556, + "end": 5561, "loc": { "start": { - "line": 178, + "line": 237, "column": 9 }, "end": { - "line": 178, + "line": 237, "column": 14 }, "identifierName": "_data" @@ -3849,72 +3849,72 @@ }, "right": { "type": "CallExpression", - "start": 4061, - "end": 4124, + "start": 5564, + "end": 5627, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 80 } }, "callee": { "type": "MemberExpression", - "start": 4061, - "end": 4086, + "start": 5564, + "end": 5589, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 42 } }, "object": { "type": "MemberExpression", - "start": 4061, - "end": 4080, + "start": 5564, + "end": 5583, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 36 } }, "object": { "type": "ThisExpression", - "start": 4061, - "end": 4065, + "start": 5564, + "end": 5568, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 21 } } }, "property": { "type": "Identifier", - "start": 4066, - "end": 4080, + "start": 5569, + "end": 5583, "loc": { "start": { - "line": 178, + "line": 237, "column": 22 }, "end": { - "line": 178, + "line": 237, "column": 36 }, "identifierName": "_processedData" @@ -3925,15 +3925,15 @@ }, "property": { "type": "Identifier", - "start": 4081, - "end": 4086, + "start": 5584, + "end": 5589, "loc": { "start": { - "line": 178, + "line": 237, "column": 37 }, "end": { - "line": 178, + "line": 237, "column": 42 }, "identifierName": "slice" @@ -3945,44 +3945,44 @@ "arguments": [ { "type": "MemberExpression", - "start": 4087, - "end": 4098, + "start": 5590, + "end": 5601, "loc": { "start": { - "line": 178, + "line": 237, "column": 43 }, "end": { - "line": 178, + "line": 237, "column": 54 } }, "object": { "type": "ThisExpression", - "start": 4087, - "end": 4091, + "start": 5590, + "end": 5594, "loc": { "start": { - "line": 178, + "line": 237, "column": 43 }, "end": { - "line": 178, + "line": 237, "column": 47 } } }, "property": { "type": "Identifier", - "start": 4092, - "end": 4098, + "start": 5595, + "end": 5601, "loc": { "start": { - "line": 178, + "line": 237, "column": 48 }, "end": { - "line": 178, + "line": 237, "column": 54 }, "identifierName": "offset" @@ -3993,58 +3993,58 @@ }, { "type": "BinaryExpression", - "start": 4100, - "end": 4123, + "start": 5603, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 79 } }, "left": { "type": "MemberExpression", - "start": 4100, - "end": 4111, + "start": 5603, + "end": 5614, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 67 } }, "object": { "type": "ThisExpression", - "start": 4100, - "end": 4104, + "start": 5603, + "end": 5607, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 60 } } }, "property": { "type": "Identifier", - "start": 4105, - "end": 4111, + "start": 5608, + "end": 5614, "loc": { "start": { - "line": 178, + "line": 237, "column": 61 }, "end": { - "line": 178, + "line": 237, "column": 67 }, "identifierName": "offset" @@ -4056,44 +4056,44 @@ "operator": "+", "right": { "type": "MemberExpression", - "start": 4114, - "end": 4123, + "start": 5617, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 70 }, "end": { - "line": 178, + "line": 237, "column": 79 } }, "object": { "type": "ThisExpression", - "start": 4114, - "end": 4118, + "start": 5617, + "end": 5621, "loc": { "start": { - "line": 178, + "line": 237, "column": 70 }, "end": { - "line": 178, + "line": 237, "column": 74 } } }, "property": { "type": "Identifier", - "start": 4119, - "end": 4123, + "start": 5622, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 75 }, "end": { - "line": 178, + "line": 237, "column": 79 }, "identifierName": "size" @@ -4109,58 +4109,58 @@ }, { "type": "ReturnStatement", - "start": 4130, - "end": 4148, + "start": 5633, + "end": 5651, "loc": { "start": { - "line": 179, + "line": 238, "column": 4 }, "end": { - "line": 179, + "line": 238, "column": 22 } }, "argument": { "type": "MemberExpression", - "start": 4137, - "end": 4147, + "start": 5640, + "end": 5650, "loc": { "start": { - "line": 179, + "line": 238, "column": 11 }, "end": { - "line": 179, + "line": 238, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 4137, - "end": 4141, + "start": 5640, + "end": 5644, "loc": { "start": { - "line": 179, + "line": 238, "column": 11 }, "end": { - "line": 179, + "line": 238, "column": 15 } } }, "property": { "type": "Identifier", - "start": 4142, - "end": 4147, + "start": 5645, + "end": 5650, "loc": { "start": { - "line": 179, + "line": 238, "column": 16 }, "end": { - "line": 179, + "line": 238, "column": 21 }, "identifierName": "_data" @@ -4177,15 +4177,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 3879, - "end": 3920, + "start": 5382, + "end": 5423, "loc": { "start": { - "line": 169, + "line": 228, "column": 2 }, "end": { - "line": 172, + "line": 231, "column": 5 } } @@ -4200,72 +4200,72 @@ }, { "type": "ExpressionStatement", - "start": 4156, - "end": 4394, + "start": 5659, + "end": 5897, "loc": { "start": { - "line": 183, + "line": 242, "column": 0 }, "end": { - "line": 193, + "line": 252, "column": 2 } }, "expression": { "type": "AssignmentExpression", - "start": 4156, - "end": 4393, + "start": 5659, + "end": 5896, "loc": { "start": { - "line": 183, + "line": 242, "column": 0 }, "end": { - "line": 193, + "line": 252, "column": 1 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4156, - "end": 4190, + "start": 5659, + "end": 5693, "loc": { "start": { - "line": 183, + "line": 242, "column": 0 }, "end": { - "line": 183, + "line": 242, "column": 34 } }, "object": { "type": "MemberExpression", - "start": 4156, - "end": 4181, + "start": 5659, + "end": 5684, "loc": { "start": { - "line": 183, + "line": 242, "column": 0 }, "end": { - "line": 183, + "line": 242, "column": 25 } }, "object": { "type": "Identifier", - "start": 4156, - "end": 4171, + "start": 5659, + "end": 5674, "loc": { "start": { - "line": 183, + "line": 242, "column": 0 }, "end": { - "line": 183, + "line": 242, "column": 15 }, "identifierName": "ArrayDatasource" @@ -4274,15 +4274,15 @@ }, "property": { "type": "Identifier", - "start": 4172, - "end": 4181, + "start": 5675, + "end": 5684, "loc": { "start": { - "line": 183, + "line": 242, "column": 16 }, "end": { - "line": 183, + "line": 242, "column": 25 }, "identifierName": "prototype" @@ -4293,15 +4293,15 @@ }, "property": { "type": "Identifier", - "start": 4182, - "end": 4190, + "start": 5685, + "end": 5693, "loc": { "start": { - "line": 183, + "line": 242, "column": 26 }, "end": { - "line": 183, + "line": 242, "column": 34 }, "identifierName": "defaults" @@ -4312,30 +4312,30 @@ }, "right": { "type": "ObjectExpression", - "start": 4193, - "end": 4393, + "start": 5696, + "end": 5896, "loc": { "start": { - "line": 183, + "line": 242, "column": 37 }, "end": { - "line": 193, + "line": 252, "column": 1 } }, "properties": [ { "type": "ObjectProperty", - "start": 4197, - "end": 4207, + "start": 5700, + "end": 5710, "loc": { "start": { - "line": 184, + "line": 243, "column": 2 }, "end": { - "line": 184, + "line": 243, "column": 12 } }, @@ -4344,15 +4344,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4197, - "end": 4201, + "start": 5700, + "end": 5704, "loc": { "start": { - "line": 184, + "line": 243, "column": 2 }, "end": { - "line": 184, + "line": 243, "column": 6 }, "identifierName": "data" @@ -4361,15 +4361,15 @@ }, "value": { "type": "NullLiteral", - "start": 4203, - "end": 4207, + "start": 5706, + "end": 5710, "loc": { "start": { - "line": 184, + "line": 243, "column": 8 }, "end": { - "line": 184, + "line": 243, "column": 12 } } @@ -4377,15 +4377,15 @@ }, { "type": "ObjectMethod", - "start": 4249, - "end": 4301, + "start": 5752, + "end": 5804, "loc": { "start": { - "line": 186, + "line": 245, "column": 2 }, "end": { - "line": 188, + "line": 247, "column": 3 } }, @@ -4394,15 +4394,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4249, - "end": 4255, + "start": 5752, + "end": 5758, "loc": { "start": { - "line": 186, + "line": 245, "column": 2 }, "end": { - "line": 186, + "line": 245, "column": 8 }, "identifierName": "search" @@ -4418,15 +4418,15 @@ "params": [ { "type": "Identifier", - "start": 4256, - "end": 4260, + "start": 5759, + "end": 5763, "loc": { "start": { - "line": 186, + "line": 245, "column": 9 }, "end": { - "line": 186, + "line": 245, "column": 13 }, "identifierName": "data" @@ -4435,15 +4435,15 @@ }, { "type": "Identifier", - "start": 4262, - "end": 4277, + "start": 5765, + "end": 5780, "loc": { "start": { - "line": 186, + "line": 245, "column": 15 }, "end": { - "line": 186, + "line": 245, "column": 30 }, "identifierName": "searchArguments" @@ -4453,44 +4453,44 @@ ], "body": { "type": "BlockStatement", - "start": 4279, - "end": 4301, + "start": 5782, + "end": 5804, "loc": { "start": { - "line": 186, + "line": 245, "column": 32 }, "end": { - "line": 188, + "line": 247, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 4285, - "end": 4297, + "start": 5788, + "end": 5800, "loc": { "start": { - "line": 187, + "line": 246, "column": 4 }, "end": { - "line": 187, + "line": 246, "column": 16 } }, "argument": { "type": "Identifier", - "start": 4292, - "end": 4296, + "start": 5795, + "end": 5799, "loc": { "start": { - "line": 187, + "line": 246, "column": 11 }, "end": { - "line": 187, + "line": 246, "column": 15 }, "identifierName": "data" @@ -4505,15 +4505,15 @@ { "type": "CommentBlock", "value": " eslint-disable no-unused-vars ", - "start": 4211, - "end": 4246, + "start": 5714, + "end": 5749, "loc": { "start": { - "line": 185, + "line": 244, "column": 2 }, "end": { - "line": 185, + "line": 244, "column": 37 } } @@ -4522,15 +4522,15 @@ }, { "type": "ObjectMethod", - "start": 4305, - "end": 4353, + "start": 5808, + "end": 5856, "loc": { "start": { - "line": 189, + "line": 248, "column": 2 }, "end": { - "line": 191, + "line": 250, "column": 3 } }, @@ -4539,15 +4539,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4305, - "end": 4309, + "start": 5808, + "end": 5812, "loc": { "start": { - "line": 189, + "line": 248, "column": 2 }, "end": { - "line": 189, + "line": 248, "column": 6 }, "identifierName": "sort" @@ -4562,15 +4562,15 @@ "params": [ { "type": "Identifier", - "start": 4310, - "end": 4314, + "start": 5813, + "end": 5817, "loc": { "start": { - "line": 189, + "line": 248, "column": 7 }, "end": { - "line": 189, + "line": 248, "column": 11 }, "identifierName": "data" @@ -4579,15 +4579,15 @@ }, { "type": "Identifier", - "start": 4316, - "end": 4329, + "start": 5819, + "end": 5832, "loc": { "start": { - "line": 189, + "line": 248, "column": 13 }, "end": { - "line": 189, + "line": 248, "column": 26 }, "identifierName": "sortArguments" @@ -4597,44 +4597,44 @@ ], "body": { "type": "BlockStatement", - "start": 4331, - "end": 4353, + "start": 5834, + "end": 5856, "loc": { "start": { - "line": 189, + "line": 248, "column": 28 }, "end": { - "line": 191, + "line": 250, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 4337, - "end": 4349, + "start": 5840, + "end": 5852, "loc": { "start": { - "line": 190, + "line": 249, "column": 4 }, "end": { - "line": 190, + "line": 249, "column": 16 } }, "argument": { "type": "Identifier", - "start": 4344, - "end": 4348, + "start": 5847, + "end": 5851, "loc": { "start": { - "line": 190, + "line": 249, "column": 11 }, "end": { - "line": 190, + "line": 249, "column": 15 }, "identifierName": "data" @@ -4652,29 +4652,29 @@ }, { "type": "Identifier", - "start": 4396, - "end": 4427, + "start": 5899, + "end": 5930, "loc": { "start": { - "line": 195, + "line": 254, "column": 0 }, "end": { - "line": 195, + "line": 254, "column": 31 } }, "declaration": { "type": "Identifier", - "start": 4411, - "end": 4426, + "start": 5914, + "end": 5929, "loc": { "start": { - "line": 195, + "line": 254, "column": 15 }, "end": { - "line": 195, + "line": 254, "column": 30 }, "identifierName": "ArrayDatasource" @@ -4687,43 +4687,43 @@ }, { "type": "ExportDefaultDeclaration", - "start": 4396, - "end": 4427, + "start": 5899, + "end": 5930, "loc": { "start": { - "line": 195, + "line": 254, "column": 0 }, "end": { - "line": 195, + "line": 254, "column": 31 } }, "declaration": { "type": "ClassDeclaration", - "start": 624, - "end": 4154, + "start": 2127, + "end": 5657, "loc": { "start": { - "line": 28, + "line": 87, "column": 0 }, "end": { - "line": 181, + "line": 240, "column": 1 } }, "id": { "type": "Identifier", - "start": 630, - "end": 645, + "start": 2133, + "end": 2148, "loc": { "start": { - "line": 28, + "line": 87, "column": 6 }, "end": { - "line": 28, + "line": 87, "column": 21 }, "identifierName": "ArrayDatasource" @@ -4733,15 +4733,15 @@ }, "superClass": { "type": "Identifier", - "start": 654, - "end": 668, + "start": 2157, + "end": 2171, "loc": { "start": { - "line": 28, + "line": 87, "column": 30 }, "end": { - "line": 28, + "line": 87, "column": 44 }, "identifierName": "DatasourceBase" @@ -4750,30 +4750,30 @@ }, "body": { "type": "ClassBody", - "start": 669, - "end": 4154, + "start": 2172, + "end": 5657, "loc": { "start": { - "line": 28, + "line": 87, "column": 45 }, "end": { - "line": 181, + "line": 240, "column": 1 } }, "body": [ { "type": "ClassMethod", - "start": 1570, - "end": 2775, + "start": 3073, + "end": 4278, "loc": { "start": { - "line": 61, + "line": 120, "column": 2 }, "end": { - "line": 116, + "line": 175, "column": 3 } }, @@ -4781,15 +4781,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 1570, - "end": 1581, + "start": 3073, + "end": 3084, "loc": { "start": { - "line": 61, + "line": 120, "column": 2 }, "end": { - "line": 61, + "line": 120, "column": 13 }, "identifierName": "constructor" @@ -4805,29 +4805,29 @@ "params": [ { "type": "AssignmentPattern", - "start": 1582, - "end": 1594, + "start": 3085, + "end": 3097, "loc": { "start": { - "line": 61, + "line": 120, "column": 14 }, "end": { - "line": 61, + "line": 120, "column": 26 } }, "left": { "type": "Identifier", - "start": 1582, - "end": 1589, + "start": 3085, + "end": 3092, "loc": { "start": { - "line": 61, + "line": 120, "column": 14 }, "end": { - "line": 61, + "line": 120, "column": 21 }, "identifierName": "options" @@ -4836,15 +4836,15 @@ }, "right": { "type": "ObjectExpression", - "start": 1592, - "end": 1594, + "start": 3095, + "end": 3097, "loc": { "start": { - "line": 61, + "line": 120, "column": 24 }, "end": { - "line": 61, + "line": 120, "column": 26 } }, @@ -4854,59 +4854,59 @@ ], "body": { "type": "BlockStatement", - "start": 1596, - "end": 2775, + "start": 3099, + "end": 4278, "loc": { "start": { - "line": 61, + "line": 120, "column": 28 }, "end": { - "line": 116, + "line": 175, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 1602, - "end": 1695, + "start": 3105, + "end": 3198, "loc": { "start": { - "line": 62, + "line": 121, "column": 4 }, "end": { - "line": 65, + "line": 124, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 1608, - "end": 1694, + "start": 3111, + "end": 3197, "loc": { "start": { - "line": 62, + "line": 121, "column": 10 }, "end": { - "line": 65, + "line": 124, "column": 5 } }, "id": { "type": "Identifier", - "start": 1608, - "end": 1621, + "start": 3111, + "end": 3124, "loc": { "start": { - "line": 62, + "line": 121, "column": 10 }, "end": { - "line": 62, + "line": 121, "column": 23 }, "identifierName": "mergedOptions" @@ -4915,72 +4915,72 @@ }, "init": { "type": "ObjectExpression", - "start": 1624, - "end": 1694, + "start": 3127, + "end": 3197, "loc": { "start": { - "line": 62, + "line": 121, "column": 26 }, "end": { - "line": 65, + "line": 124, "column": 5 } }, "properties": [ { "type": "SpreadProperty", - "start": 1632, - "end": 1669, + "start": 3135, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 6 }, "end": { - "line": 63, + "line": 122, "column": 43 } }, "argument": { "type": "MemberExpression", - "start": 1635, - "end": 1669, + "start": 3138, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 43 } }, "object": { "type": "MemberExpression", - "start": 1635, - "end": 1660, + "start": 3138, + "end": 3163, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 34 } }, "object": { "type": "Identifier", - "start": 1635, - "end": 1650, + "start": 3138, + "end": 3153, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 24 }, "identifierName": "ArrayDatasource" @@ -4989,15 +4989,15 @@ }, "property": { "type": "Identifier", - "start": 1651, - "end": 1660, + "start": 3154, + "end": 3163, "loc": { "start": { - "line": 63, + "line": 122, "column": 25 }, "end": { - "line": 63, + "line": 122, "column": 34 }, "identifierName": "prototype" @@ -5008,15 +5008,15 @@ }, "property": { "type": "Identifier", - "start": 1661, - "end": 1669, + "start": 3164, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 35 }, "end": { - "line": 63, + "line": 122, "column": 43 }, "identifierName": "defaults" @@ -5028,29 +5028,29 @@ }, { "type": "SpreadProperty", - "start": 1677, - "end": 1687, + "start": 3180, + "end": 3190, "loc": { "start": { - "line": 64, + "line": 123, "column": 6 }, "end": { - "line": 64, + "line": 123, "column": 16 } }, "argument": { "type": "Identifier", - "start": 1680, - "end": 1687, + "start": 3183, + "end": 3190, "loc": { "start": { - "line": 64, + "line": 123, "column": 9 }, "end": { - "line": 64, + "line": 123, "column": 16 }, "identifierName": "options" @@ -5066,43 +5066,43 @@ }, { "type": "ExpressionStatement", - "start": 1700, - "end": 1721, + "start": 3203, + "end": 3224, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 25 } }, "expression": { "type": "CallExpression", - "start": 1700, - "end": 1720, + "start": 3203, + "end": 3223, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 24 } }, "callee": { "type": "Super", - "start": 1700, - "end": 1705, + "start": 3203, + "end": 3208, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 9 } } @@ -5110,15 +5110,15 @@ "arguments": [ { "type": "Identifier", - "start": 1706, - "end": 1719, + "start": 3209, + "end": 3222, "loc": { "start": { - "line": 66, + "line": 125, "column": 10 }, "end": { - "line": 66, + "line": 125, "column": 23 }, "identifierName": "mergedOptions" @@ -5131,15 +5131,15 @@ { "type": "CommentBlock", "value": "*\n * The raw, unfiltered, unsorted,\n * unpaginated set of data.\n *\n * @access private\n * @type {?Array}\n ", - "start": 1726, - "end": 1859, + "start": 3229, + "end": 3362, "loc": { "start": { - "line": 67, + "line": 126, "column": 4 }, "end": { - "line": 73, + "line": 132, "column": 7 } } @@ -5148,58 +5148,58 @@ }, { "type": "ExpressionStatement", - "start": 1864, - "end": 1899, + "start": 3367, + "end": 3402, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 39 } }, "expression": { "type": "AssignmentExpression", - "start": 1864, - "end": 1898, + "start": 3367, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 38 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 1864, - "end": 1877, + "start": 3367, + "end": 3380, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 17 } }, "object": { "type": "ThisExpression", - "start": 1864, - "end": 1868, + "start": 3367, + "end": 3371, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 8 } }, @@ -5207,15 +5207,15 @@ }, "property": { "type": "Identifier", - "start": 1869, - "end": 1877, + "start": 3372, + "end": 3380, "loc": { "start": { - "line": 74, + "line": 133, "column": 9 }, "end": { - "line": 74, + "line": 133, "column": 17 }, "identifierName": "_rawData" @@ -5227,29 +5227,29 @@ }, "right": { "type": "MemberExpression", - "start": 1880, - "end": 1898, + "start": 3383, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 20 }, "end": { - "line": 74, + "line": 133, "column": 38 } }, "object": { "type": "Identifier", - "start": 1880, - "end": 1893, + "start": 3383, + "end": 3396, "loc": { "start": { - "line": 74, + "line": 133, "column": 20 }, "end": { - "line": 74, + "line": 133, "column": 33 }, "identifierName": "mergedOptions" @@ -5258,15 +5258,15 @@ }, "property": { "type": "Identifier", - "start": 1894, - "end": 1898, + "start": 3397, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 34 }, "end": { - "line": 74, + "line": 133, "column": 38 }, "identifierName": "data" @@ -5281,15 +5281,15 @@ { "type": "CommentBlock", "value": "*\n * The raw, unfiltered, unsorted,\n * unpaginated set of data.\n *\n * @access private\n * @type {?Array}\n ", - "start": 1726, - "end": 1859, + "start": 3229, + "end": 3362, "loc": { "start": { - "line": 67, + "line": 126, "column": 4 }, "end": { - "line": 73, + "line": 132, "column": 7 } } @@ -5299,15 +5299,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted set of data.\n * This is not paginated.\n * Extracted from the raw data\n * ({@link ArrayDatasource#_rawData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 1905, - "end": 2116, + "start": 3408, + "end": 3619, "loc": { "start": { - "line": 76, + "line": 135, "column": 4 }, "end": { - "line": 84, + "line": 143, "column": 7 } } @@ -5316,58 +5316,58 @@ }, { "type": "ExpressionStatement", - "start": 2121, - "end": 2148, + "start": 3624, + "end": 3651, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 31 } }, "expression": { "type": "AssignmentExpression", - "start": 2121, - "end": 2147, + "start": 3624, + "end": 3650, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 30 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2121, - "end": 2140, + "start": 3624, + "end": 3643, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 2121, - "end": 2125, + "start": 3624, + "end": 3628, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 8 } }, @@ -5375,15 +5375,15 @@ }, "property": { "type": "Identifier", - "start": 2126, - "end": 2140, + "start": 3629, + "end": 3643, "loc": { "start": { - "line": 85, + "line": 144, "column": 9 }, "end": { - "line": 85, + "line": 144, "column": 23 }, "identifierName": "_processedData" @@ -5395,15 +5395,15 @@ }, "right": { "type": "NullLiteral", - "start": 2143, - "end": 2147, + "start": 3646, + "end": 3650, "loc": { "start": { - "line": 85, + "line": 144, "column": 26 }, "end": { - "line": 85, + "line": 144, "column": 30 } } @@ -5414,15 +5414,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted set of data.\n * This is not paginated.\n * Extracted from the raw data\n * ({@link ArrayDatasource#_rawData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 1905, - "end": 2116, + "start": 3408, + "end": 3619, "loc": { "start": { - "line": 76, + "line": 135, "column": 4 }, "end": { - "line": 84, + "line": 143, "column": 7 } } @@ -5432,15 +5432,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted, paginated set\n * of data. Extracted from the processed data\n * ({@link ArrayDatasource#_processedData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 2154, - "end": 2358, + "start": 3657, + "end": 3861, "loc": { "start": { - "line": 87, + "line": 146, "column": 4 }, "end": { - "line": 94, + "line": 153, "column": 7 } } @@ -5449,58 +5449,58 @@ }, { "type": "ExpressionStatement", - "start": 2363, - "end": 2381, + "start": 3866, + "end": 3884, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 22 } }, "expression": { "type": "AssignmentExpression", - "start": 2363, - "end": 2380, + "start": 3866, + "end": 3883, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 21 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2363, - "end": 2373, + "start": 3866, + "end": 3876, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 2363, - "end": 2367, + "start": 3866, + "end": 3870, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 8 } }, @@ -5508,15 +5508,15 @@ }, "property": { "type": "Identifier", - "start": 2368, - "end": 2373, + "start": 3871, + "end": 3876, "loc": { "start": { - "line": 95, + "line": 154, "column": 9 }, "end": { - "line": 95, + "line": 154, "column": 14 }, "identifierName": "_data" @@ -5528,15 +5528,15 @@ }, "right": { "type": "NullLiteral", - "start": 2376, - "end": 2380, + "start": 3879, + "end": 3883, "loc": { "start": { - "line": 95, + "line": 154, "column": 17 }, "end": { - "line": 95, + "line": 154, "column": 21 } } @@ -5547,15 +5547,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted, paginated set\n * of data. Extracted from the processed data\n * ({@link ArrayDatasource#_processedData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 2154, - "end": 2358, + "start": 3657, + "end": 3861, "loc": { "start": { - "line": 87, + "line": 146, "column": 4 }, "end": { - "line": 94, + "line": 153, "column": 7 } } @@ -5565,15 +5565,15 @@ { "type": "CommentBlock", "value": "*\n * The search callback, called\n * when search operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2387, - "end": 2539, + "start": 3890, + "end": 4042, "loc": { "start": { - "line": 97, + "line": 156, "column": 4 }, "end": { - "line": 104, + "line": 163, "column": 7 } } @@ -5582,58 +5582,58 @@ }, { "type": "ExpressionStatement", - "start": 2544, - "end": 2580, + "start": 4047, + "end": 4083, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 40 } }, "expression": { "type": "AssignmentExpression", - "start": 2544, - "end": 2579, + "start": 4047, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 39 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2544, - "end": 2556, + "start": 4047, + "end": 4059, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 16 } }, "object": { "type": "ThisExpression", - "start": 2544, - "end": 2548, + "start": 4047, + "end": 4051, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 8 } }, @@ -5641,15 +5641,15 @@ }, "property": { "type": "Identifier", - "start": 2549, - "end": 2556, + "start": 4052, + "end": 4059, "loc": { "start": { - "line": 105, + "line": 164, "column": 9 }, "end": { - "line": 105, + "line": 164, "column": 16 }, "identifierName": "_search" @@ -5661,29 +5661,29 @@ }, "right": { "type": "MemberExpression", - "start": 2559, - "end": 2579, + "start": 4062, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 19 }, "end": { - "line": 105, + "line": 164, "column": 39 } }, "object": { "type": "Identifier", - "start": 2559, - "end": 2572, + "start": 4062, + "end": 4075, "loc": { "start": { - "line": 105, + "line": 164, "column": 19 }, "end": { - "line": 105, + "line": 164, "column": 32 }, "identifierName": "mergedOptions" @@ -5692,15 +5692,15 @@ }, "property": { "type": "Identifier", - "start": 2573, - "end": 2579, + "start": 4076, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 33 }, "end": { - "line": 105, + "line": 164, "column": 39 }, "identifierName": "search" @@ -5715,15 +5715,15 @@ { "type": "CommentBlock", "value": "*\n * The search callback, called\n * when search operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2387, - "end": 2539, + "start": 3890, + "end": 4042, "loc": { "start": { - "line": 97, + "line": 156, "column": 4 }, "end": { - "line": 104, + "line": 163, "column": 7 } } @@ -5733,15 +5733,15 @@ { "type": "CommentBlock", "value": "*\n * The sort callback, called\n * when sort operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2586, - "end": 2734, + "start": 4089, + "end": 4237, "loc": { "start": { - "line": 107, + "line": 166, "column": 4 }, "end": { - "line": 114, + "line": 173, "column": 7 } } @@ -5750,58 +5750,58 @@ }, { "type": "ExpressionStatement", - "start": 2739, - "end": 2771, + "start": 4242, + "end": 4274, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 36 } }, "expression": { "type": "AssignmentExpression", - "start": 2739, - "end": 2770, + "start": 4242, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 35 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 2739, - "end": 2749, + "start": 4242, + "end": 4252, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 2739, - "end": 2743, + "start": 4242, + "end": 4246, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 8 } }, @@ -5809,15 +5809,15 @@ }, "property": { "type": "Identifier", - "start": 2744, - "end": 2749, + "start": 4247, + "end": 4252, "loc": { "start": { - "line": 115, + "line": 174, "column": 9 }, "end": { - "line": 115, + "line": 174, "column": 14 }, "identifierName": "_sort" @@ -5829,29 +5829,29 @@ }, "right": { "type": "MemberExpression", - "start": 2752, - "end": 2770, + "start": 4255, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 17 }, "end": { - "line": 115, + "line": 174, "column": 35 } }, "object": { "type": "Identifier", - "start": 2752, - "end": 2765, + "start": 4255, + "end": 4268, "loc": { "start": { - "line": 115, + "line": 174, "column": 17 }, "end": { - "line": 115, + "line": 174, "column": 30 }, "identifierName": "mergedOptions" @@ -5860,15 +5860,15 @@ }, "property": { "type": "Identifier", - "start": 2766, - "end": 2770, + "start": 4269, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 31 }, "end": { - "line": 115, + "line": 174, "column": 35 }, "identifierName": "sort" @@ -5883,15 +5883,15 @@ { "type": "CommentBlock", "value": "*\n * The sort callback, called\n * when sort operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2586, - "end": 2734, + "start": 4089, + "end": 4237, "loc": { "start": { - "line": 107, + "line": 166, "column": 4 }, "end": { - "line": 114, + "line": 173, "column": 7 } } @@ -5906,15 +5906,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 673, - "end": 885, + "start": 2176, + "end": 2388, "loc": { "start": { - "line": 29, + "line": 88, "column": 2 }, "end": { - "line": 36, + "line": 95, "column": 5 } } @@ -5922,15 +5922,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 889, - "end": 1101, + "start": 2392, + "end": 2604, "loc": { "start": { - "line": 38, + "line": 97, "column": 2 }, "end": { - "line": 45, + "line": 104, "column": 5 } } @@ -5938,15 +5938,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {Array} options.data\n * The data array of items.\n * @param {Function} [options.search]\n * The search function callback, which\n * gets called when searching is requested.\n * @param {Function} [options.sort]\n * The sort function callback, which\n * gets called when sorting is requested.\n ", - "start": 1105, - "end": 1567, + "start": 2608, + "end": 3070, "loc": { "start": { - "line": 47, + "line": 106, "column": 2 }, "end": { - "line": 60, + "line": 119, "column": 5 } } @@ -5956,15 +5956,15 @@ { "type": "CommentBlock", "value": "*\n * Extracts the processed set of data\n * (i.e sorted, filtered) from the\n * raw data provided.\n * @access private\n * @return {Array} The array of processed data items.\n ", - "start": 2779, - "end": 2966, + "start": 4282, + "end": 4469, "loc": { "start": { - "line": 118, + "line": 177, "column": 2 }, "end": { - "line": 124, + "line": 183, "column": 5 } } @@ -5973,15 +5973,15 @@ }, { "type": "ClassMethod", - "start": 2969, - "end": 3478, + "start": 4472, + "end": 4981, "loc": { "start": { - "line": 125, + "line": 184, "column": 2 }, "end": { - "line": 139, + "line": 198, "column": 3 } }, @@ -5989,15 +5989,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 2969, - "end": 2986, + "start": 4472, + "end": 4489, "loc": { "start": { - "line": 125, + "line": 184, "column": 2 }, "end": { - "line": 125, + "line": 184, "column": 19 }, "identifierName": "_getProcessedData" @@ -6013,44 +6013,44 @@ "params": [], "body": { "type": "BlockStatement", - "start": 2989, - "end": 3478, + "start": 4492, + "end": 4981, "loc": { "start": { - "line": 125, + "line": 184, "column": 22 }, "end": { - "line": 139, + "line": 198, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 2995, - "end": 3039, + "start": 4498, + "end": 4542, "loc": { "start": { - "line": 126, + "line": 185, "column": 4 }, "end": { - "line": 128, + "line": 187, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 2999, - "end": 3013, + "start": 4502, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 8 }, "end": { - "line": 126, + "line": 185, "column": 22 } }, @@ -6058,44 +6058,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 3000, - "end": 3013, + "start": 4503, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 9 }, "end": { - "line": 126, + "line": 185, "column": 22 } }, "object": { "type": "ThisExpression", - "start": 3000, - "end": 3004, + "start": 4503, + "end": 4507, "loc": { "start": { - "line": 126, + "line": 185, "column": 9 }, "end": { - "line": 126, + "line": 185, "column": 13 } } }, "property": { "type": "Identifier", - "start": 3005, - "end": 3013, + "start": 4508, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 14 }, "end": { - "line": 126, + "line": 185, "column": 22 }, "identifierName": "_rawData" @@ -6110,44 +6110,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 3015, - "end": 3039, + "start": 4518, + "end": 4542, "loc": { "start": { - "line": 126, + "line": 185, "column": 24 }, "end": { - "line": 128, + "line": 187, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3023, - "end": 3033, + "start": 4526, + "end": 4536, "loc": { "start": { - "line": 127, + "line": 186, "column": 6 }, "end": { - "line": 127, + "line": 186, "column": 16 } }, "argument": { "type": "ArrayExpression", - "start": 3030, - "end": 3032, + "start": 4533, + "end": 4535, "loc": { "start": { - "line": 127, + "line": 186, "column": 13 }, "end": { - "line": 127, + "line": 186, "column": 15 } }, @@ -6161,44 +6161,44 @@ }, { "type": "VariableDeclaration", - "start": 3044, - "end": 3083, + "start": 4547, + "end": 4586, "loc": { "start": { - "line": 129, + "line": 188, "column": 4 }, "end": { - "line": 129, + "line": 188, "column": 43 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 3048, - "end": 3082, + "start": 4551, + "end": 4585, "loc": { "start": { - "line": 129, + "line": 188, "column": 8 }, "end": { - "line": 129, + "line": 188, "column": 42 } }, "id": { "type": "Identifier", - "start": 3048, - "end": 3061, + "start": 4551, + "end": 4564, "loc": { "start": { - "line": 129, + "line": 188, "column": 8 }, "end": { - "line": 129, + "line": 188, "column": 21 }, "identifierName": "processedData" @@ -6207,73 +6207,73 @@ }, "init": { "type": "ArrayExpression", - "start": 3064, - "end": 3082, + "start": 4567, + "end": 4585, "loc": { "start": { - "line": 129, + "line": 188, "column": 24 }, "end": { - "line": 129, + "line": 188, "column": 42 } }, "elements": [ { "type": "SpreadElement", - "start": 3065, - "end": 3081, + "start": 4568, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 25 }, "end": { - "line": 129, + "line": 188, "column": 41 } }, "argument": { "type": "MemberExpression", - "start": 3068, - "end": 3081, + "start": 4571, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 28 }, "end": { - "line": 129, + "line": 188, "column": 41 } }, "object": { "type": "ThisExpression", - "start": 3068, - "end": 3072, + "start": 4571, + "end": 4575, "loc": { "start": { - "line": 129, + "line": 188, "column": 28 }, "end": { - "line": 129, + "line": 188, "column": 32 } } }, "property": { "type": "Identifier", - "start": 3073, - "end": 3081, + "start": 4576, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 33 }, "end": { - "line": 129, + "line": 188, "column": 41 }, "identifierName": "_rawData" @@ -6291,58 +6291,58 @@ }, { "type": "IfStatement", - "start": 3088, - "end": 3318, + "start": 4591, + "end": 4821, "loc": { "start": { - "line": 130, + "line": 189, "column": 4 }, "end": { - "line": 134, + "line": 193, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3092, - "end": 3112, + "start": 4595, + "end": 4615, "loc": { "start": { - "line": 130, + "line": 189, "column": 8 }, "end": { - "line": 130, + "line": 189, "column": 28 } }, "object": { "type": "ThisExpression", - "start": 3092, - "end": 3096, + "start": 4595, + "end": 4599, "loc": { "start": { - "line": 130, + "line": 189, "column": 8 }, "end": { - "line": 130, + "line": 189, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3097, - "end": 3112, + "start": 4600, + "end": 4615, "loc": { "start": { - "line": 130, + "line": 189, "column": 13 }, "end": { - "line": 130, + "line": 189, "column": 28 }, "identifierName": "searchArguments" @@ -6353,59 +6353,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 3114, - "end": 3205, + "start": 4617, + "end": 4708, "loc": { "start": { - "line": 130, + "line": 189, "column": 30 }, "end": { - "line": 132, + "line": 191, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3122, - "end": 3199, + "start": 4625, + "end": 4702, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 83 } }, "expression": { "type": "AssignmentExpression", - "start": 3122, - "end": 3198, + "start": 4625, + "end": 4701, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 82 } }, "operator": "=", "left": { "type": "Identifier", - "start": 3122, - "end": 3135, + "start": 4625, + "end": 4638, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 19 }, "identifierName": "processedData" @@ -6414,72 +6414,72 @@ }, "right": { "type": "CallExpression", - "start": 3138, - "end": 3198, + "start": 4641, + "end": 4701, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 82 } }, "callee": { "type": "MemberExpression", - "start": 3138, - "end": 3155, + "start": 4641, + "end": 4658, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 39 } }, "object": { "type": "MemberExpression", - "start": 3138, - "end": 3150, + "start": 4641, + "end": 4653, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 34 } }, "object": { "type": "ThisExpression", - "start": 3138, - "end": 3142, + "start": 4641, + "end": 4645, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3143, - "end": 3150, + "start": 4646, + "end": 4653, "loc": { "start": { - "line": 131, + "line": 190, "column": 27 }, "end": { - "line": 131, + "line": 190, "column": 34 }, "identifierName": "_search" @@ -6490,15 +6490,15 @@ }, "property": { "type": "Identifier", - "start": 3151, - "end": 3155, + "start": 4654, + "end": 4658, "loc": { "start": { - "line": 131, + "line": 190, "column": 35 }, "end": { - "line": 131, + "line": 190, "column": 39 }, "identifierName": "call" @@ -6510,30 +6510,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 3156, - "end": 3160, + "start": 4659, + "end": 4663, "loc": { "start": { - "line": 131, + "line": 190, "column": 40 }, "end": { - "line": 131, + "line": 190, "column": 44 } } }, { "type": "Identifier", - "start": 3162, - "end": 3175, + "start": 4665, + "end": 4678, "loc": { "start": { - "line": 131, + "line": 190, "column": 46 }, "end": { - "line": 131, + "line": 190, "column": 59 }, "identifierName": "processedData" @@ -6542,44 +6542,44 @@ }, { "type": "MemberExpression", - "start": 3177, - "end": 3197, + "start": 4680, + "end": 4700, "loc": { "start": { - "line": 131, + "line": 190, "column": 61 }, "end": { - "line": 131, + "line": 190, "column": 81 } }, "object": { "type": "ThisExpression", - "start": 3177, - "end": 3181, + "start": 4680, + "end": 4684, "loc": { "start": { - "line": 131, + "line": 190, "column": 61 }, "end": { - "line": 131, + "line": 190, "column": 65 } } }, "property": { "type": "Identifier", - "start": 3182, - "end": 3197, + "start": 4685, + "end": 4700, "loc": { "start": { - "line": 131, + "line": 190, "column": 66 }, "end": { - "line": 131, + "line": 190, "column": 81 }, "identifierName": "searchArguments" @@ -6597,58 +6597,58 @@ }, "alternate": { "type": "IfStatement", - "start": 3211, - "end": 3318, + "start": 4714, + "end": 4821, "loc": { "start": { - "line": 132, + "line": 191, "column": 11 }, "end": { - "line": 134, + "line": 193, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3215, - "end": 3230, + "start": 4718, + "end": 4733, "loc": { "start": { - "line": 132, + "line": 191, "column": 15 }, "end": { - "line": 132, + "line": 191, "column": 30 } }, "object": { "type": "ThisExpression", - "start": 3215, - "end": 3219, + "start": 4718, + "end": 4722, "loc": { "start": { - "line": 132, + "line": 191, "column": 15 }, "end": { - "line": 132, + "line": 191, "column": 19 } } }, "property": { "type": "Identifier", - "start": 3220, - "end": 3230, + "start": 4723, + "end": 4733, "loc": { "start": { - "line": 132, + "line": 191, "column": 20 }, "end": { - "line": 132, + "line": 191, "column": 30 }, "identifierName": "searchText" @@ -6659,59 +6659,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 3232, - "end": 3318, + "start": 4735, + "end": 4821, "loc": { "start": { - "line": 132, + "line": 191, "column": 32 }, "end": { - "line": 134, + "line": 193, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3240, - "end": 3312, + "start": 4743, + "end": 4815, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 78 } }, "expression": { "type": "AssignmentExpression", - "start": 3240, - "end": 3311, + "start": 4743, + "end": 4814, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 77 } }, "operator": "=", "left": { "type": "Identifier", - "start": 3240, - "end": 3253, + "start": 4743, + "end": 4756, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 19 }, "identifierName": "processedData" @@ -6720,72 +6720,72 @@ }, "right": { "type": "CallExpression", - "start": 3256, - "end": 3311, + "start": 4759, + "end": 4814, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 77 } }, "callee": { "type": "MemberExpression", - "start": 3256, - "end": 3273, + "start": 4759, + "end": 4776, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 39 } }, "object": { "type": "MemberExpression", - "start": 3256, - "end": 3268, + "start": 4759, + "end": 4771, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 34 } }, "object": { "type": "ThisExpression", - "start": 3256, - "end": 3260, + "start": 4759, + "end": 4763, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3261, - "end": 3268, + "start": 4764, + "end": 4771, "loc": { "start": { - "line": 133, + "line": 192, "column": 27 }, "end": { - "line": 133, + "line": 192, "column": 34 }, "identifierName": "_search" @@ -6796,15 +6796,15 @@ }, "property": { "type": "Identifier", - "start": 3269, - "end": 3273, + "start": 4772, + "end": 4776, "loc": { "start": { - "line": 133, + "line": 192, "column": 35 }, "end": { - "line": 133, + "line": 192, "column": 39 }, "identifierName": "call" @@ -6816,30 +6816,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 3274, - "end": 3278, + "start": 4777, + "end": 4781, "loc": { "start": { - "line": 133, + "line": 192, "column": 40 }, "end": { - "line": 133, + "line": 192, "column": 44 } } }, { "type": "Identifier", - "start": 3280, - "end": 3293, + "start": 4783, + "end": 4796, "loc": { "start": { - "line": 133, + "line": 192, "column": 46 }, "end": { - "line": 133, + "line": 192, "column": 59 }, "identifierName": "processedData" @@ -6848,44 +6848,44 @@ }, { "type": "MemberExpression", - "start": 3295, - "end": 3310, + "start": 4798, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 192, "column": 61 }, "end": { - "line": 133, + "line": 192, "column": 76 } }, "object": { "type": "ThisExpression", - "start": 3295, - "end": 3299, + "start": 4798, + "end": 4802, "loc": { "start": { - "line": 133, + "line": 192, "column": 61 }, "end": { - "line": 133, + "line": 192, "column": 65 } } }, "property": { "type": "Identifier", - "start": 3300, - "end": 3310, + "start": 4803, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 192, "column": 66 }, "end": { - "line": 133, + "line": 192, "column": 76 }, "identifierName": "searchText" @@ -6906,72 +6906,72 @@ }, { "type": "IfStatement", - "start": 3323, - "end": 3448, + "start": 4826, + "end": 4951, "loc": { "start": { - "line": 135, + "line": 194, "column": 4 }, "end": { - "line": 137, + "line": 196, "column": 5 } }, "test": { "type": "LogicalExpression", - "start": 3327, - "end": 3359, + "start": 4830, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 40 } }, "left": { "type": "MemberExpression", - "start": 3327, - "end": 3337, + "start": 4830, + "end": 4840, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 18 } }, "object": { "type": "ThisExpression", - "start": 3327, - "end": 3331, + "start": 4830, + "end": 4834, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3332, - "end": 3337, + "start": 4835, + "end": 4840, "loc": { "start": { - "line": 135, + "line": 194, "column": 13 }, "end": { - "line": 135, + "line": 194, "column": 18 }, "identifierName": "_sort" @@ -6983,44 +6983,44 @@ "operator": "&&", "right": { "type": "MemberExpression", - "start": 3341, - "end": 3359, + "start": 4844, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 22 }, "end": { - "line": 135, + "line": 194, "column": 40 } }, "object": { "type": "ThisExpression", - "start": 3341, - "end": 3345, + "start": 4844, + "end": 4848, "loc": { "start": { - "line": 135, + "line": 194, "column": 22 }, "end": { - "line": 135, + "line": 194, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3346, - "end": 3359, + "start": 4849, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 27 }, "end": { - "line": 135, + "line": 194, "column": 40 }, "identifierName": "sortArguments" @@ -7032,59 +7032,59 @@ }, "consequent": { "type": "BlockStatement", - "start": 3361, - "end": 3448, + "start": 4864, + "end": 4951, "loc": { "start": { - "line": 135, + "line": 194, "column": 42 }, "end": { - "line": 137, + "line": 196, "column": 5 } }, "body": [ { "type": "ExpressionStatement", - "start": 3369, - "end": 3442, + "start": 4872, + "end": 4945, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 79 } }, "expression": { "type": "AssignmentExpression", - "start": 3369, - "end": 3441, + "start": 4872, + "end": 4944, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 78 } }, "operator": "=", "left": { "type": "Identifier", - "start": 3369, - "end": 3382, + "start": 4872, + "end": 4885, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 19 }, "identifierName": "processedData" @@ -7093,72 +7093,72 @@ }, "right": { "type": "CallExpression", - "start": 3385, - "end": 3441, + "start": 4888, + "end": 4944, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 78 } }, "callee": { "type": "MemberExpression", - "start": 3385, - "end": 3400, + "start": 4888, + "end": 4903, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 37 } }, "object": { "type": "MemberExpression", - "start": 3385, - "end": 3395, + "start": 4888, + "end": 4898, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 32 } }, "object": { "type": "ThisExpression", - "start": 3385, - "end": 3389, + "start": 4888, + "end": 4892, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 26 } } }, "property": { "type": "Identifier", - "start": 3390, - "end": 3395, + "start": 4893, + "end": 4898, "loc": { "start": { - "line": 136, + "line": 195, "column": 27 }, "end": { - "line": 136, + "line": 195, "column": 32 }, "identifierName": "_sort" @@ -7169,15 +7169,15 @@ }, "property": { "type": "Identifier", - "start": 3396, - "end": 3400, + "start": 4899, + "end": 4903, "loc": { "start": { - "line": 136, + "line": 195, "column": 33 }, "end": { - "line": 136, + "line": 195, "column": 37 }, "identifierName": "call" @@ -7189,30 +7189,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 3401, - "end": 3405, + "start": 4904, + "end": 4908, "loc": { "start": { - "line": 136, + "line": 195, "column": 38 }, "end": { - "line": 136, + "line": 195, "column": 42 } } }, { "type": "Identifier", - "start": 3407, - "end": 3420, + "start": 4910, + "end": 4923, "loc": { "start": { - "line": 136, + "line": 195, "column": 44 }, "end": { - "line": 136, + "line": 195, "column": 57 }, "identifierName": "processedData" @@ -7221,44 +7221,44 @@ }, { "type": "MemberExpression", - "start": 3422, - "end": 3440, + "start": 4925, + "end": 4943, "loc": { "start": { - "line": 136, + "line": 195, "column": 59 }, "end": { - "line": 136, + "line": 195, "column": 77 } }, "object": { "type": "ThisExpression", - "start": 3422, - "end": 3426, + "start": 4925, + "end": 4929, "loc": { "start": { - "line": 136, + "line": 195, "column": 59 }, "end": { - "line": 136, + "line": 195, "column": 63 } } }, "property": { "type": "Identifier", - "start": 3427, - "end": 3440, + "start": 4930, + "end": 4943, "loc": { "start": { - "line": 136, + "line": 195, "column": 64 }, "end": { - "line": 136, + "line": 195, "column": 77 }, "identifierName": "sortArguments" @@ -7278,29 +7278,29 @@ }, { "type": "ReturnStatement", - "start": 3453, - "end": 3474, + "start": 4956, + "end": 4977, "loc": { "start": { - "line": 138, + "line": 197, "column": 4 }, "end": { - "line": 138, + "line": 197, "column": 25 } }, "argument": { "type": "Identifier", - "start": 3460, - "end": 3473, + "start": 4963, + "end": 4976, "loc": { "start": { - "line": 138, + "line": 197, "column": 11 }, "end": { - "line": 138, + "line": 197, "column": 24 }, "identifierName": "processedData" @@ -7316,15 +7316,15 @@ { "type": "CommentBlock", "value": "*\n * Extracts the processed set of data\n * (i.e sorted, filtered) from the\n * raw data provided.\n * @access private\n * @return {Array} The array of processed data items.\n ", - "start": 2779, - "end": 2966, + "start": 4282, + "end": 4469, "loc": { "start": { - "line": 118, + "line": 177, "column": 2 }, "end": { - "line": 124, + "line": 183, "column": 5 } } @@ -7334,15 +7334,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 3482, - "end": 3525, + "start": 4985, + "end": 5028, "loc": { "start": { - "line": 141, + "line": 200, "column": 2 }, "end": { - "line": 143, + "line": 202, "column": 5 } } @@ -7350,15 +7350,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 3529, - "end": 3590, + "start": 5032, + "end": 5093, "loc": { "start": { - "line": 145, + "line": 204, "column": 2 }, "end": { - "line": 149, + "line": 208, "column": 5 } } @@ -7367,15 +7367,15 @@ }, { "type": "ClassMethod", - "start": 3593, - "end": 3768, + "start": 5096, + "end": 5271, "loc": { "start": { - "line": 150, + "line": 209, "column": 2 }, "end": { - "line": 158, + "line": 217, "column": 3 } }, @@ -7383,15 +7383,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3597, - "end": 3602, + "start": 5100, + "end": 5105, "loc": { "start": { - "line": 150, + "line": 209, "column": 6 }, "end": { - "line": 150, + "line": 209, "column": 11 }, "identifierName": "total" @@ -7406,73 +7406,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 3605, - "end": 3768, + "start": 5108, + "end": 5271, "loc": { "start": { - "line": 150, + "line": 209, "column": 14 }, "end": { - "line": 158, + "line": 217, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 3611, - "end": 3684, + "start": 5114, + "end": 5187, "loc": { "start": { - "line": 151, + "line": 210, "column": 4 }, "end": { - "line": 153, + "line": 212, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3615, - "end": 3634, + "start": 5118, + "end": 5137, "loc": { "start": { - "line": 151, + "line": 210, "column": 8 }, "end": { - "line": 151, + "line": 210, "column": 27 } }, "object": { "type": "ThisExpression", - "start": 3615, - "end": 3619, + "start": 5118, + "end": 5122, "loc": { "start": { - "line": 151, + "line": 210, "column": 8 }, "end": { - "line": 151, + "line": 210, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3620, - "end": 3634, + "start": 5123, + "end": 5137, "loc": { "start": { - "line": 151, + "line": 210, "column": 13 }, "end": { - "line": 151, + "line": 210, "column": 27 }, "identifierName": "_processedData" @@ -7483,87 +7483,87 @@ }, "consequent": { "type": "BlockStatement", - "start": 3636, - "end": 3684, + "start": 5139, + "end": 5187, "loc": { "start": { - "line": 151, + "line": 210, "column": 29 }, "end": { - "line": 153, + "line": 212, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3644, - "end": 3678, + "start": 5147, + "end": 5181, "loc": { "start": { - "line": 152, + "line": 211, "column": 6 }, "end": { - "line": 152, + "line": 211, "column": 40 } }, "argument": { "type": "MemberExpression", - "start": 3651, - "end": 3677, + "start": 5154, + "end": 5180, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 39 } }, "object": { "type": "MemberExpression", - "start": 3651, - "end": 3670, + "start": 5154, + "end": 5173, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 32 } }, "object": { "type": "ThisExpression", - "start": 3651, - "end": 3655, + "start": 5154, + "end": 5158, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 17 } } }, "property": { "type": "Identifier", - "start": 3656, - "end": 3670, + "start": 5159, + "end": 5173, "loc": { "start": { - "line": 152, + "line": 211, "column": 18 }, "end": { - "line": 152, + "line": 211, "column": 32 }, "identifierName": "_processedData" @@ -7574,15 +7574,15 @@ }, "property": { "type": "Identifier", - "start": 3671, - "end": 3677, + "start": 5174, + "end": 5180, "loc": { "start": { - "line": 152, + "line": 211, "column": 33 }, "end": { - "line": 152, + "line": 211, "column": 39 }, "identifierName": "length" @@ -7599,58 +7599,58 @@ }, { "type": "IfStatement", - "start": 3689, - "end": 3750, + "start": 5192, + "end": 5253, "loc": { "start": { - "line": 154, + "line": 213, "column": 4 }, "end": { - "line": 156, + "line": 215, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 3693, - "end": 3706, + "start": 5196, + "end": 5209, "loc": { "start": { - "line": 154, + "line": 213, "column": 8 }, "end": { - "line": 154, + "line": 213, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 3693, - "end": 3697, + "start": 5196, + "end": 5200, "loc": { "start": { - "line": 154, + "line": 213, "column": 8 }, "end": { - "line": 154, + "line": 213, "column": 12 } } }, "property": { "type": "Identifier", - "start": 3698, - "end": 3706, + "start": 5201, + "end": 5209, "loc": { "start": { - "line": 154, + "line": 213, "column": 13 }, "end": { - "line": 154, + "line": 213, "column": 21 }, "identifierName": "_rawData" @@ -7661,87 +7661,87 @@ }, "consequent": { "type": "BlockStatement", - "start": 3708, - "end": 3750, + "start": 5211, + "end": 5253, "loc": { "start": { - "line": 154, + "line": 213, "column": 23 }, "end": { - "line": 156, + "line": 215, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3716, - "end": 3744, + "start": 5219, + "end": 5247, "loc": { "start": { - "line": 155, + "line": 214, "column": 6 }, "end": { - "line": 155, + "line": 214, "column": 34 } }, "argument": { "type": "MemberExpression", - "start": 3723, - "end": 3743, + "start": 5226, + "end": 5246, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 33 } }, "object": { "type": "MemberExpression", - "start": 3723, - "end": 3736, + "start": 5226, + "end": 5239, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 26 } }, "object": { "type": "ThisExpression", - "start": 3723, - "end": 3727, + "start": 5226, + "end": 5230, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 17 } } }, "property": { "type": "Identifier", - "start": 3728, - "end": 3736, + "start": 5231, + "end": 5239, "loc": { "start": { - "line": 155, + "line": 214, "column": 18 }, "end": { - "line": 155, + "line": 214, "column": 26 }, "identifierName": "_rawData" @@ -7752,15 +7752,15 @@ }, "property": { "type": "Identifier", - "start": 3737, - "end": 3743, + "start": 5240, + "end": 5246, "loc": { "start": { - "line": 155, + "line": 214, "column": 27 }, "end": { - "line": 155, + "line": 214, "column": 33 }, "identifierName": "length" @@ -7777,29 +7777,29 @@ }, { "type": "ReturnStatement", - "start": 3755, - "end": 3764, + "start": 5258, + "end": 5267, "loc": { "start": { - "line": 157, + "line": 216, "column": 4 }, "end": { - "line": 157, + "line": 216, "column": 13 } }, "argument": { "type": "NumericLiteral", - "start": 3762, - "end": 3763, + "start": 5265, + "end": 5266, "loc": { "start": { - "line": 157, + "line": 216, "column": 11 }, "end": { - "line": 157, + "line": 216, "column": 12 } }, @@ -7818,15 +7818,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 3482, - "end": 3525, + "start": 4985, + "end": 5028, "loc": { "start": { - "line": 141, + "line": 200, "column": 2 }, "end": { - "line": 143, + "line": 202, "column": 5 } } @@ -7834,15 +7834,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 3529, - "end": 3590, + "start": 5032, + "end": 5093, "loc": { "start": { - "line": 145, + "line": 204, "column": 2 }, "end": { - "line": 149, + "line": 208, "column": 5 } } @@ -7852,15 +7852,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 3772, - "end": 3833, + "start": 5275, + "end": 5336, "loc": { "start": { - "line": 160, + "line": 219, "column": 2 }, "end": { - "line": 164, + "line": 223, "column": 5 } } @@ -7869,15 +7869,15 @@ }, { "type": "ClassMethod", - "start": 3836, - "end": 3875, + "start": 5339, + "end": 5378, "loc": { "start": { - "line": 165, + "line": 224, "column": 2 }, "end": { - "line": 167, + "line": 226, "column": 3 } }, @@ -7885,15 +7885,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3840, - "end": 3844, + "start": 5343, + "end": 5347, "loc": { "start": { - "line": 165, + "line": 224, "column": 6 }, "end": { - "line": 165, + "line": 224, "column": 10 }, "identifierName": "data" @@ -7908,73 +7908,73 @@ "params": [], "body": { "type": "BlockStatement", - "start": 3847, - "end": 3875, + "start": 5350, + "end": 5378, "loc": { "start": { - "line": 165, + "line": 224, "column": 13 }, "end": { - "line": 167, + "line": 226, "column": 3 } }, "body": [ { "type": "ReturnStatement", - "start": 3853, - "end": 3871, + "start": 5356, + "end": 5374, "loc": { "start": { - "line": 166, + "line": 225, "column": 4 }, "end": { - "line": 166, + "line": 225, "column": 22 } }, "argument": { "type": "MemberExpression", - "start": 3860, - "end": 3870, + "start": 5363, + "end": 5373, "loc": { "start": { - "line": 166, + "line": 225, "column": 11 }, "end": { - "line": 166, + "line": 225, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 3860, - "end": 3864, + "start": 5363, + "end": 5367, "loc": { "start": { - "line": 166, + "line": 225, "column": 11 }, "end": { - "line": 166, + "line": 225, "column": 15 } } }, "property": { "type": "Identifier", - "start": 3865, - "end": 3870, + "start": 5368, + "end": 5373, "loc": { "start": { - "line": 166, + "line": 225, "column": 16 }, "end": { - "line": 166, + "line": 225, "column": 21 }, "identifierName": "_data" @@ -7992,15 +7992,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 3772, - "end": 3833, + "start": 5275, + "end": 5336, "loc": { "start": { - "line": 160, + "line": 219, "column": 2 }, "end": { - "line": 164, + "line": 223, "column": 5 } } @@ -8010,15 +8010,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 3879, - "end": 3920, + "start": 5382, + "end": 5423, "loc": { "start": { - "line": 169, + "line": 228, "column": 2 }, "end": { - "line": 172, + "line": 231, "column": 5 } } @@ -8027,15 +8027,15 @@ }, { "type": "ClassMethod", - "start": 3923, - "end": 4152, + "start": 5426, + "end": 5655, "loc": { "start": { - "line": 173, + "line": 232, "column": 2 }, "end": { - "line": 180, + "line": 239, "column": 3 } }, @@ -8043,15 +8043,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3929, - "end": 3936, + "start": 5432, + "end": 5439, "loc": { "start": { - "line": 173, + "line": 232, "column": 8 }, "end": { - "line": 173, + "line": 232, "column": 15 }, "identifierName": "_update" @@ -8066,44 +8066,44 @@ "params": [], "body": { "type": "BlockStatement", - "start": 3939, - "end": 4152, + "start": 5442, + "end": 5655, "loc": { "start": { - "line": 173, + "line": 232, "column": 18 }, "end": { - "line": 180, + "line": 239, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 3945, - "end": 3991, + "start": 5448, + "end": 5494, "loc": { "start": { - "line": 174, + "line": 233, "column": 4 }, "end": { - "line": 176, + "line": 235, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 3949, - "end": 3963, + "start": 5452, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 8 }, "end": { - "line": 174, + "line": 233, "column": 22 } }, @@ -8111,44 +8111,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 3950, - "end": 3963, + "start": 5453, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 9 }, "end": { - "line": 174, + "line": 233, "column": 22 } }, "object": { "type": "ThisExpression", - "start": 3950, - "end": 3954, + "start": 5453, + "end": 5457, "loc": { "start": { - "line": 174, + "line": 233, "column": 9 }, "end": { - "line": 174, + "line": 233, "column": 13 } } }, "property": { "type": "Identifier", - "start": 3955, - "end": 3963, + "start": 5458, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 14 }, "end": { - "line": 174, + "line": 233, "column": 22 }, "identifierName": "_rawData" @@ -8163,44 +8163,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 3965, - "end": 3991, + "start": 5468, + "end": 5494, "loc": { "start": { - "line": 174, + "line": 233, "column": 24 }, "end": { - "line": 176, + "line": 235, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 3973, - "end": 3985, + "start": 5476, + "end": 5488, "loc": { "start": { - "line": 175, + "line": 234, "column": 6 }, "end": { - "line": 175, + "line": 234, "column": 18 } }, "argument": { "type": "NullLiteral", - "start": 3980, - "end": 3984, + "start": 5483, + "end": 5487, "loc": { "start": { - "line": 175, + "line": 234, "column": 13 }, "end": { - "line": 175, + "line": 234, "column": 17 } } @@ -8213,73 +8213,73 @@ }, { "type": "ExpressionStatement", - "start": 3996, - "end": 4043, + "start": 5499, + "end": 5546, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 51 } }, "expression": { "type": "AssignmentExpression", - "start": 3996, - "end": 4042, + "start": 5499, + "end": 5545, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 50 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3996, - "end": 4015, + "start": 5499, + "end": 5518, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 23 } }, "object": { "type": "ThisExpression", - "start": 3996, - "end": 4000, + "start": 5499, + "end": 5503, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 8 } } }, "property": { "type": "Identifier", - "start": 4001, - "end": 4015, + "start": 5504, + "end": 5518, "loc": { "start": { - "line": 177, + "line": 236, "column": 9 }, "end": { - "line": 177, + "line": 236, "column": 23 }, "identifierName": "_processedData" @@ -8290,58 +8290,58 @@ }, "right": { "type": "CallExpression", - "start": 4018, - "end": 4042, + "start": 5521, + "end": 5545, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 50 } }, "callee": { "type": "MemberExpression", - "start": 4018, - "end": 4040, + "start": 5521, + "end": 5543, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 48 } }, "object": { "type": "ThisExpression", - "start": 4018, - "end": 4022, + "start": 5521, + "end": 5525, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 30 } } }, "property": { "type": "Identifier", - "start": 4023, - "end": 4040, + "start": 5526, + "end": 5543, "loc": { "start": { - "line": 177, + "line": 236, "column": 31 }, "end": { - "line": 177, + "line": 236, "column": 48 }, "identifierName": "_getProcessedData" @@ -8356,73 +8356,73 @@ }, { "type": "ExpressionStatement", - "start": 4048, - "end": 4125, + "start": 5551, + "end": 5628, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 81 } }, "expression": { "type": "AssignmentExpression", - "start": 4048, - "end": 4124, + "start": 5551, + "end": 5627, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 80 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4048, - "end": 4058, + "start": 5551, + "end": 5561, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 14 } }, "object": { "type": "ThisExpression", - "start": 4048, - "end": 4052, + "start": 5551, + "end": 5555, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 8 } } }, "property": { "type": "Identifier", - "start": 4053, - "end": 4058, + "start": 5556, + "end": 5561, "loc": { "start": { - "line": 178, + "line": 237, "column": 9 }, "end": { - "line": 178, + "line": 237, "column": 14 }, "identifierName": "_data" @@ -8433,72 +8433,72 @@ }, "right": { "type": "CallExpression", - "start": 4061, - "end": 4124, + "start": 5564, + "end": 5627, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 80 } }, "callee": { "type": "MemberExpression", - "start": 4061, - "end": 4086, + "start": 5564, + "end": 5589, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 42 } }, "object": { "type": "MemberExpression", - "start": 4061, - "end": 4080, + "start": 5564, + "end": 5583, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 36 } }, "object": { "type": "ThisExpression", - "start": 4061, - "end": 4065, + "start": 5564, + "end": 5568, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 21 } } }, "property": { "type": "Identifier", - "start": 4066, - "end": 4080, + "start": 5569, + "end": 5583, "loc": { "start": { - "line": 178, + "line": 237, "column": 22 }, "end": { - "line": 178, + "line": 237, "column": 36 }, "identifierName": "_processedData" @@ -8509,15 +8509,15 @@ }, "property": { "type": "Identifier", - "start": 4081, - "end": 4086, + "start": 5584, + "end": 5589, "loc": { "start": { - "line": 178, + "line": 237, "column": 37 }, "end": { - "line": 178, + "line": 237, "column": 42 }, "identifierName": "slice" @@ -8529,44 +8529,44 @@ "arguments": [ { "type": "MemberExpression", - "start": 4087, - "end": 4098, + "start": 5590, + "end": 5601, "loc": { "start": { - "line": 178, + "line": 237, "column": 43 }, "end": { - "line": 178, + "line": 237, "column": 54 } }, "object": { "type": "ThisExpression", - "start": 4087, - "end": 4091, + "start": 5590, + "end": 5594, "loc": { "start": { - "line": 178, + "line": 237, "column": 43 }, "end": { - "line": 178, + "line": 237, "column": 47 } } }, "property": { "type": "Identifier", - "start": 4092, - "end": 4098, + "start": 5595, + "end": 5601, "loc": { "start": { - "line": 178, + "line": 237, "column": 48 }, "end": { - "line": 178, + "line": 237, "column": 54 }, "identifierName": "offset" @@ -8577,58 +8577,58 @@ }, { "type": "BinaryExpression", - "start": 4100, - "end": 4123, + "start": 5603, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 79 } }, "left": { "type": "MemberExpression", - "start": 4100, - "end": 4111, + "start": 5603, + "end": 5614, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 67 } }, "object": { "type": "ThisExpression", - "start": 4100, - "end": 4104, + "start": 5603, + "end": 5607, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 60 } } }, "property": { "type": "Identifier", - "start": 4105, - "end": 4111, + "start": 5608, + "end": 5614, "loc": { "start": { - "line": 178, + "line": 237, "column": 61 }, "end": { - "line": 178, + "line": 237, "column": 67 }, "identifierName": "offset" @@ -8640,44 +8640,44 @@ "operator": "+", "right": { "type": "MemberExpression", - "start": 4114, - "end": 4123, + "start": 5617, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 70 }, "end": { - "line": 178, + "line": 237, "column": 79 } }, "object": { "type": "ThisExpression", - "start": 4114, - "end": 4118, + "start": 5617, + "end": 5621, "loc": { "start": { - "line": 178, + "line": 237, "column": 70 }, "end": { - "line": 178, + "line": 237, "column": 74 } } }, "property": { "type": "Identifier", - "start": 4119, - "end": 4123, + "start": 5622, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 75 }, "end": { - "line": 178, + "line": 237, "column": 79 }, "identifierName": "size" @@ -8693,58 +8693,58 @@ }, { "type": "ReturnStatement", - "start": 4130, - "end": 4148, + "start": 5633, + "end": 5651, "loc": { "start": { - "line": 179, + "line": 238, "column": 4 }, "end": { - "line": 179, + "line": 238, "column": 22 } }, "argument": { "type": "MemberExpression", - "start": 4137, - "end": 4147, + "start": 5640, + "end": 5650, "loc": { "start": { - "line": 179, + "line": 238, "column": 11 }, "end": { - "line": 179, + "line": 238, "column": 21 } }, "object": { "type": "ThisExpression", - "start": 4137, - "end": 4141, + "start": 5640, + "end": 5644, "loc": { "start": { - "line": 179, + "line": 238, "column": 11 }, "end": { - "line": 179, + "line": 238, "column": 15 } } }, "property": { "type": "Identifier", - "start": 4142, - "end": 4147, + "start": 5645, + "end": 5650, "loc": { "start": { - "line": 179, + "line": 238, "column": 16 }, "end": { - "line": 179, + "line": 238, "column": 21 }, "identifierName": "_data" @@ -8761,15 +8761,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 3879, - "end": 3920, + "start": 5382, + "end": 5423, "loc": { "start": { - "line": 169, + "line": 228, "column": 2 }, "end": { - "line": 172, + "line": 231, "column": 5 } } @@ -8781,16 +8781,16 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Sorting\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * sort: (data, sortArguments = { 'firstName': 'asc' }) => {\n * return mockSortLogic(data, sortArguments);\n * }\n * });\n * await datasource.sort({ 'lastName': 'asc' });\n * console.log(`First page of sorted data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Filtering\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * search: (data, searchText) => {\n * return mockSearchLogic(data, searchText);\n * }\n * });\n * await datasource.search('John Smith');\n * console.log(`First page of filtered data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 48, - "end": 623, + "end": 2126, "loc": { "start": { "line": 3, "column": 0 }, "end": { - "line": 27, + "line": 86, "column": 3 } } @@ -8807,16 +8807,16 @@ "comments": [ { "type": "CommentBlock", - "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Sorting\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * sort: (data, sortArguments = { 'firstName': 'asc' }) => {\n * return mockSortLogic(data, sortArguments);\n * }\n * });\n * await datasource.sort({ 'lastName': 'asc' });\n * console.log(`First page of sorted data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Filtering\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * search: (data, searchText) => {\n * return mockSearchLogic(data, searchText);\n * }\n * });\n * await datasource.search('John Smith');\n * console.log(`First page of filtered data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 48, - "end": 623, + "end": 2126, "loc": { "start": { "line": 3, "column": 0 }, "end": { - "line": 27, + "line": 86, "column": 3 } } @@ -8824,15 +8824,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 673, - "end": 885, + "start": 2176, + "end": 2388, "loc": { "start": { - "line": 29, + "line": 88, "column": 2 }, "end": { - "line": 36, + "line": 95, "column": 5 } } @@ -8840,15 +8840,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 889, - "end": 1101, + "start": 2392, + "end": 2604, "loc": { "start": { - "line": 38, + "line": 97, "column": 2 }, "end": { - "line": 45, + "line": 104, "column": 5 } } @@ -8856,15 +8856,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {Array} options.data\n * The data array of items.\n * @param {Function} [options.search]\n * The search function callback, which\n * gets called when searching is requested.\n * @param {Function} [options.sort]\n * The sort function callback, which\n * gets called when sorting is requested.\n ", - "start": 1105, - "end": 1567, + "start": 2608, + "end": 3070, "loc": { "start": { - "line": 47, + "line": 106, "column": 2 }, "end": { - "line": 60, + "line": 119, "column": 5 } } @@ -8872,15 +8872,15 @@ { "type": "CommentBlock", "value": "*\n * The raw, unfiltered, unsorted,\n * unpaginated set of data.\n *\n * @access private\n * @type {?Array}\n ", - "start": 1726, - "end": 1859, + "start": 3229, + "end": 3362, "loc": { "start": { - "line": 67, + "line": 126, "column": 4 }, "end": { - "line": 73, + "line": 132, "column": 7 } } @@ -8888,15 +8888,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted set of data.\n * This is not paginated.\n * Extracted from the raw data\n * ({@link ArrayDatasource#_rawData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 1905, - "end": 2116, + "start": 3408, + "end": 3619, "loc": { "start": { - "line": 76, + "line": 135, "column": 4 }, "end": { - "line": 84, + "line": 143, "column": 7 } } @@ -8904,15 +8904,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted, paginated set\n * of data. Extracted from the processed data\n * ({@link ArrayDatasource#_processedData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 2154, - "end": 2358, + "start": 3657, + "end": 3861, "loc": { "start": { - "line": 87, + "line": 146, "column": 4 }, "end": { - "line": 94, + "line": 153, "column": 7 } } @@ -8920,15 +8920,15 @@ { "type": "CommentBlock", "value": "*\n * The search callback, called\n * when search operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2387, - "end": 2539, + "start": 3890, + "end": 4042, "loc": { "start": { - "line": 97, + "line": 156, "column": 4 }, "end": { - "line": 104, + "line": 163, "column": 7 } } @@ -8936,15 +8936,15 @@ { "type": "CommentBlock", "value": "*\n * The sort callback, called\n * when sort operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2586, - "end": 2734, + "start": 4089, + "end": 4237, "loc": { "start": { - "line": 107, + "line": 166, "column": 4 }, "end": { - "line": 114, + "line": 173, "column": 7 } } @@ -8952,15 +8952,15 @@ { "type": "CommentBlock", "value": "*\n * Extracts the processed set of data\n * (i.e sorted, filtered) from the\n * raw data provided.\n * @access private\n * @return {Array} The array of processed data items.\n ", - "start": 2779, - "end": 2966, + "start": 4282, + "end": 4469, "loc": { "start": { - "line": 118, + "line": 177, "column": 2 }, "end": { - "line": 124, + "line": 183, "column": 5 } } @@ -8968,15 +8968,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 3482, - "end": 3525, + "start": 4985, + "end": 5028, "loc": { "start": { - "line": 141, + "line": 200, "column": 2 }, "end": { - "line": 143, + "line": 202, "column": 5 } } @@ -8984,15 +8984,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 3529, - "end": 3590, + "start": 5032, + "end": 5093, "loc": { "start": { - "line": 145, + "line": 204, "column": 2 }, "end": { - "line": 149, + "line": 208, "column": 5 } } @@ -9000,15 +9000,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 3772, - "end": 3833, + "start": 5275, + "end": 5336, "loc": { "start": { - "line": 160, + "line": 219, "column": 2 }, "end": { - "line": 164, + "line": 223, "column": 5 } } @@ -9016,15 +9016,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 3879, - "end": 3920, + "start": 5382, + "end": 5423, "loc": { "start": { - "line": 169, + "line": 228, "column": 2 }, "end": { - "line": 172, + "line": 231, "column": 5 } } @@ -9032,15 +9032,15 @@ { "type": "CommentBlock", "value": " eslint-disable no-unused-vars ", - "start": 4211, - "end": 4246, + "start": 5714, + "end": 5749, "loc": { "start": { - "line": 185, + "line": 244, "column": 2 }, "end": { - "line": 185, + "line": 244, "column": 37 } } @@ -9048,15 +9048,15 @@ { "type": "CommentBlock", "value": " eslint-enable no-unused-vars ", - "start": 4357, - "end": 4391, + "start": 5860, + "end": 5894, "loc": { "start": { - "line": 192, + "line": 251, "column": 2 }, "end": { - "line": 192, + "line": 251, "column": 36 } } @@ -9198,16 +9198,16 @@ }, { "type": "CommentBlock", - "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", + "value": "*\n * Datasource to manage an array of data.\n *\n * @example Basic Usage\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ]\n * });\n * await datasource.update();\n * console.log(`First page of data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Sorting\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * sort: (data, sortArguments = { 'firstName': 'asc' }) => {\n * return mockSortLogic(data, sortArguments);\n * }\n * });\n * await datasource.sort({ 'lastName': 'asc' });\n * console.log(`First page of sorted data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n *\n * @example Filtering\n *\n * import { ArrayDatasource } from 'mitch-datasource';\n *\n * async function exampleAsyncFunction() {\n * let datasource = new ArrayDatasource({\n * data: [\n * {\n * id: 1,\n * firstName: 'John',\n * lastName: 'Smith'\n * },\n * {\n * id: 2,\n * firstName: 'Mary',\n * lastName: 'Jane'\n * },\n * // ... More\n * ],\n * search: (data, searchText) => {\n * return mockSearchLogic(data, searchText);\n * }\n * });\n * await datasource.search('John Smith');\n * console.log(`First page of filtered data: ${JSON.stringify(datasource.data)}`);\n * }\n * exampleAsyncFunction();\n ", "start": 48, - "end": 623, + "end": 2126, "loc": { "start": { "line": 3, "column": 0 }, "end": { - "line": 27, + "line": 86, "column": 3 } } @@ -9227,15 +9227,15 @@ "updateContext": null }, "value": "class", - "start": 624, - "end": 629, + "start": 2127, + "end": 2132, "loc": { "start": { - "line": 28, + "line": 87, "column": 0 }, "end": { - "line": 28, + "line": 87, "column": 5 } } @@ -9253,15 +9253,15 @@ "binop": null }, "value": "ArrayDatasource", - "start": 630, - "end": 645, + "start": 2133, + "end": 2148, "loc": { "start": { - "line": 28, + "line": 87, "column": 6 }, "end": { - "line": 28, + "line": 87, "column": 21 } } @@ -9281,15 +9281,15 @@ "updateContext": null }, "value": "extends", - "start": 646, - "end": 653, + "start": 2149, + "end": 2156, "loc": { "start": { - "line": 28, + "line": 87, "column": 22 }, "end": { - "line": 28, + "line": 87, "column": 29 } } @@ -9307,15 +9307,15 @@ "binop": null }, "value": "DatasourceBase", - "start": 654, - "end": 668, + "start": 2157, + "end": 2171, "loc": { "start": { - "line": 28, + "line": 87, "column": 30 }, "end": { - "line": 28, + "line": 87, "column": 44 } } @@ -9332,15 +9332,15 @@ "postfix": false, "binop": null }, - "start": 669, - "end": 670, + "start": 2172, + "end": 2173, "loc": { "start": { - "line": 28, + "line": 87, "column": 45 }, "end": { - "line": 28, + "line": 87, "column": 46 } } @@ -9348,15 +9348,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 673, - "end": 885, + "start": 2176, + "end": 2388, "loc": { "start": { - "line": 29, + "line": 88, "column": 2 }, "end": { - "line": 36, + "line": 95, "column": 5 } } @@ -9364,15 +9364,15 @@ { "type": "CommentBlock", "value": "*\n * ToDo: Callback function\n *\n * @typedef {Function} SortCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 889, - "end": 1101, + "start": 2392, + "end": 2604, "loc": { "start": { - "line": 38, + "line": 97, "column": 2 }, "end": { - "line": 45, + "line": 104, "column": 5 } } @@ -9380,15 +9380,15 @@ { "type": "CommentBlock", "value": "*\n * The constructor, taking in an options object.\n * For more passable options, see\n * {@link DatasourceBase#constructor}\n * @override\n * @param {Array} options.data\n * The data array of items.\n * @param {Function} [options.search]\n * The search function callback, which\n * gets called when searching is requested.\n * @param {Function} [options.sort]\n * The sort function callback, which\n * gets called when sorting is requested.\n ", - "start": 1105, - "end": 1567, + "start": 2608, + "end": 3070, "loc": { "start": { - "line": 47, + "line": 106, "column": 2 }, "end": { - "line": 60, + "line": 119, "column": 5 } } @@ -9406,15 +9406,15 @@ "binop": null }, "value": "constructor", - "start": 1570, - "end": 1581, + "start": 3073, + "end": 3084, "loc": { "start": { - "line": 61, + "line": 120, "column": 2 }, "end": { - "line": 61, + "line": 120, "column": 13 } } @@ -9431,15 +9431,15 @@ "postfix": false, "binop": null }, - "start": 1581, - "end": 1582, + "start": 3084, + "end": 3085, "loc": { "start": { - "line": 61, + "line": 120, "column": 13 }, "end": { - "line": 61, + "line": 120, "column": 14 } } @@ -9457,15 +9457,15 @@ "binop": null }, "value": "options", - "start": 1582, - "end": 1589, + "start": 3085, + "end": 3092, "loc": { "start": { - "line": 61, + "line": 120, "column": 14 }, "end": { - "line": 61, + "line": 120, "column": 21 } } @@ -9484,15 +9484,15 @@ "updateContext": null }, "value": "=", - "start": 1590, - "end": 1591, + "start": 3093, + "end": 3094, "loc": { "start": { - "line": 61, + "line": 120, "column": 22 }, "end": { - "line": 61, + "line": 120, "column": 23 } } @@ -9509,15 +9509,15 @@ "postfix": false, "binop": null }, - "start": 1592, - "end": 1593, + "start": 3095, + "end": 3096, "loc": { "start": { - "line": 61, + "line": 120, "column": 24 }, "end": { - "line": 61, + "line": 120, "column": 25 } } @@ -9534,15 +9534,15 @@ "postfix": false, "binop": null }, - "start": 1593, - "end": 1594, + "start": 3096, + "end": 3097, "loc": { "start": { - "line": 61, + "line": 120, "column": 25 }, "end": { - "line": 61, + "line": 120, "column": 26 } } @@ -9559,15 +9559,15 @@ "postfix": false, "binop": null }, - "start": 1594, - "end": 1595, + "start": 3097, + "end": 3098, "loc": { "start": { - "line": 61, + "line": 120, "column": 26 }, "end": { - "line": 61, + "line": 120, "column": 27 } } @@ -9584,15 +9584,15 @@ "postfix": false, "binop": null }, - "start": 1596, - "end": 1597, + "start": 3099, + "end": 3100, "loc": { "start": { - "line": 61, + "line": 120, "column": 28 }, "end": { - "line": 61, + "line": 120, "column": 29 } } @@ -9612,15 +9612,15 @@ "updateContext": null }, "value": "const", - "start": 1602, - "end": 1607, + "start": 3105, + "end": 3110, "loc": { "start": { - "line": 62, + "line": 121, "column": 4 }, "end": { - "line": 62, + "line": 121, "column": 9 } } @@ -9638,15 +9638,15 @@ "binop": null }, "value": "mergedOptions", - "start": 1608, - "end": 1621, + "start": 3111, + "end": 3124, "loc": { "start": { - "line": 62, + "line": 121, "column": 10 }, "end": { - "line": 62, + "line": 121, "column": 23 } } @@ -9665,15 +9665,15 @@ "updateContext": null }, "value": "=", - "start": 1622, - "end": 1623, + "start": 3125, + "end": 3126, "loc": { "start": { - "line": 62, + "line": 121, "column": 24 }, "end": { - "line": 62, + "line": 121, "column": 25 } } @@ -9690,15 +9690,15 @@ "postfix": false, "binop": null }, - "start": 1624, - "end": 1625, + "start": 3127, + "end": 3128, "loc": { "start": { - "line": 62, + "line": 121, "column": 26 }, "end": { - "line": 62, + "line": 121, "column": 27 } } @@ -9716,15 +9716,15 @@ "binop": null, "updateContext": null }, - "start": 1632, - "end": 1635, + "start": 3135, + "end": 3138, "loc": { "start": { - "line": 63, + "line": 122, "column": 6 }, "end": { - "line": 63, + "line": 122, "column": 9 } } @@ -9742,15 +9742,15 @@ "binop": null }, "value": "ArrayDatasource", - "start": 1635, - "end": 1650, + "start": 3138, + "end": 3153, "loc": { "start": { - "line": 63, + "line": 122, "column": 9 }, "end": { - "line": 63, + "line": 122, "column": 24 } } @@ -9768,15 +9768,15 @@ "binop": null, "updateContext": null }, - "start": 1650, - "end": 1651, + "start": 3153, + "end": 3154, "loc": { "start": { - "line": 63, + "line": 122, "column": 24 }, "end": { - "line": 63, + "line": 122, "column": 25 } } @@ -9794,15 +9794,15 @@ "binop": null }, "value": "prototype", - "start": 1651, - "end": 1660, + "start": 3154, + "end": 3163, "loc": { "start": { - "line": 63, + "line": 122, "column": 25 }, "end": { - "line": 63, + "line": 122, "column": 34 } } @@ -9820,15 +9820,15 @@ "binop": null, "updateContext": null }, - "start": 1660, - "end": 1661, + "start": 3163, + "end": 3164, "loc": { "start": { - "line": 63, + "line": 122, "column": 34 }, "end": { - "line": 63, + "line": 122, "column": 35 } } @@ -9846,15 +9846,15 @@ "binop": null }, "value": "defaults", - "start": 1661, - "end": 1669, + "start": 3164, + "end": 3172, "loc": { "start": { - "line": 63, + "line": 122, "column": 35 }, "end": { - "line": 63, + "line": 122, "column": 43 } } @@ -9872,15 +9872,15 @@ "binop": null, "updateContext": null }, - "start": 1669, - "end": 1670, + "start": 3172, + "end": 3173, "loc": { "start": { - "line": 63, + "line": 122, "column": 43 }, "end": { - "line": 63, + "line": 122, "column": 44 } } @@ -9898,15 +9898,15 @@ "binop": null, "updateContext": null }, - "start": 1677, - "end": 1680, + "start": 3180, + "end": 3183, "loc": { "start": { - "line": 64, + "line": 123, "column": 6 }, "end": { - "line": 64, + "line": 123, "column": 9 } } @@ -9924,15 +9924,15 @@ "binop": null }, "value": "options", - "start": 1680, - "end": 1687, + "start": 3183, + "end": 3190, "loc": { "start": { - "line": 64, + "line": 123, "column": 9 }, "end": { - "line": 64, + "line": 123, "column": 16 } } @@ -9950,15 +9950,15 @@ "binop": null, "updateContext": null }, - "start": 1687, - "end": 1688, + "start": 3190, + "end": 3191, "loc": { "start": { - "line": 64, + "line": 123, "column": 16 }, "end": { - "line": 64, + "line": 123, "column": 17 } } @@ -9975,15 +9975,15 @@ "postfix": false, "binop": null }, - "start": 1693, - "end": 1694, + "start": 3196, + "end": 3197, "loc": { "start": { - "line": 65, + "line": 124, "column": 4 }, "end": { - "line": 65, + "line": 124, "column": 5 } } @@ -10001,15 +10001,15 @@ "binop": null, "updateContext": null }, - "start": 1694, - "end": 1695, + "start": 3197, + "end": 3198, "loc": { "start": { - "line": 65, + "line": 124, "column": 5 }, "end": { - "line": 65, + "line": 124, "column": 6 } } @@ -10029,15 +10029,15 @@ "updateContext": null }, "value": "super", - "start": 1700, - "end": 1705, + "start": 3203, + "end": 3208, "loc": { "start": { - "line": 66, + "line": 125, "column": 4 }, "end": { - "line": 66, + "line": 125, "column": 9 } } @@ -10054,15 +10054,15 @@ "postfix": false, "binop": null }, - "start": 1705, - "end": 1706, + "start": 3208, + "end": 3209, "loc": { "start": { - "line": 66, + "line": 125, "column": 9 }, "end": { - "line": 66, + "line": 125, "column": 10 } } @@ -10080,15 +10080,15 @@ "binop": null }, "value": "mergedOptions", - "start": 1706, - "end": 1719, + "start": 3209, + "end": 3222, "loc": { "start": { - "line": 66, + "line": 125, "column": 10 }, "end": { - "line": 66, + "line": 125, "column": 23 } } @@ -10105,15 +10105,15 @@ "postfix": false, "binop": null }, - "start": 1719, - "end": 1720, + "start": 3222, + "end": 3223, "loc": { "start": { - "line": 66, + "line": 125, "column": 23 }, "end": { - "line": 66, + "line": 125, "column": 24 } } @@ -10131,15 +10131,15 @@ "binop": null, "updateContext": null }, - "start": 1720, - "end": 1721, + "start": 3223, + "end": 3224, "loc": { "start": { - "line": 66, + "line": 125, "column": 24 }, "end": { - "line": 66, + "line": 125, "column": 25 } } @@ -10147,15 +10147,15 @@ { "type": "CommentBlock", "value": "*\n * The raw, unfiltered, unsorted,\n * unpaginated set of data.\n *\n * @access private\n * @type {?Array}\n ", - "start": 1726, - "end": 1859, + "start": 3229, + "end": 3362, "loc": { "start": { - "line": 67, + "line": 126, "column": 4 }, "end": { - "line": 73, + "line": 132, "column": 7 } } @@ -10175,15 +10175,15 @@ "updateContext": null }, "value": "this", - "start": 1864, - "end": 1868, + "start": 3367, + "end": 3371, "loc": { "start": { - "line": 74, + "line": 133, "column": 4 }, "end": { - "line": 74, + "line": 133, "column": 8 } } @@ -10201,15 +10201,15 @@ "binop": null, "updateContext": null }, - "start": 1868, - "end": 1869, + "start": 3371, + "end": 3372, "loc": { "start": { - "line": 74, + "line": 133, "column": 8 }, "end": { - "line": 74, + "line": 133, "column": 9 } } @@ -10227,15 +10227,15 @@ "binop": null }, "value": "_rawData", - "start": 1869, - "end": 1877, + "start": 3372, + "end": 3380, "loc": { "start": { - "line": 74, + "line": 133, "column": 9 }, "end": { - "line": 74, + "line": 133, "column": 17 } } @@ -10254,15 +10254,15 @@ "updateContext": null }, "value": "=", - "start": 1878, - "end": 1879, + "start": 3381, + "end": 3382, "loc": { "start": { - "line": 74, + "line": 133, "column": 18 }, "end": { - "line": 74, + "line": 133, "column": 19 } } @@ -10280,15 +10280,15 @@ "binop": null }, "value": "mergedOptions", - "start": 1880, - "end": 1893, + "start": 3383, + "end": 3396, "loc": { "start": { - "line": 74, + "line": 133, "column": 20 }, "end": { - "line": 74, + "line": 133, "column": 33 } } @@ -10306,15 +10306,15 @@ "binop": null, "updateContext": null }, - "start": 1893, - "end": 1894, + "start": 3396, + "end": 3397, "loc": { "start": { - "line": 74, + "line": 133, "column": 33 }, "end": { - "line": 74, + "line": 133, "column": 34 } } @@ -10332,15 +10332,15 @@ "binop": null }, "value": "data", - "start": 1894, - "end": 1898, + "start": 3397, + "end": 3401, "loc": { "start": { - "line": 74, + "line": 133, "column": 34 }, "end": { - "line": 74, + "line": 133, "column": 38 } } @@ -10358,15 +10358,15 @@ "binop": null, "updateContext": null }, - "start": 1898, - "end": 1899, + "start": 3401, + "end": 3402, "loc": { "start": { - "line": 74, + "line": 133, "column": 38 }, "end": { - "line": 74, + "line": 133, "column": 39 } } @@ -10374,15 +10374,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted set of data.\n * This is not paginated.\n * Extracted from the raw data\n * ({@link ArrayDatasource#_rawData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 1905, - "end": 2116, + "start": 3408, + "end": 3619, "loc": { "start": { - "line": 76, + "line": 135, "column": 4 }, "end": { - "line": 84, + "line": 143, "column": 7 } } @@ -10402,15 +10402,15 @@ "updateContext": null }, "value": "this", - "start": 2121, - "end": 2125, + "start": 3624, + "end": 3628, "loc": { "start": { - "line": 85, + "line": 144, "column": 4 }, "end": { - "line": 85, + "line": 144, "column": 8 } } @@ -10428,15 +10428,15 @@ "binop": null, "updateContext": null }, - "start": 2125, - "end": 2126, + "start": 3628, + "end": 3629, "loc": { "start": { - "line": 85, + "line": 144, "column": 8 }, "end": { - "line": 85, + "line": 144, "column": 9 } } @@ -10454,15 +10454,15 @@ "binop": null }, "value": "_processedData", - "start": 2126, - "end": 2140, + "start": 3629, + "end": 3643, "loc": { "start": { - "line": 85, + "line": 144, "column": 9 }, "end": { - "line": 85, + "line": 144, "column": 23 } } @@ -10481,15 +10481,15 @@ "updateContext": null }, "value": "=", - "start": 2141, - "end": 2142, + "start": 3644, + "end": 3645, "loc": { "start": { - "line": 85, + "line": 144, "column": 24 }, "end": { - "line": 85, + "line": 144, "column": 25 } } @@ -10509,15 +10509,15 @@ "updateContext": null }, "value": "null", - "start": 2143, - "end": 2147, + "start": 3646, + "end": 3650, "loc": { "start": { - "line": 85, + "line": 144, "column": 26 }, "end": { - "line": 85, + "line": 144, "column": 30 } } @@ -10535,15 +10535,15 @@ "binop": null, "updateContext": null }, - "start": 2147, - "end": 2148, + "start": 3650, + "end": 3651, "loc": { "start": { - "line": 85, + "line": 144, "column": 30 }, "end": { - "line": 85, + "line": 144, "column": 31 } } @@ -10551,15 +10551,15 @@ { "type": "CommentBlock", "value": "*\n * The filtered, sorted, paginated set\n * of data. Extracted from the processed data\n * ({@link ArrayDatasource#_processedData})\n *\n * @access private\n * @type {?Array}\n ", - "start": 2154, - "end": 2358, + "start": 3657, + "end": 3861, "loc": { "start": { - "line": 87, + "line": 146, "column": 4 }, "end": { - "line": 94, + "line": 153, "column": 7 } } @@ -10579,15 +10579,15 @@ "updateContext": null }, "value": "this", - "start": 2363, - "end": 2367, + "start": 3866, + "end": 3870, "loc": { "start": { - "line": 95, + "line": 154, "column": 4 }, "end": { - "line": 95, + "line": 154, "column": 8 } } @@ -10605,15 +10605,15 @@ "binop": null, "updateContext": null }, - "start": 2367, - "end": 2368, + "start": 3870, + "end": 3871, "loc": { "start": { - "line": 95, + "line": 154, "column": 8 }, "end": { - "line": 95, + "line": 154, "column": 9 } } @@ -10631,15 +10631,15 @@ "binop": null }, "value": "_data", - "start": 2368, - "end": 2373, + "start": 3871, + "end": 3876, "loc": { "start": { - "line": 95, + "line": 154, "column": 9 }, "end": { - "line": 95, + "line": 154, "column": 14 } } @@ -10658,15 +10658,15 @@ "updateContext": null }, "value": "=", - "start": 2374, - "end": 2375, + "start": 3877, + "end": 3878, "loc": { "start": { - "line": 95, + "line": 154, "column": 15 }, "end": { - "line": 95, + "line": 154, "column": 16 } } @@ -10686,15 +10686,15 @@ "updateContext": null }, "value": "null", - "start": 2376, - "end": 2380, + "start": 3879, + "end": 3883, "loc": { "start": { - "line": 95, + "line": 154, "column": 17 }, "end": { - "line": 95, + "line": 154, "column": 21 } } @@ -10712,15 +10712,15 @@ "binop": null, "updateContext": null }, - "start": 2380, - "end": 2381, + "start": 3883, + "end": 3884, "loc": { "start": { - "line": 95, + "line": 154, "column": 21 }, "end": { - "line": 95, + "line": 154, "column": 22 } } @@ -10728,15 +10728,15 @@ { "type": "CommentBlock", "value": "*\n * The search callback, called\n * when search operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2387, - "end": 2539, + "start": 3890, + "end": 4042, "loc": { "start": { - "line": 97, + "line": 156, "column": 4 }, "end": { - "line": 104, + "line": 163, "column": 7 } } @@ -10756,15 +10756,15 @@ "updateContext": null }, "value": "this", - "start": 2544, - "end": 2548, + "start": 4047, + "end": 4051, "loc": { "start": { - "line": 105, + "line": 164, "column": 4 }, "end": { - "line": 105, + "line": 164, "column": 8 } } @@ -10782,15 +10782,15 @@ "binop": null, "updateContext": null }, - "start": 2548, - "end": 2549, + "start": 4051, + "end": 4052, "loc": { "start": { - "line": 105, + "line": 164, "column": 8 }, "end": { - "line": 105, + "line": 164, "column": 9 } } @@ -10808,15 +10808,15 @@ "binop": null }, "value": "_search", - "start": 2549, - "end": 2556, + "start": 4052, + "end": 4059, "loc": { "start": { - "line": 105, + "line": 164, "column": 9 }, "end": { - "line": 105, + "line": 164, "column": 16 } } @@ -10835,15 +10835,15 @@ "updateContext": null }, "value": "=", - "start": 2557, - "end": 2558, + "start": 4060, + "end": 4061, "loc": { "start": { - "line": 105, + "line": 164, "column": 17 }, "end": { - "line": 105, + "line": 164, "column": 18 } } @@ -10861,15 +10861,15 @@ "binop": null }, "value": "mergedOptions", - "start": 2559, - "end": 2572, + "start": 4062, + "end": 4075, "loc": { "start": { - "line": 105, + "line": 164, "column": 19 }, "end": { - "line": 105, + "line": 164, "column": 32 } } @@ -10887,15 +10887,15 @@ "binop": null, "updateContext": null }, - "start": 2572, - "end": 2573, + "start": 4075, + "end": 4076, "loc": { "start": { - "line": 105, + "line": 164, "column": 32 }, "end": { - "line": 105, + "line": 164, "column": 33 } } @@ -10913,15 +10913,15 @@ "binop": null }, "value": "search", - "start": 2573, - "end": 2579, + "start": 4076, + "end": 4082, "loc": { "start": { - "line": 105, + "line": 164, "column": 33 }, "end": { - "line": 105, + "line": 164, "column": 39 } } @@ -10939,15 +10939,15 @@ "binop": null, "updateContext": null }, - "start": 2579, - "end": 2580, + "start": 4082, + "end": 4083, "loc": { "start": { - "line": 105, + "line": 164, "column": 39 }, "end": { - "line": 105, + "line": 164, "column": 40 } } @@ -10955,15 +10955,15 @@ { "type": "CommentBlock", "value": "*\n * The sort callback, called\n * when sort operations was\n * requested.\n *\n * @access private\n * @type {Function}\n ", - "start": 2586, - "end": 2734, + "start": 4089, + "end": 4237, "loc": { "start": { - "line": 107, + "line": 166, "column": 4 }, "end": { - "line": 114, + "line": 173, "column": 7 } } @@ -10983,15 +10983,15 @@ "updateContext": null }, "value": "this", - "start": 2739, - "end": 2743, + "start": 4242, + "end": 4246, "loc": { "start": { - "line": 115, + "line": 174, "column": 4 }, "end": { - "line": 115, + "line": 174, "column": 8 } } @@ -11009,15 +11009,15 @@ "binop": null, "updateContext": null }, - "start": 2743, - "end": 2744, + "start": 4246, + "end": 4247, "loc": { "start": { - "line": 115, + "line": 174, "column": 8 }, "end": { - "line": 115, + "line": 174, "column": 9 } } @@ -11035,15 +11035,15 @@ "binop": null }, "value": "_sort", - "start": 2744, - "end": 2749, + "start": 4247, + "end": 4252, "loc": { "start": { - "line": 115, + "line": 174, "column": 9 }, "end": { - "line": 115, + "line": 174, "column": 14 } } @@ -11062,15 +11062,15 @@ "updateContext": null }, "value": "=", - "start": 2750, - "end": 2751, + "start": 4253, + "end": 4254, "loc": { "start": { - "line": 115, + "line": 174, "column": 15 }, "end": { - "line": 115, + "line": 174, "column": 16 } } @@ -11088,15 +11088,15 @@ "binop": null }, "value": "mergedOptions", - "start": 2752, - "end": 2765, + "start": 4255, + "end": 4268, "loc": { "start": { - "line": 115, + "line": 174, "column": 17 }, "end": { - "line": 115, + "line": 174, "column": 30 } } @@ -11114,15 +11114,15 @@ "binop": null, "updateContext": null }, - "start": 2765, - "end": 2766, + "start": 4268, + "end": 4269, "loc": { "start": { - "line": 115, + "line": 174, "column": 30 }, "end": { - "line": 115, + "line": 174, "column": 31 } } @@ -11140,15 +11140,15 @@ "binop": null }, "value": "sort", - "start": 2766, - "end": 2770, + "start": 4269, + "end": 4273, "loc": { "start": { - "line": 115, + "line": 174, "column": 31 }, "end": { - "line": 115, + "line": 174, "column": 35 } } @@ -11166,15 +11166,15 @@ "binop": null, "updateContext": null }, - "start": 2770, - "end": 2771, + "start": 4273, + "end": 4274, "loc": { "start": { - "line": 115, + "line": 174, "column": 35 }, "end": { - "line": 115, + "line": 174, "column": 36 } } @@ -11191,15 +11191,15 @@ "postfix": false, "binop": null }, - "start": 2774, - "end": 2775, + "start": 4277, + "end": 4278, "loc": { "start": { - "line": 116, + "line": 175, "column": 2 }, "end": { - "line": 116, + "line": 175, "column": 3 } } @@ -11207,15 +11207,15 @@ { "type": "CommentBlock", "value": "*\n * Extracts the processed set of data\n * (i.e sorted, filtered) from the\n * raw data provided.\n * @access private\n * @return {Array} The array of processed data items.\n ", - "start": 2779, - "end": 2966, + "start": 4282, + "end": 4469, "loc": { "start": { - "line": 118, + "line": 177, "column": 2 }, "end": { - "line": 124, + "line": 183, "column": 5 } } @@ -11233,15 +11233,15 @@ "binop": null }, "value": "_getProcessedData", - "start": 2969, - "end": 2986, + "start": 4472, + "end": 4489, "loc": { "start": { - "line": 125, + "line": 184, "column": 2 }, "end": { - "line": 125, + "line": 184, "column": 19 } } @@ -11258,15 +11258,15 @@ "postfix": false, "binop": null }, - "start": 2986, - "end": 2987, + "start": 4489, + "end": 4490, "loc": { "start": { - "line": 125, + "line": 184, "column": 19 }, "end": { - "line": 125, + "line": 184, "column": 20 } } @@ -11283,15 +11283,15 @@ "postfix": false, "binop": null }, - "start": 2987, - "end": 2988, + "start": 4490, + "end": 4491, "loc": { "start": { - "line": 125, + "line": 184, "column": 20 }, "end": { - "line": 125, + "line": 184, "column": 21 } } @@ -11308,15 +11308,15 @@ "postfix": false, "binop": null }, - "start": 2989, - "end": 2990, + "start": 4492, + "end": 4493, "loc": { "start": { - "line": 125, + "line": 184, "column": 22 }, "end": { - "line": 125, + "line": 184, "column": 23 } } @@ -11336,15 +11336,15 @@ "updateContext": null }, "value": "if", - "start": 2995, - "end": 2997, + "start": 4498, + "end": 4500, "loc": { "start": { - "line": 126, + "line": 185, "column": 4 }, "end": { - "line": 126, + "line": 185, "column": 6 } } @@ -11361,15 +11361,15 @@ "postfix": false, "binop": null }, - "start": 2998, - "end": 2999, + "start": 4501, + "end": 4502, "loc": { "start": { - "line": 126, + "line": 185, "column": 7 }, "end": { - "line": 126, + "line": 185, "column": 8 } } @@ -11388,15 +11388,15 @@ "updateContext": null }, "value": "!", - "start": 2999, - "end": 3000, + "start": 4502, + "end": 4503, "loc": { "start": { - "line": 126, + "line": 185, "column": 8 }, "end": { - "line": 126, + "line": 185, "column": 9 } } @@ -11416,15 +11416,15 @@ "updateContext": null }, "value": "this", - "start": 3000, - "end": 3004, + "start": 4503, + "end": 4507, "loc": { "start": { - "line": 126, + "line": 185, "column": 9 }, "end": { - "line": 126, + "line": 185, "column": 13 } } @@ -11442,15 +11442,15 @@ "binop": null, "updateContext": null }, - "start": 3004, - "end": 3005, + "start": 4507, + "end": 4508, "loc": { "start": { - "line": 126, + "line": 185, "column": 13 }, "end": { - "line": 126, + "line": 185, "column": 14 } } @@ -11468,15 +11468,15 @@ "binop": null }, "value": "_rawData", - "start": 3005, - "end": 3013, + "start": 4508, + "end": 4516, "loc": { "start": { - "line": 126, + "line": 185, "column": 14 }, "end": { - "line": 126, + "line": 185, "column": 22 } } @@ -11493,15 +11493,15 @@ "postfix": false, "binop": null }, - "start": 3013, - "end": 3014, + "start": 4516, + "end": 4517, "loc": { "start": { - "line": 126, + "line": 185, "column": 22 }, "end": { - "line": 126, + "line": 185, "column": 23 } } @@ -11518,15 +11518,15 @@ "postfix": false, "binop": null }, - "start": 3015, - "end": 3016, + "start": 4518, + "end": 4519, "loc": { "start": { - "line": 126, + "line": 185, "column": 24 }, "end": { - "line": 126, + "line": 185, "column": 25 } } @@ -11546,15 +11546,15 @@ "updateContext": null }, "value": "return", - "start": 3023, - "end": 3029, + "start": 4526, + "end": 4532, "loc": { "start": { - "line": 127, + "line": 186, "column": 6 }, "end": { - "line": 127, + "line": 186, "column": 12 } } @@ -11572,15 +11572,15 @@ "binop": null, "updateContext": null }, - "start": 3030, - "end": 3031, + "start": 4533, + "end": 4534, "loc": { "start": { - "line": 127, + "line": 186, "column": 13 }, "end": { - "line": 127, + "line": 186, "column": 14 } } @@ -11598,15 +11598,15 @@ "binop": null, "updateContext": null }, - "start": 3031, - "end": 3032, + "start": 4534, + "end": 4535, "loc": { "start": { - "line": 127, + "line": 186, "column": 14 }, "end": { - "line": 127, + "line": 186, "column": 15 } } @@ -11624,15 +11624,15 @@ "binop": null, "updateContext": null }, - "start": 3032, - "end": 3033, + "start": 4535, + "end": 4536, "loc": { "start": { - "line": 127, + "line": 186, "column": 15 }, "end": { - "line": 127, + "line": 186, "column": 16 } } @@ -11649,15 +11649,15 @@ "postfix": false, "binop": null }, - "start": 3038, - "end": 3039, + "start": 4541, + "end": 4542, "loc": { "start": { - "line": 128, + "line": 187, "column": 4 }, "end": { - "line": 128, + "line": 187, "column": 5 } } @@ -11677,15 +11677,15 @@ "updateContext": null }, "value": "let", - "start": 3044, - "end": 3047, + "start": 4547, + "end": 4550, "loc": { "start": { - "line": 129, + "line": 188, "column": 4 }, "end": { - "line": 129, + "line": 188, "column": 7 } } @@ -11703,15 +11703,15 @@ "binop": null }, "value": "processedData", - "start": 3048, - "end": 3061, + "start": 4551, + "end": 4564, "loc": { "start": { - "line": 129, + "line": 188, "column": 8 }, "end": { - "line": 129, + "line": 188, "column": 21 } } @@ -11730,15 +11730,15 @@ "updateContext": null }, "value": "=", - "start": 3062, - "end": 3063, + "start": 4565, + "end": 4566, "loc": { "start": { - "line": 129, + "line": 188, "column": 22 }, "end": { - "line": 129, + "line": 188, "column": 23 } } @@ -11756,15 +11756,15 @@ "binop": null, "updateContext": null }, - "start": 3064, - "end": 3065, + "start": 4567, + "end": 4568, "loc": { "start": { - "line": 129, + "line": 188, "column": 24 }, "end": { - "line": 129, + "line": 188, "column": 25 } } @@ -11782,15 +11782,15 @@ "binop": null, "updateContext": null }, - "start": 3065, - "end": 3068, + "start": 4568, + "end": 4571, "loc": { "start": { - "line": 129, + "line": 188, "column": 25 }, "end": { - "line": 129, + "line": 188, "column": 28 } } @@ -11810,15 +11810,15 @@ "updateContext": null }, "value": "this", - "start": 3068, - "end": 3072, + "start": 4571, + "end": 4575, "loc": { "start": { - "line": 129, + "line": 188, "column": 28 }, "end": { - "line": 129, + "line": 188, "column": 32 } } @@ -11836,15 +11836,15 @@ "binop": null, "updateContext": null }, - "start": 3072, - "end": 3073, + "start": 4575, + "end": 4576, "loc": { "start": { - "line": 129, + "line": 188, "column": 32 }, "end": { - "line": 129, + "line": 188, "column": 33 } } @@ -11862,15 +11862,15 @@ "binop": null }, "value": "_rawData", - "start": 3073, - "end": 3081, + "start": 4576, + "end": 4584, "loc": { "start": { - "line": 129, + "line": 188, "column": 33 }, "end": { - "line": 129, + "line": 188, "column": 41 } } @@ -11888,15 +11888,15 @@ "binop": null, "updateContext": null }, - "start": 3081, - "end": 3082, + "start": 4584, + "end": 4585, "loc": { "start": { - "line": 129, + "line": 188, "column": 41 }, "end": { - "line": 129, + "line": 188, "column": 42 } } @@ -11914,15 +11914,15 @@ "binop": null, "updateContext": null }, - "start": 3082, - "end": 3083, + "start": 4585, + "end": 4586, "loc": { "start": { - "line": 129, + "line": 188, "column": 42 }, "end": { - "line": 129, + "line": 188, "column": 43 } } @@ -11942,15 +11942,15 @@ "updateContext": null }, "value": "if", - "start": 3088, - "end": 3090, + "start": 4591, + "end": 4593, "loc": { "start": { - "line": 130, + "line": 189, "column": 4 }, "end": { - "line": 130, + "line": 189, "column": 6 } } @@ -11967,15 +11967,15 @@ "postfix": false, "binop": null }, - "start": 3091, - "end": 3092, + "start": 4594, + "end": 4595, "loc": { "start": { - "line": 130, + "line": 189, "column": 7 }, "end": { - "line": 130, + "line": 189, "column": 8 } } @@ -11995,15 +11995,15 @@ "updateContext": null }, "value": "this", - "start": 3092, - "end": 3096, + "start": 4595, + "end": 4599, "loc": { "start": { - "line": 130, + "line": 189, "column": 8 }, "end": { - "line": 130, + "line": 189, "column": 12 } } @@ -12021,15 +12021,15 @@ "binop": null, "updateContext": null }, - "start": 3096, - "end": 3097, + "start": 4599, + "end": 4600, "loc": { "start": { - "line": 130, + "line": 189, "column": 12 }, "end": { - "line": 130, + "line": 189, "column": 13 } } @@ -12047,15 +12047,15 @@ "binop": null }, "value": "searchArguments", - "start": 3097, - "end": 3112, + "start": 4600, + "end": 4615, "loc": { "start": { - "line": 130, + "line": 189, "column": 13 }, "end": { - "line": 130, + "line": 189, "column": 28 } } @@ -12072,15 +12072,15 @@ "postfix": false, "binop": null }, - "start": 3112, - "end": 3113, + "start": 4615, + "end": 4616, "loc": { "start": { - "line": 130, + "line": 189, "column": 28 }, "end": { - "line": 130, + "line": 189, "column": 29 } } @@ -12097,15 +12097,15 @@ "postfix": false, "binop": null }, - "start": 3114, - "end": 3115, + "start": 4617, + "end": 4618, "loc": { "start": { - "line": 130, + "line": 189, "column": 30 }, "end": { - "line": 130, + "line": 189, "column": 31 } } @@ -12123,15 +12123,15 @@ "binop": null }, "value": "processedData", - "start": 3122, - "end": 3135, + "start": 4625, + "end": 4638, "loc": { "start": { - "line": 131, + "line": 190, "column": 6 }, "end": { - "line": 131, + "line": 190, "column": 19 } } @@ -12150,15 +12150,15 @@ "updateContext": null }, "value": "=", - "start": 3136, - "end": 3137, + "start": 4639, + "end": 4640, "loc": { "start": { - "line": 131, + "line": 190, "column": 20 }, "end": { - "line": 131, + "line": 190, "column": 21 } } @@ -12178,15 +12178,15 @@ "updateContext": null }, "value": "this", - "start": 3138, - "end": 3142, + "start": 4641, + "end": 4645, "loc": { "start": { - "line": 131, + "line": 190, "column": 22 }, "end": { - "line": 131, + "line": 190, "column": 26 } } @@ -12204,15 +12204,15 @@ "binop": null, "updateContext": null }, - "start": 3142, - "end": 3143, + "start": 4645, + "end": 4646, "loc": { "start": { - "line": 131, + "line": 190, "column": 26 }, "end": { - "line": 131, + "line": 190, "column": 27 } } @@ -12230,15 +12230,15 @@ "binop": null }, "value": "_search", - "start": 3143, - "end": 3150, + "start": 4646, + "end": 4653, "loc": { "start": { - "line": 131, + "line": 190, "column": 27 }, "end": { - "line": 131, + "line": 190, "column": 34 } } @@ -12256,15 +12256,15 @@ "binop": null, "updateContext": null }, - "start": 3150, - "end": 3151, + "start": 4653, + "end": 4654, "loc": { "start": { - "line": 131, + "line": 190, "column": 34 }, "end": { - "line": 131, + "line": 190, "column": 35 } } @@ -12282,15 +12282,15 @@ "binop": null }, "value": "call", - "start": 3151, - "end": 3155, + "start": 4654, + "end": 4658, "loc": { "start": { - "line": 131, + "line": 190, "column": 35 }, "end": { - "line": 131, + "line": 190, "column": 39 } } @@ -12307,15 +12307,15 @@ "postfix": false, "binop": null }, - "start": 3155, - "end": 3156, + "start": 4658, + "end": 4659, "loc": { "start": { - "line": 131, + "line": 190, "column": 39 }, "end": { - "line": 131, + "line": 190, "column": 40 } } @@ -12335,15 +12335,15 @@ "updateContext": null }, "value": "this", - "start": 3156, - "end": 3160, + "start": 4659, + "end": 4663, "loc": { "start": { - "line": 131, + "line": 190, "column": 40 }, "end": { - "line": 131, + "line": 190, "column": 44 } } @@ -12361,15 +12361,15 @@ "binop": null, "updateContext": null }, - "start": 3160, - "end": 3161, + "start": 4663, + "end": 4664, "loc": { "start": { - "line": 131, + "line": 190, "column": 44 }, "end": { - "line": 131, + "line": 190, "column": 45 } } @@ -12387,15 +12387,15 @@ "binop": null }, "value": "processedData", - "start": 3162, - "end": 3175, + "start": 4665, + "end": 4678, "loc": { "start": { - "line": 131, + "line": 190, "column": 46 }, "end": { - "line": 131, + "line": 190, "column": 59 } } @@ -12413,15 +12413,15 @@ "binop": null, "updateContext": null }, - "start": 3175, - "end": 3176, + "start": 4678, + "end": 4679, "loc": { "start": { - "line": 131, + "line": 190, "column": 59 }, "end": { - "line": 131, + "line": 190, "column": 60 } } @@ -12441,15 +12441,15 @@ "updateContext": null }, "value": "this", - "start": 3177, - "end": 3181, + "start": 4680, + "end": 4684, "loc": { "start": { - "line": 131, + "line": 190, "column": 61 }, "end": { - "line": 131, + "line": 190, "column": 65 } } @@ -12467,15 +12467,15 @@ "binop": null, "updateContext": null }, - "start": 3181, - "end": 3182, + "start": 4684, + "end": 4685, "loc": { "start": { - "line": 131, + "line": 190, "column": 65 }, "end": { - "line": 131, + "line": 190, "column": 66 } } @@ -12493,15 +12493,15 @@ "binop": null }, "value": "searchArguments", - "start": 3182, - "end": 3197, + "start": 4685, + "end": 4700, "loc": { "start": { - "line": 131, + "line": 190, "column": 66 }, "end": { - "line": 131, + "line": 190, "column": 81 } } @@ -12518,15 +12518,15 @@ "postfix": false, "binop": null }, - "start": 3197, - "end": 3198, + "start": 4700, + "end": 4701, "loc": { "start": { - "line": 131, + "line": 190, "column": 81 }, "end": { - "line": 131, + "line": 190, "column": 82 } } @@ -12544,15 +12544,15 @@ "binop": null, "updateContext": null }, - "start": 3198, - "end": 3199, + "start": 4701, + "end": 4702, "loc": { "start": { - "line": 131, + "line": 190, "column": 82 }, "end": { - "line": 131, + "line": 190, "column": 83 } } @@ -12569,15 +12569,15 @@ "postfix": false, "binop": null }, - "start": 3204, - "end": 3205, + "start": 4707, + "end": 4708, "loc": { "start": { - "line": 132, + "line": 191, "column": 4 }, "end": { - "line": 132, + "line": 191, "column": 5 } } @@ -12597,15 +12597,15 @@ "updateContext": null }, "value": "else", - "start": 3206, - "end": 3210, + "start": 4709, + "end": 4713, "loc": { "start": { - "line": 132, + "line": 191, "column": 6 }, "end": { - "line": 132, + "line": 191, "column": 10 } } @@ -12625,15 +12625,15 @@ "updateContext": null }, "value": "if", - "start": 3211, - "end": 3213, + "start": 4714, + "end": 4716, "loc": { "start": { - "line": 132, + "line": 191, "column": 11 }, "end": { - "line": 132, + "line": 191, "column": 13 } } @@ -12650,15 +12650,15 @@ "postfix": false, "binop": null }, - "start": 3214, - "end": 3215, + "start": 4717, + "end": 4718, "loc": { "start": { - "line": 132, + "line": 191, "column": 14 }, "end": { - "line": 132, + "line": 191, "column": 15 } } @@ -12678,15 +12678,15 @@ "updateContext": null }, "value": "this", - "start": 3215, - "end": 3219, + "start": 4718, + "end": 4722, "loc": { "start": { - "line": 132, + "line": 191, "column": 15 }, "end": { - "line": 132, + "line": 191, "column": 19 } } @@ -12704,15 +12704,15 @@ "binop": null, "updateContext": null }, - "start": 3219, - "end": 3220, + "start": 4722, + "end": 4723, "loc": { "start": { - "line": 132, + "line": 191, "column": 19 }, "end": { - "line": 132, + "line": 191, "column": 20 } } @@ -12730,15 +12730,15 @@ "binop": null }, "value": "searchText", - "start": 3220, - "end": 3230, + "start": 4723, + "end": 4733, "loc": { "start": { - "line": 132, + "line": 191, "column": 20 }, "end": { - "line": 132, + "line": 191, "column": 30 } } @@ -12755,15 +12755,15 @@ "postfix": false, "binop": null }, - "start": 3230, - "end": 3231, + "start": 4733, + "end": 4734, "loc": { "start": { - "line": 132, + "line": 191, "column": 30 }, "end": { - "line": 132, + "line": 191, "column": 31 } } @@ -12780,15 +12780,15 @@ "postfix": false, "binop": null }, - "start": 3232, - "end": 3233, + "start": 4735, + "end": 4736, "loc": { "start": { - "line": 132, + "line": 191, "column": 32 }, "end": { - "line": 132, + "line": 191, "column": 33 } } @@ -12806,15 +12806,15 @@ "binop": null }, "value": "processedData", - "start": 3240, - "end": 3253, + "start": 4743, + "end": 4756, "loc": { "start": { - "line": 133, + "line": 192, "column": 6 }, "end": { - "line": 133, + "line": 192, "column": 19 } } @@ -12833,15 +12833,15 @@ "updateContext": null }, "value": "=", - "start": 3254, - "end": 3255, + "start": 4757, + "end": 4758, "loc": { "start": { - "line": 133, + "line": 192, "column": 20 }, "end": { - "line": 133, + "line": 192, "column": 21 } } @@ -12861,15 +12861,15 @@ "updateContext": null }, "value": "this", - "start": 3256, - "end": 3260, + "start": 4759, + "end": 4763, "loc": { "start": { - "line": 133, + "line": 192, "column": 22 }, "end": { - "line": 133, + "line": 192, "column": 26 } } @@ -12887,15 +12887,15 @@ "binop": null, "updateContext": null }, - "start": 3260, - "end": 3261, + "start": 4763, + "end": 4764, "loc": { "start": { - "line": 133, + "line": 192, "column": 26 }, "end": { - "line": 133, + "line": 192, "column": 27 } } @@ -12913,15 +12913,15 @@ "binop": null }, "value": "_search", - "start": 3261, - "end": 3268, + "start": 4764, + "end": 4771, "loc": { "start": { - "line": 133, + "line": 192, "column": 27 }, "end": { - "line": 133, + "line": 192, "column": 34 } } @@ -12939,15 +12939,15 @@ "binop": null, "updateContext": null }, - "start": 3268, - "end": 3269, + "start": 4771, + "end": 4772, "loc": { "start": { - "line": 133, + "line": 192, "column": 34 }, "end": { - "line": 133, + "line": 192, "column": 35 } } @@ -12965,15 +12965,15 @@ "binop": null }, "value": "call", - "start": 3269, - "end": 3273, + "start": 4772, + "end": 4776, "loc": { "start": { - "line": 133, + "line": 192, "column": 35 }, "end": { - "line": 133, + "line": 192, "column": 39 } } @@ -12990,15 +12990,15 @@ "postfix": false, "binop": null }, - "start": 3273, - "end": 3274, + "start": 4776, + "end": 4777, "loc": { "start": { - "line": 133, + "line": 192, "column": 39 }, "end": { - "line": 133, + "line": 192, "column": 40 } } @@ -13018,15 +13018,15 @@ "updateContext": null }, "value": "this", - "start": 3274, - "end": 3278, + "start": 4777, + "end": 4781, "loc": { "start": { - "line": 133, + "line": 192, "column": 40 }, "end": { - "line": 133, + "line": 192, "column": 44 } } @@ -13044,15 +13044,15 @@ "binop": null, "updateContext": null }, - "start": 3278, - "end": 3279, + "start": 4781, + "end": 4782, "loc": { "start": { - "line": 133, + "line": 192, "column": 44 }, "end": { - "line": 133, + "line": 192, "column": 45 } } @@ -13070,15 +13070,15 @@ "binop": null }, "value": "processedData", - "start": 3280, - "end": 3293, + "start": 4783, + "end": 4796, "loc": { "start": { - "line": 133, + "line": 192, "column": 46 }, "end": { - "line": 133, + "line": 192, "column": 59 } } @@ -13096,15 +13096,15 @@ "binop": null, "updateContext": null }, - "start": 3293, - "end": 3294, + "start": 4796, + "end": 4797, "loc": { "start": { - "line": 133, + "line": 192, "column": 59 }, "end": { - "line": 133, + "line": 192, "column": 60 } } @@ -13124,15 +13124,15 @@ "updateContext": null }, "value": "this", - "start": 3295, - "end": 3299, + "start": 4798, + "end": 4802, "loc": { "start": { - "line": 133, + "line": 192, "column": 61 }, "end": { - "line": 133, + "line": 192, "column": 65 } } @@ -13150,15 +13150,15 @@ "binop": null, "updateContext": null }, - "start": 3299, - "end": 3300, + "start": 4802, + "end": 4803, "loc": { "start": { - "line": 133, + "line": 192, "column": 65 }, "end": { - "line": 133, + "line": 192, "column": 66 } } @@ -13176,15 +13176,15 @@ "binop": null }, "value": "searchText", - "start": 3300, - "end": 3310, + "start": 4803, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 192, "column": 66 }, "end": { - "line": 133, + "line": 192, "column": 76 } } @@ -13201,15 +13201,15 @@ "postfix": false, "binop": null }, - "start": 3310, - "end": 3311, + "start": 4813, + "end": 4814, "loc": { "start": { - "line": 133, + "line": 192, "column": 76 }, "end": { - "line": 133, + "line": 192, "column": 77 } } @@ -13227,15 +13227,15 @@ "binop": null, "updateContext": null }, - "start": 3311, - "end": 3312, + "start": 4814, + "end": 4815, "loc": { "start": { - "line": 133, + "line": 192, "column": 77 }, "end": { - "line": 133, + "line": 192, "column": 78 } } @@ -13252,15 +13252,15 @@ "postfix": false, "binop": null }, - "start": 3317, - "end": 3318, + "start": 4820, + "end": 4821, "loc": { "start": { - "line": 134, + "line": 193, "column": 4 }, "end": { - "line": 134, + "line": 193, "column": 5 } } @@ -13280,15 +13280,15 @@ "updateContext": null }, "value": "if", - "start": 3323, - "end": 3325, + "start": 4826, + "end": 4828, "loc": { "start": { - "line": 135, + "line": 194, "column": 4 }, "end": { - "line": 135, + "line": 194, "column": 6 } } @@ -13305,15 +13305,15 @@ "postfix": false, "binop": null }, - "start": 3326, - "end": 3327, + "start": 4829, + "end": 4830, "loc": { "start": { - "line": 135, + "line": 194, "column": 7 }, "end": { - "line": 135, + "line": 194, "column": 8 } } @@ -13333,15 +13333,15 @@ "updateContext": null }, "value": "this", - "start": 3327, - "end": 3331, + "start": 4830, + "end": 4834, "loc": { "start": { - "line": 135, + "line": 194, "column": 8 }, "end": { - "line": 135, + "line": 194, "column": 12 } } @@ -13359,15 +13359,15 @@ "binop": null, "updateContext": null }, - "start": 3331, - "end": 3332, + "start": 4834, + "end": 4835, "loc": { "start": { - "line": 135, + "line": 194, "column": 12 }, "end": { - "line": 135, + "line": 194, "column": 13 } } @@ -13385,15 +13385,15 @@ "binop": null }, "value": "_sort", - "start": 3332, - "end": 3337, + "start": 4835, + "end": 4840, "loc": { "start": { - "line": 135, + "line": 194, "column": 13 }, "end": { - "line": 135, + "line": 194, "column": 18 } } @@ -13412,15 +13412,15 @@ "updateContext": null }, "value": "&&", - "start": 3338, - "end": 3340, + "start": 4841, + "end": 4843, "loc": { "start": { - "line": 135, + "line": 194, "column": 19 }, "end": { - "line": 135, + "line": 194, "column": 21 } } @@ -13440,15 +13440,15 @@ "updateContext": null }, "value": "this", - "start": 3341, - "end": 3345, + "start": 4844, + "end": 4848, "loc": { "start": { - "line": 135, + "line": 194, "column": 22 }, "end": { - "line": 135, + "line": 194, "column": 26 } } @@ -13466,15 +13466,15 @@ "binop": null, "updateContext": null }, - "start": 3345, - "end": 3346, + "start": 4848, + "end": 4849, "loc": { "start": { - "line": 135, + "line": 194, "column": 26 }, "end": { - "line": 135, + "line": 194, "column": 27 } } @@ -13492,15 +13492,15 @@ "binop": null }, "value": "sortArguments", - "start": 3346, - "end": 3359, + "start": 4849, + "end": 4862, "loc": { "start": { - "line": 135, + "line": 194, "column": 27 }, "end": { - "line": 135, + "line": 194, "column": 40 } } @@ -13517,15 +13517,15 @@ "postfix": false, "binop": null }, - "start": 3359, - "end": 3360, + "start": 4862, + "end": 4863, "loc": { "start": { - "line": 135, + "line": 194, "column": 40 }, "end": { - "line": 135, + "line": 194, "column": 41 } } @@ -13542,15 +13542,15 @@ "postfix": false, "binop": null }, - "start": 3361, - "end": 3362, + "start": 4864, + "end": 4865, "loc": { "start": { - "line": 135, + "line": 194, "column": 42 }, "end": { - "line": 135, + "line": 194, "column": 43 } } @@ -13568,15 +13568,15 @@ "binop": null }, "value": "processedData", - "start": 3369, - "end": 3382, + "start": 4872, + "end": 4885, "loc": { "start": { - "line": 136, + "line": 195, "column": 6 }, "end": { - "line": 136, + "line": 195, "column": 19 } } @@ -13595,15 +13595,15 @@ "updateContext": null }, "value": "=", - "start": 3383, - "end": 3384, + "start": 4886, + "end": 4887, "loc": { "start": { - "line": 136, + "line": 195, "column": 20 }, "end": { - "line": 136, + "line": 195, "column": 21 } } @@ -13623,15 +13623,15 @@ "updateContext": null }, "value": "this", - "start": 3385, - "end": 3389, + "start": 4888, + "end": 4892, "loc": { "start": { - "line": 136, + "line": 195, "column": 22 }, "end": { - "line": 136, + "line": 195, "column": 26 } } @@ -13649,15 +13649,15 @@ "binop": null, "updateContext": null }, - "start": 3389, - "end": 3390, + "start": 4892, + "end": 4893, "loc": { "start": { - "line": 136, + "line": 195, "column": 26 }, "end": { - "line": 136, + "line": 195, "column": 27 } } @@ -13675,15 +13675,15 @@ "binop": null }, "value": "_sort", - "start": 3390, - "end": 3395, + "start": 4893, + "end": 4898, "loc": { "start": { - "line": 136, + "line": 195, "column": 27 }, "end": { - "line": 136, + "line": 195, "column": 32 } } @@ -13701,15 +13701,15 @@ "binop": null, "updateContext": null }, - "start": 3395, - "end": 3396, + "start": 4898, + "end": 4899, "loc": { "start": { - "line": 136, + "line": 195, "column": 32 }, "end": { - "line": 136, + "line": 195, "column": 33 } } @@ -13727,15 +13727,15 @@ "binop": null }, "value": "call", - "start": 3396, - "end": 3400, + "start": 4899, + "end": 4903, "loc": { "start": { - "line": 136, + "line": 195, "column": 33 }, "end": { - "line": 136, + "line": 195, "column": 37 } } @@ -13752,15 +13752,15 @@ "postfix": false, "binop": null }, - "start": 3400, - "end": 3401, + "start": 4903, + "end": 4904, "loc": { "start": { - "line": 136, + "line": 195, "column": 37 }, "end": { - "line": 136, + "line": 195, "column": 38 } } @@ -13780,15 +13780,15 @@ "updateContext": null }, "value": "this", - "start": 3401, - "end": 3405, + "start": 4904, + "end": 4908, "loc": { "start": { - "line": 136, + "line": 195, "column": 38 }, "end": { - "line": 136, + "line": 195, "column": 42 } } @@ -13806,15 +13806,15 @@ "binop": null, "updateContext": null }, - "start": 3405, - "end": 3406, + "start": 4908, + "end": 4909, "loc": { "start": { - "line": 136, + "line": 195, "column": 42 }, "end": { - "line": 136, + "line": 195, "column": 43 } } @@ -13832,15 +13832,15 @@ "binop": null }, "value": "processedData", - "start": 3407, - "end": 3420, + "start": 4910, + "end": 4923, "loc": { "start": { - "line": 136, + "line": 195, "column": 44 }, "end": { - "line": 136, + "line": 195, "column": 57 } } @@ -13858,15 +13858,15 @@ "binop": null, "updateContext": null }, - "start": 3420, - "end": 3421, + "start": 4923, + "end": 4924, "loc": { "start": { - "line": 136, + "line": 195, "column": 57 }, "end": { - "line": 136, + "line": 195, "column": 58 } } @@ -13886,15 +13886,15 @@ "updateContext": null }, "value": "this", - "start": 3422, - "end": 3426, + "start": 4925, + "end": 4929, "loc": { "start": { - "line": 136, + "line": 195, "column": 59 }, "end": { - "line": 136, + "line": 195, "column": 63 } } @@ -13912,15 +13912,15 @@ "binop": null, "updateContext": null }, - "start": 3426, - "end": 3427, + "start": 4929, + "end": 4930, "loc": { "start": { - "line": 136, + "line": 195, "column": 63 }, "end": { - "line": 136, + "line": 195, "column": 64 } } @@ -13938,15 +13938,15 @@ "binop": null }, "value": "sortArguments", - "start": 3427, - "end": 3440, + "start": 4930, + "end": 4943, "loc": { "start": { - "line": 136, + "line": 195, "column": 64 }, "end": { - "line": 136, + "line": 195, "column": 77 } } @@ -13963,15 +13963,15 @@ "postfix": false, "binop": null }, - "start": 3440, - "end": 3441, + "start": 4943, + "end": 4944, "loc": { "start": { - "line": 136, + "line": 195, "column": 77 }, "end": { - "line": 136, + "line": 195, "column": 78 } } @@ -13989,15 +13989,15 @@ "binop": null, "updateContext": null }, - "start": 3441, - "end": 3442, + "start": 4944, + "end": 4945, "loc": { "start": { - "line": 136, + "line": 195, "column": 78 }, "end": { - "line": 136, + "line": 195, "column": 79 } } @@ -14014,15 +14014,15 @@ "postfix": false, "binop": null }, - "start": 3447, - "end": 3448, + "start": 4950, + "end": 4951, "loc": { "start": { - "line": 137, + "line": 196, "column": 4 }, "end": { - "line": 137, + "line": 196, "column": 5 } } @@ -14042,15 +14042,15 @@ "updateContext": null }, "value": "return", - "start": 3453, - "end": 3459, + "start": 4956, + "end": 4962, "loc": { "start": { - "line": 138, + "line": 197, "column": 4 }, "end": { - "line": 138, + "line": 197, "column": 10 } } @@ -14068,15 +14068,15 @@ "binop": null }, "value": "processedData", - "start": 3460, - "end": 3473, + "start": 4963, + "end": 4976, "loc": { "start": { - "line": 138, + "line": 197, "column": 11 }, "end": { - "line": 138, + "line": 197, "column": 24 } } @@ -14094,15 +14094,15 @@ "binop": null, "updateContext": null }, - "start": 3473, - "end": 3474, + "start": 4976, + "end": 4977, "loc": { "start": { - "line": 138, + "line": 197, "column": 24 }, "end": { - "line": 138, + "line": 197, "column": 25 } } @@ -14119,15 +14119,15 @@ "postfix": false, "binop": null }, - "start": 3477, - "end": 3478, + "start": 4980, + "end": 4981, "loc": { "start": { - "line": 139, + "line": 198, "column": 2 }, "end": { - "line": 139, + "line": 198, "column": 3 } } @@ -14135,15 +14135,15 @@ { "type": "CommentBlock", "value": "*\n * Overrides for DatasourceBase\n ", - "start": 3482, - "end": 3525, + "start": 4985, + "end": 5028, "loc": { "start": { - "line": 141, + "line": 200, "column": 2 }, "end": { - "line": 143, + "line": 202, "column": 5 } } @@ -14151,15 +14151,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {Number}\n ", - "start": 3529, - "end": 3590, + "start": 5032, + "end": 5093, "loc": { "start": { - "line": 145, + "line": 204, "column": 2 }, "end": { - "line": 149, + "line": 208, "column": 5 } } @@ -14177,15 +14177,15 @@ "binop": null }, "value": "get", - "start": 3593, - "end": 3596, + "start": 5096, + "end": 5099, "loc": { "start": { - "line": 150, + "line": 209, "column": 2 }, "end": { - "line": 150, + "line": 209, "column": 5 } } @@ -14203,15 +14203,15 @@ "binop": null }, "value": "total", - "start": 3597, - "end": 3602, + "start": 5100, + "end": 5105, "loc": { "start": { - "line": 150, + "line": 209, "column": 6 }, "end": { - "line": 150, + "line": 209, "column": 11 } } @@ -14228,15 +14228,15 @@ "postfix": false, "binop": null }, - "start": 3602, - "end": 3603, + "start": 5105, + "end": 5106, "loc": { "start": { - "line": 150, + "line": 209, "column": 11 }, "end": { - "line": 150, + "line": 209, "column": 12 } } @@ -14253,15 +14253,15 @@ "postfix": false, "binop": null }, - "start": 3603, - "end": 3604, + "start": 5106, + "end": 5107, "loc": { "start": { - "line": 150, + "line": 209, "column": 12 }, "end": { - "line": 150, + "line": 209, "column": 13 } } @@ -14278,15 +14278,15 @@ "postfix": false, "binop": null }, - "start": 3605, - "end": 3606, + "start": 5108, + "end": 5109, "loc": { "start": { - "line": 150, + "line": 209, "column": 14 }, "end": { - "line": 150, + "line": 209, "column": 15 } } @@ -14306,15 +14306,15 @@ "updateContext": null }, "value": "if", - "start": 3611, - "end": 3613, + "start": 5114, + "end": 5116, "loc": { "start": { - "line": 151, + "line": 210, "column": 4 }, "end": { - "line": 151, + "line": 210, "column": 6 } } @@ -14331,15 +14331,15 @@ "postfix": false, "binop": null }, - "start": 3614, - "end": 3615, + "start": 5117, + "end": 5118, "loc": { "start": { - "line": 151, + "line": 210, "column": 7 }, "end": { - "line": 151, + "line": 210, "column": 8 } } @@ -14359,15 +14359,15 @@ "updateContext": null }, "value": "this", - "start": 3615, - "end": 3619, + "start": 5118, + "end": 5122, "loc": { "start": { - "line": 151, + "line": 210, "column": 8 }, "end": { - "line": 151, + "line": 210, "column": 12 } } @@ -14385,15 +14385,15 @@ "binop": null, "updateContext": null }, - "start": 3619, - "end": 3620, + "start": 5122, + "end": 5123, "loc": { "start": { - "line": 151, + "line": 210, "column": 12 }, "end": { - "line": 151, + "line": 210, "column": 13 } } @@ -14411,15 +14411,15 @@ "binop": null }, "value": "_processedData", - "start": 3620, - "end": 3634, + "start": 5123, + "end": 5137, "loc": { "start": { - "line": 151, + "line": 210, "column": 13 }, "end": { - "line": 151, + "line": 210, "column": 27 } } @@ -14436,15 +14436,15 @@ "postfix": false, "binop": null }, - "start": 3634, - "end": 3635, + "start": 5137, + "end": 5138, "loc": { "start": { - "line": 151, + "line": 210, "column": 27 }, "end": { - "line": 151, + "line": 210, "column": 28 } } @@ -14461,15 +14461,15 @@ "postfix": false, "binop": null }, - "start": 3636, - "end": 3637, + "start": 5139, + "end": 5140, "loc": { "start": { - "line": 151, + "line": 210, "column": 29 }, "end": { - "line": 151, + "line": 210, "column": 30 } } @@ -14489,15 +14489,15 @@ "updateContext": null }, "value": "return", - "start": 3644, - "end": 3650, + "start": 5147, + "end": 5153, "loc": { "start": { - "line": 152, + "line": 211, "column": 6 }, "end": { - "line": 152, + "line": 211, "column": 12 } } @@ -14517,15 +14517,15 @@ "updateContext": null }, "value": "this", - "start": 3651, - "end": 3655, + "start": 5154, + "end": 5158, "loc": { "start": { - "line": 152, + "line": 211, "column": 13 }, "end": { - "line": 152, + "line": 211, "column": 17 } } @@ -14543,15 +14543,15 @@ "binop": null, "updateContext": null }, - "start": 3655, - "end": 3656, + "start": 5158, + "end": 5159, "loc": { "start": { - "line": 152, + "line": 211, "column": 17 }, "end": { - "line": 152, + "line": 211, "column": 18 } } @@ -14569,15 +14569,15 @@ "binop": null }, "value": "_processedData", - "start": 3656, - "end": 3670, + "start": 5159, + "end": 5173, "loc": { "start": { - "line": 152, + "line": 211, "column": 18 }, "end": { - "line": 152, + "line": 211, "column": 32 } } @@ -14595,15 +14595,15 @@ "binop": null, "updateContext": null }, - "start": 3670, - "end": 3671, + "start": 5173, + "end": 5174, "loc": { "start": { - "line": 152, + "line": 211, "column": 32 }, "end": { - "line": 152, + "line": 211, "column": 33 } } @@ -14621,15 +14621,15 @@ "binop": null }, "value": "length", - "start": 3671, - "end": 3677, + "start": 5174, + "end": 5180, "loc": { "start": { - "line": 152, + "line": 211, "column": 33 }, "end": { - "line": 152, + "line": 211, "column": 39 } } @@ -14647,15 +14647,15 @@ "binop": null, "updateContext": null }, - "start": 3677, - "end": 3678, + "start": 5180, + "end": 5181, "loc": { "start": { - "line": 152, + "line": 211, "column": 39 }, "end": { - "line": 152, + "line": 211, "column": 40 } } @@ -14672,15 +14672,15 @@ "postfix": false, "binop": null }, - "start": 3683, - "end": 3684, + "start": 5186, + "end": 5187, "loc": { "start": { - "line": 153, + "line": 212, "column": 4 }, "end": { - "line": 153, + "line": 212, "column": 5 } } @@ -14700,15 +14700,15 @@ "updateContext": null }, "value": "if", - "start": 3689, - "end": 3691, + "start": 5192, + "end": 5194, "loc": { "start": { - "line": 154, + "line": 213, "column": 4 }, "end": { - "line": 154, + "line": 213, "column": 6 } } @@ -14725,15 +14725,15 @@ "postfix": false, "binop": null }, - "start": 3692, - "end": 3693, + "start": 5195, + "end": 5196, "loc": { "start": { - "line": 154, + "line": 213, "column": 7 }, "end": { - "line": 154, + "line": 213, "column": 8 } } @@ -14753,15 +14753,15 @@ "updateContext": null }, "value": "this", - "start": 3693, - "end": 3697, + "start": 5196, + "end": 5200, "loc": { "start": { - "line": 154, + "line": 213, "column": 8 }, "end": { - "line": 154, + "line": 213, "column": 12 } } @@ -14779,15 +14779,15 @@ "binop": null, "updateContext": null }, - "start": 3697, - "end": 3698, + "start": 5200, + "end": 5201, "loc": { "start": { - "line": 154, + "line": 213, "column": 12 }, "end": { - "line": 154, + "line": 213, "column": 13 } } @@ -14805,15 +14805,15 @@ "binop": null }, "value": "_rawData", - "start": 3698, - "end": 3706, + "start": 5201, + "end": 5209, "loc": { "start": { - "line": 154, + "line": 213, "column": 13 }, "end": { - "line": 154, + "line": 213, "column": 21 } } @@ -14830,15 +14830,15 @@ "postfix": false, "binop": null }, - "start": 3706, - "end": 3707, + "start": 5209, + "end": 5210, "loc": { "start": { - "line": 154, + "line": 213, "column": 21 }, "end": { - "line": 154, + "line": 213, "column": 22 } } @@ -14855,15 +14855,15 @@ "postfix": false, "binop": null }, - "start": 3708, - "end": 3709, + "start": 5211, + "end": 5212, "loc": { "start": { - "line": 154, + "line": 213, "column": 23 }, "end": { - "line": 154, + "line": 213, "column": 24 } } @@ -14883,15 +14883,15 @@ "updateContext": null }, "value": "return", - "start": 3716, - "end": 3722, + "start": 5219, + "end": 5225, "loc": { "start": { - "line": 155, + "line": 214, "column": 6 }, "end": { - "line": 155, + "line": 214, "column": 12 } } @@ -14911,15 +14911,15 @@ "updateContext": null }, "value": "this", - "start": 3723, - "end": 3727, + "start": 5226, + "end": 5230, "loc": { "start": { - "line": 155, + "line": 214, "column": 13 }, "end": { - "line": 155, + "line": 214, "column": 17 } } @@ -14937,15 +14937,15 @@ "binop": null, "updateContext": null }, - "start": 3727, - "end": 3728, + "start": 5230, + "end": 5231, "loc": { "start": { - "line": 155, + "line": 214, "column": 17 }, "end": { - "line": 155, + "line": 214, "column": 18 } } @@ -14963,15 +14963,15 @@ "binop": null }, "value": "_rawData", - "start": 3728, - "end": 3736, + "start": 5231, + "end": 5239, "loc": { "start": { - "line": 155, + "line": 214, "column": 18 }, "end": { - "line": 155, + "line": 214, "column": 26 } } @@ -14989,15 +14989,15 @@ "binop": null, "updateContext": null }, - "start": 3736, - "end": 3737, + "start": 5239, + "end": 5240, "loc": { "start": { - "line": 155, + "line": 214, "column": 26 }, "end": { - "line": 155, + "line": 214, "column": 27 } } @@ -15015,15 +15015,15 @@ "binop": null }, "value": "length", - "start": 3737, - "end": 3743, + "start": 5240, + "end": 5246, "loc": { "start": { - "line": 155, + "line": 214, "column": 27 }, "end": { - "line": 155, + "line": 214, "column": 33 } } @@ -15041,15 +15041,15 @@ "binop": null, "updateContext": null }, - "start": 3743, - "end": 3744, + "start": 5246, + "end": 5247, "loc": { "start": { - "line": 155, + "line": 214, "column": 33 }, "end": { - "line": 155, + "line": 214, "column": 34 } } @@ -15066,15 +15066,15 @@ "postfix": false, "binop": null }, - "start": 3749, - "end": 3750, + "start": 5252, + "end": 5253, "loc": { "start": { - "line": 156, + "line": 215, "column": 4 }, "end": { - "line": 156, + "line": 215, "column": 5 } } @@ -15094,15 +15094,15 @@ "updateContext": null }, "value": "return", - "start": 3755, - "end": 3761, + "start": 5258, + "end": 5264, "loc": { "start": { - "line": 157, + "line": 216, "column": 4 }, "end": { - "line": 157, + "line": 216, "column": 10 } } @@ -15121,15 +15121,15 @@ "updateContext": null }, "value": 0, - "start": 3762, - "end": 3763, + "start": 5265, + "end": 5266, "loc": { "start": { - "line": 157, + "line": 216, "column": 11 }, "end": { - "line": 157, + "line": 216, "column": 12 } } @@ -15147,15 +15147,15 @@ "binop": null, "updateContext": null }, - "start": 3763, - "end": 3764, + "start": 5266, + "end": 5267, "loc": { "start": { - "line": 157, + "line": 216, "column": 12 }, "end": { - "line": 157, + "line": 216, "column": 13 } } @@ -15172,15 +15172,15 @@ "postfix": false, "binop": null }, - "start": 3767, - "end": 3768, + "start": 5270, + "end": 5271, "loc": { "start": { - "line": 158, + "line": 217, "column": 2 }, "end": { - "line": 158, + "line": 217, "column": 3 } } @@ -15188,15 +15188,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n * @type {?Array}\n ", - "start": 3772, - "end": 3833, + "start": 5275, + "end": 5336, "loc": { "start": { - "line": 160, + "line": 219, "column": 2 }, "end": { - "line": 164, + "line": 223, "column": 5 } } @@ -15214,15 +15214,15 @@ "binop": null }, "value": "get", - "start": 3836, - "end": 3839, + "start": 5339, + "end": 5342, "loc": { "start": { - "line": 165, + "line": 224, "column": 2 }, "end": { - "line": 165, + "line": 224, "column": 5 } } @@ -15240,15 +15240,15 @@ "binop": null }, "value": "data", - "start": 3840, - "end": 3844, + "start": 5343, + "end": 5347, "loc": { "start": { - "line": 165, + "line": 224, "column": 6 }, "end": { - "line": 165, + "line": 224, "column": 10 } } @@ -15265,15 +15265,15 @@ "postfix": false, "binop": null }, - "start": 3844, - "end": 3845, + "start": 5347, + "end": 5348, "loc": { "start": { - "line": 165, + "line": 224, "column": 10 }, "end": { - "line": 165, + "line": 224, "column": 11 } } @@ -15290,15 +15290,15 @@ "postfix": false, "binop": null }, - "start": 3845, - "end": 3846, + "start": 5348, + "end": 5349, "loc": { "start": { - "line": 165, + "line": 224, "column": 11 }, "end": { - "line": 165, + "line": 224, "column": 12 } } @@ -15315,15 +15315,15 @@ "postfix": false, "binop": null }, - "start": 3847, - "end": 3848, + "start": 5350, + "end": 5351, "loc": { "start": { - "line": 165, + "line": 224, "column": 13 }, "end": { - "line": 165, + "line": 224, "column": 14 } } @@ -15343,15 +15343,15 @@ "updateContext": null }, "value": "return", - "start": 3853, - "end": 3859, + "start": 5356, + "end": 5362, "loc": { "start": { - "line": 166, + "line": 225, "column": 4 }, "end": { - "line": 166, + "line": 225, "column": 10 } } @@ -15371,15 +15371,15 @@ "updateContext": null }, "value": "this", - "start": 3860, - "end": 3864, + "start": 5363, + "end": 5367, "loc": { "start": { - "line": 166, + "line": 225, "column": 11 }, "end": { - "line": 166, + "line": 225, "column": 15 } } @@ -15397,15 +15397,15 @@ "binop": null, "updateContext": null }, - "start": 3864, - "end": 3865, + "start": 5367, + "end": 5368, "loc": { "start": { - "line": 166, + "line": 225, "column": 15 }, "end": { - "line": 166, + "line": 225, "column": 16 } } @@ -15423,15 +15423,15 @@ "binop": null }, "value": "_data", - "start": 3865, - "end": 3870, + "start": 5368, + "end": 5373, "loc": { "start": { - "line": 166, + "line": 225, "column": 16 }, "end": { - "line": 166, + "line": 225, "column": 21 } } @@ -15449,15 +15449,15 @@ "binop": null, "updateContext": null }, - "start": 3870, - "end": 3871, + "start": 5373, + "end": 5374, "loc": { "start": { - "line": 166, + "line": 225, "column": 21 }, "end": { - "line": 166, + "line": 225, "column": 22 } } @@ -15474,15 +15474,15 @@ "postfix": false, "binop": null }, - "start": 3874, - "end": 3875, + "start": 5377, + "end": 5378, "loc": { "start": { - "line": 167, + "line": 226, "column": 2 }, "end": { - "line": 167, + "line": 226, "column": 3 } } @@ -15490,15 +15490,15 @@ { "type": "CommentBlock", "value": "*\n * @inheritdoc\n * @override\n ", - "start": 3879, - "end": 3920, + "start": 5382, + "end": 5423, "loc": { "start": { - "line": 169, + "line": 228, "column": 2 }, "end": { - "line": 172, + "line": 231, "column": 5 } } @@ -15516,15 +15516,15 @@ "binop": null }, "value": "async", - "start": 3923, - "end": 3928, + "start": 5426, + "end": 5431, "loc": { "start": { - "line": 173, + "line": 232, "column": 2 }, "end": { - "line": 173, + "line": 232, "column": 7 } } @@ -15542,15 +15542,15 @@ "binop": null }, "value": "_update", - "start": 3929, - "end": 3936, + "start": 5432, + "end": 5439, "loc": { "start": { - "line": 173, + "line": 232, "column": 8 }, "end": { - "line": 173, + "line": 232, "column": 15 } } @@ -15567,15 +15567,15 @@ "postfix": false, "binop": null }, - "start": 3936, - "end": 3937, + "start": 5439, + "end": 5440, "loc": { "start": { - "line": 173, + "line": 232, "column": 15 }, "end": { - "line": 173, + "line": 232, "column": 16 } } @@ -15592,15 +15592,15 @@ "postfix": false, "binop": null }, - "start": 3937, - "end": 3938, + "start": 5440, + "end": 5441, "loc": { "start": { - "line": 173, + "line": 232, "column": 16 }, "end": { - "line": 173, + "line": 232, "column": 17 } } @@ -15617,15 +15617,15 @@ "postfix": false, "binop": null }, - "start": 3939, - "end": 3940, + "start": 5442, + "end": 5443, "loc": { "start": { - "line": 173, + "line": 232, "column": 18 }, "end": { - "line": 173, + "line": 232, "column": 19 } } @@ -15645,15 +15645,15 @@ "updateContext": null }, "value": "if", - "start": 3945, - "end": 3947, + "start": 5448, + "end": 5450, "loc": { "start": { - "line": 174, + "line": 233, "column": 4 }, "end": { - "line": 174, + "line": 233, "column": 6 } } @@ -15670,15 +15670,15 @@ "postfix": false, "binop": null }, - "start": 3948, - "end": 3949, + "start": 5451, + "end": 5452, "loc": { "start": { - "line": 174, + "line": 233, "column": 7 }, "end": { - "line": 174, + "line": 233, "column": 8 } } @@ -15697,15 +15697,15 @@ "updateContext": null }, "value": "!", - "start": 3949, - "end": 3950, + "start": 5452, + "end": 5453, "loc": { "start": { - "line": 174, + "line": 233, "column": 8 }, "end": { - "line": 174, + "line": 233, "column": 9 } } @@ -15725,15 +15725,15 @@ "updateContext": null }, "value": "this", - "start": 3950, - "end": 3954, + "start": 5453, + "end": 5457, "loc": { "start": { - "line": 174, + "line": 233, "column": 9 }, "end": { - "line": 174, + "line": 233, "column": 13 } } @@ -15751,15 +15751,15 @@ "binop": null, "updateContext": null }, - "start": 3954, - "end": 3955, + "start": 5457, + "end": 5458, "loc": { "start": { - "line": 174, + "line": 233, "column": 13 }, "end": { - "line": 174, + "line": 233, "column": 14 } } @@ -15777,15 +15777,15 @@ "binop": null }, "value": "_rawData", - "start": 3955, - "end": 3963, + "start": 5458, + "end": 5466, "loc": { "start": { - "line": 174, + "line": 233, "column": 14 }, "end": { - "line": 174, + "line": 233, "column": 22 } } @@ -15802,15 +15802,15 @@ "postfix": false, "binop": null }, - "start": 3963, - "end": 3964, + "start": 5466, + "end": 5467, "loc": { "start": { - "line": 174, + "line": 233, "column": 22 }, "end": { - "line": 174, + "line": 233, "column": 23 } } @@ -15827,15 +15827,15 @@ "postfix": false, "binop": null }, - "start": 3965, - "end": 3966, + "start": 5468, + "end": 5469, "loc": { "start": { - "line": 174, + "line": 233, "column": 24 }, "end": { - "line": 174, + "line": 233, "column": 25 } } @@ -15855,15 +15855,15 @@ "updateContext": null }, "value": "return", - "start": 3973, - "end": 3979, + "start": 5476, + "end": 5482, "loc": { "start": { - "line": 175, + "line": 234, "column": 6 }, "end": { - "line": 175, + "line": 234, "column": 12 } } @@ -15883,15 +15883,15 @@ "updateContext": null }, "value": "null", - "start": 3980, - "end": 3984, + "start": 5483, + "end": 5487, "loc": { "start": { - "line": 175, + "line": 234, "column": 13 }, "end": { - "line": 175, + "line": 234, "column": 17 } } @@ -15909,15 +15909,15 @@ "binop": null, "updateContext": null }, - "start": 3984, - "end": 3985, + "start": 5487, + "end": 5488, "loc": { "start": { - "line": 175, + "line": 234, "column": 17 }, "end": { - "line": 175, + "line": 234, "column": 18 } } @@ -15934,15 +15934,15 @@ "postfix": false, "binop": null }, - "start": 3990, - "end": 3991, + "start": 5493, + "end": 5494, "loc": { "start": { - "line": 176, + "line": 235, "column": 4 }, "end": { - "line": 176, + "line": 235, "column": 5 } } @@ -15962,15 +15962,15 @@ "updateContext": null }, "value": "this", - "start": 3996, - "end": 4000, + "start": 5499, + "end": 5503, "loc": { "start": { - "line": 177, + "line": 236, "column": 4 }, "end": { - "line": 177, + "line": 236, "column": 8 } } @@ -15988,15 +15988,15 @@ "binop": null, "updateContext": null }, - "start": 4000, - "end": 4001, + "start": 5503, + "end": 5504, "loc": { "start": { - "line": 177, + "line": 236, "column": 8 }, "end": { - "line": 177, + "line": 236, "column": 9 } } @@ -16014,15 +16014,15 @@ "binop": null }, "value": "_processedData", - "start": 4001, - "end": 4015, + "start": 5504, + "end": 5518, "loc": { "start": { - "line": 177, + "line": 236, "column": 9 }, "end": { - "line": 177, + "line": 236, "column": 23 } } @@ -16041,15 +16041,15 @@ "updateContext": null }, "value": "=", - "start": 4016, - "end": 4017, + "start": 5519, + "end": 5520, "loc": { "start": { - "line": 177, + "line": 236, "column": 24 }, "end": { - "line": 177, + "line": 236, "column": 25 } } @@ -16069,15 +16069,15 @@ "updateContext": null }, "value": "this", - "start": 4018, - "end": 4022, + "start": 5521, + "end": 5525, "loc": { "start": { - "line": 177, + "line": 236, "column": 26 }, "end": { - "line": 177, + "line": 236, "column": 30 } } @@ -16095,15 +16095,15 @@ "binop": null, "updateContext": null }, - "start": 4022, - "end": 4023, + "start": 5525, + "end": 5526, "loc": { "start": { - "line": 177, + "line": 236, "column": 30 }, "end": { - "line": 177, + "line": 236, "column": 31 } } @@ -16121,15 +16121,15 @@ "binop": null }, "value": "_getProcessedData", - "start": 4023, - "end": 4040, + "start": 5526, + "end": 5543, "loc": { "start": { - "line": 177, + "line": 236, "column": 31 }, "end": { - "line": 177, + "line": 236, "column": 48 } } @@ -16146,15 +16146,15 @@ "postfix": false, "binop": null }, - "start": 4040, - "end": 4041, + "start": 5543, + "end": 5544, "loc": { "start": { - "line": 177, + "line": 236, "column": 48 }, "end": { - "line": 177, + "line": 236, "column": 49 } } @@ -16171,15 +16171,15 @@ "postfix": false, "binop": null }, - "start": 4041, - "end": 4042, + "start": 5544, + "end": 5545, "loc": { "start": { - "line": 177, + "line": 236, "column": 49 }, "end": { - "line": 177, + "line": 236, "column": 50 } } @@ -16197,15 +16197,15 @@ "binop": null, "updateContext": null }, - "start": 4042, - "end": 4043, + "start": 5545, + "end": 5546, "loc": { "start": { - "line": 177, + "line": 236, "column": 50 }, "end": { - "line": 177, + "line": 236, "column": 51 } } @@ -16225,15 +16225,15 @@ "updateContext": null }, "value": "this", - "start": 4048, - "end": 4052, + "start": 5551, + "end": 5555, "loc": { "start": { - "line": 178, + "line": 237, "column": 4 }, "end": { - "line": 178, + "line": 237, "column": 8 } } @@ -16251,15 +16251,15 @@ "binop": null, "updateContext": null }, - "start": 4052, - "end": 4053, + "start": 5555, + "end": 5556, "loc": { "start": { - "line": 178, + "line": 237, "column": 8 }, "end": { - "line": 178, + "line": 237, "column": 9 } } @@ -16277,15 +16277,15 @@ "binop": null }, "value": "_data", - "start": 4053, - "end": 4058, + "start": 5556, + "end": 5561, "loc": { "start": { - "line": 178, + "line": 237, "column": 9 }, "end": { - "line": 178, + "line": 237, "column": 14 } } @@ -16304,15 +16304,15 @@ "updateContext": null }, "value": "=", - "start": 4059, - "end": 4060, + "start": 5562, + "end": 5563, "loc": { "start": { - "line": 178, + "line": 237, "column": 15 }, "end": { - "line": 178, + "line": 237, "column": 16 } } @@ -16332,15 +16332,15 @@ "updateContext": null }, "value": "this", - "start": 4061, - "end": 4065, + "start": 5564, + "end": 5568, "loc": { "start": { - "line": 178, + "line": 237, "column": 17 }, "end": { - "line": 178, + "line": 237, "column": 21 } } @@ -16358,15 +16358,15 @@ "binop": null, "updateContext": null }, - "start": 4065, - "end": 4066, + "start": 5568, + "end": 5569, "loc": { "start": { - "line": 178, + "line": 237, "column": 21 }, "end": { - "line": 178, + "line": 237, "column": 22 } } @@ -16384,15 +16384,15 @@ "binop": null }, "value": "_processedData", - "start": 4066, - "end": 4080, + "start": 5569, + "end": 5583, "loc": { "start": { - "line": 178, + "line": 237, "column": 22 }, "end": { - "line": 178, + "line": 237, "column": 36 } } @@ -16410,15 +16410,15 @@ "binop": null, "updateContext": null }, - "start": 4080, - "end": 4081, + "start": 5583, + "end": 5584, "loc": { "start": { - "line": 178, + "line": 237, "column": 36 }, "end": { - "line": 178, + "line": 237, "column": 37 } } @@ -16436,15 +16436,15 @@ "binop": null }, "value": "slice", - "start": 4081, - "end": 4086, + "start": 5584, + "end": 5589, "loc": { "start": { - "line": 178, + "line": 237, "column": 37 }, "end": { - "line": 178, + "line": 237, "column": 42 } } @@ -16461,15 +16461,15 @@ "postfix": false, "binop": null }, - "start": 4086, - "end": 4087, + "start": 5589, + "end": 5590, "loc": { "start": { - "line": 178, + "line": 237, "column": 42 }, "end": { - "line": 178, + "line": 237, "column": 43 } } @@ -16489,15 +16489,15 @@ "updateContext": null }, "value": "this", - "start": 4087, - "end": 4091, + "start": 5590, + "end": 5594, "loc": { "start": { - "line": 178, + "line": 237, "column": 43 }, "end": { - "line": 178, + "line": 237, "column": 47 } } @@ -16515,15 +16515,15 @@ "binop": null, "updateContext": null }, - "start": 4091, - "end": 4092, + "start": 5594, + "end": 5595, "loc": { "start": { - "line": 178, + "line": 237, "column": 47 }, "end": { - "line": 178, + "line": 237, "column": 48 } } @@ -16541,15 +16541,15 @@ "binop": null }, "value": "offset", - "start": 4092, - "end": 4098, + "start": 5595, + "end": 5601, "loc": { "start": { - "line": 178, + "line": 237, "column": 48 }, "end": { - "line": 178, + "line": 237, "column": 54 } } @@ -16567,15 +16567,15 @@ "binop": null, "updateContext": null }, - "start": 4098, - "end": 4099, + "start": 5601, + "end": 5602, "loc": { "start": { - "line": 178, + "line": 237, "column": 54 }, "end": { - "line": 178, + "line": 237, "column": 55 } } @@ -16595,15 +16595,15 @@ "updateContext": null }, "value": "this", - "start": 4100, - "end": 4104, + "start": 5603, + "end": 5607, "loc": { "start": { - "line": 178, + "line": 237, "column": 56 }, "end": { - "line": 178, + "line": 237, "column": 60 } } @@ -16621,15 +16621,15 @@ "binop": null, "updateContext": null }, - "start": 4104, - "end": 4105, + "start": 5607, + "end": 5608, "loc": { "start": { - "line": 178, + "line": 237, "column": 60 }, "end": { - "line": 178, + "line": 237, "column": 61 } } @@ -16647,15 +16647,15 @@ "binop": null }, "value": "offset", - "start": 4105, - "end": 4111, + "start": 5608, + "end": 5614, "loc": { "start": { - "line": 178, + "line": 237, "column": 61 }, "end": { - "line": 178, + "line": 237, "column": 67 } } @@ -16674,15 +16674,15 @@ "updateContext": null }, "value": "+", - "start": 4112, - "end": 4113, + "start": 5615, + "end": 5616, "loc": { "start": { - "line": 178, + "line": 237, "column": 68 }, "end": { - "line": 178, + "line": 237, "column": 69 } } @@ -16702,15 +16702,15 @@ "updateContext": null }, "value": "this", - "start": 4114, - "end": 4118, + "start": 5617, + "end": 5621, "loc": { "start": { - "line": 178, + "line": 237, "column": 70 }, "end": { - "line": 178, + "line": 237, "column": 74 } } @@ -16728,15 +16728,15 @@ "binop": null, "updateContext": null }, - "start": 4118, - "end": 4119, + "start": 5621, + "end": 5622, "loc": { "start": { - "line": 178, + "line": 237, "column": 74 }, "end": { - "line": 178, + "line": 237, "column": 75 } } @@ -16754,15 +16754,15 @@ "binop": null }, "value": "size", - "start": 4119, - "end": 4123, + "start": 5622, + "end": 5626, "loc": { "start": { - "line": 178, + "line": 237, "column": 75 }, "end": { - "line": 178, + "line": 237, "column": 79 } } @@ -16779,15 +16779,15 @@ "postfix": false, "binop": null }, - "start": 4123, - "end": 4124, + "start": 5626, + "end": 5627, "loc": { "start": { - "line": 178, + "line": 237, "column": 79 }, "end": { - "line": 178, + "line": 237, "column": 80 } } @@ -16805,15 +16805,15 @@ "binop": null, "updateContext": null }, - "start": 4124, - "end": 4125, + "start": 5627, + "end": 5628, "loc": { "start": { - "line": 178, + "line": 237, "column": 80 }, "end": { - "line": 178, + "line": 237, "column": 81 } } @@ -16833,15 +16833,15 @@ "updateContext": null }, "value": "return", - "start": 4130, - "end": 4136, + "start": 5633, + "end": 5639, "loc": { "start": { - "line": 179, + "line": 238, "column": 4 }, "end": { - "line": 179, + "line": 238, "column": 10 } } @@ -16861,15 +16861,15 @@ "updateContext": null }, "value": "this", - "start": 4137, - "end": 4141, + "start": 5640, + "end": 5644, "loc": { "start": { - "line": 179, + "line": 238, "column": 11 }, "end": { - "line": 179, + "line": 238, "column": 15 } } @@ -16887,15 +16887,15 @@ "binop": null, "updateContext": null }, - "start": 4141, - "end": 4142, + "start": 5644, + "end": 5645, "loc": { "start": { - "line": 179, + "line": 238, "column": 15 }, "end": { - "line": 179, + "line": 238, "column": 16 } } @@ -16913,15 +16913,15 @@ "binop": null }, "value": "_data", - "start": 4142, - "end": 4147, + "start": 5645, + "end": 5650, "loc": { "start": { - "line": 179, + "line": 238, "column": 16 }, "end": { - "line": 179, + "line": 238, "column": 21 } } @@ -16939,15 +16939,15 @@ "binop": null, "updateContext": null }, - "start": 4147, - "end": 4148, + "start": 5650, + "end": 5651, "loc": { "start": { - "line": 179, + "line": 238, "column": 21 }, "end": { - "line": 179, + "line": 238, "column": 22 } } @@ -16964,15 +16964,15 @@ "postfix": false, "binop": null }, - "start": 4151, - "end": 4152, + "start": 5654, + "end": 5655, "loc": { "start": { - "line": 180, + "line": 239, "column": 2 }, "end": { - "line": 180, + "line": 239, "column": 3 } } @@ -16989,15 +16989,15 @@ "postfix": false, "binop": null }, - "start": 4153, - "end": 4154, + "start": 5656, + "end": 5657, "loc": { "start": { - "line": 181, + "line": 240, "column": 0 }, "end": { - "line": 181, + "line": 240, "column": 1 } } @@ -17015,15 +17015,15 @@ "binop": null }, "value": "ArrayDatasource", - "start": 4156, - "end": 4171, + "start": 5659, + "end": 5674, "loc": { "start": { - "line": 183, + "line": 242, "column": 0 }, "end": { - "line": 183, + "line": 242, "column": 15 } } @@ -17041,15 +17041,15 @@ "binop": null, "updateContext": null }, - "start": 4171, - "end": 4172, + "start": 5674, + "end": 5675, "loc": { "start": { - "line": 183, + "line": 242, "column": 15 }, "end": { - "line": 183, + "line": 242, "column": 16 } } @@ -17067,15 +17067,15 @@ "binop": null }, "value": "prototype", - "start": 4172, - "end": 4181, + "start": 5675, + "end": 5684, "loc": { "start": { - "line": 183, + "line": 242, "column": 16 }, "end": { - "line": 183, + "line": 242, "column": 25 } } @@ -17093,15 +17093,15 @@ "binop": null, "updateContext": null }, - "start": 4181, - "end": 4182, + "start": 5684, + "end": 5685, "loc": { "start": { - "line": 183, + "line": 242, "column": 25 }, "end": { - "line": 183, + "line": 242, "column": 26 } } @@ -17119,15 +17119,15 @@ "binop": null }, "value": "defaults", - "start": 4182, - "end": 4190, + "start": 5685, + "end": 5693, "loc": { "start": { - "line": 183, + "line": 242, "column": 26 }, "end": { - "line": 183, + "line": 242, "column": 34 } } @@ -17146,15 +17146,15 @@ "updateContext": null }, "value": "=", - "start": 4191, - "end": 4192, + "start": 5694, + "end": 5695, "loc": { "start": { - "line": 183, + "line": 242, "column": 35 }, "end": { - "line": 183, + "line": 242, "column": 36 } } @@ -17171,15 +17171,15 @@ "postfix": false, "binop": null }, - "start": 4193, - "end": 4194, + "start": 5696, + "end": 5697, "loc": { "start": { - "line": 183, + "line": 242, "column": 37 }, "end": { - "line": 183, + "line": 242, "column": 38 } } @@ -17197,15 +17197,15 @@ "binop": null }, "value": "data", - "start": 4197, - "end": 4201, + "start": 5700, + "end": 5704, "loc": { "start": { - "line": 184, + "line": 243, "column": 2 }, "end": { - "line": 184, + "line": 243, "column": 6 } } @@ -17223,15 +17223,15 @@ "binop": null, "updateContext": null }, - "start": 4201, - "end": 4202, + "start": 5704, + "end": 5705, "loc": { "start": { - "line": 184, + "line": 243, "column": 6 }, "end": { - "line": 184, + "line": 243, "column": 7 } } @@ -17251,15 +17251,15 @@ "updateContext": null }, "value": "null", - "start": 4203, - "end": 4207, + "start": 5706, + "end": 5710, "loc": { "start": { - "line": 184, + "line": 243, "column": 8 }, "end": { - "line": 184, + "line": 243, "column": 12 } } @@ -17277,15 +17277,15 @@ "binop": null, "updateContext": null }, - "start": 4207, - "end": 4208, + "start": 5710, + "end": 5711, "loc": { "start": { - "line": 184, + "line": 243, "column": 12 }, "end": { - "line": 184, + "line": 243, "column": 13 } } @@ -17293,15 +17293,15 @@ { "type": "CommentBlock", "value": " eslint-disable no-unused-vars ", - "start": 4211, - "end": 4246, + "start": 5714, + "end": 5749, "loc": { "start": { - "line": 185, + "line": 244, "column": 2 }, "end": { - "line": 185, + "line": 244, "column": 37 } } @@ -17319,15 +17319,15 @@ "binop": null }, "value": "search", - "start": 4249, - "end": 4255, + "start": 5752, + "end": 5758, "loc": { "start": { - "line": 186, + "line": 245, "column": 2 }, "end": { - "line": 186, + "line": 245, "column": 8 } } @@ -17344,15 +17344,15 @@ "postfix": false, "binop": null }, - "start": 4255, - "end": 4256, + "start": 5758, + "end": 5759, "loc": { "start": { - "line": 186, + "line": 245, "column": 8 }, "end": { - "line": 186, + "line": 245, "column": 9 } } @@ -17370,15 +17370,15 @@ "binop": null }, "value": "data", - "start": 4256, - "end": 4260, + "start": 5759, + "end": 5763, "loc": { "start": { - "line": 186, + "line": 245, "column": 9 }, "end": { - "line": 186, + "line": 245, "column": 13 } } @@ -17396,15 +17396,15 @@ "binop": null, "updateContext": null }, - "start": 4260, - "end": 4261, + "start": 5763, + "end": 5764, "loc": { "start": { - "line": 186, + "line": 245, "column": 13 }, "end": { - "line": 186, + "line": 245, "column": 14 } } @@ -17422,15 +17422,15 @@ "binop": null }, "value": "searchArguments", - "start": 4262, - "end": 4277, + "start": 5765, + "end": 5780, "loc": { "start": { - "line": 186, + "line": 245, "column": 15 }, "end": { - "line": 186, + "line": 245, "column": 30 } } @@ -17447,15 +17447,15 @@ "postfix": false, "binop": null }, - "start": 4277, - "end": 4278, + "start": 5780, + "end": 5781, "loc": { "start": { - "line": 186, + "line": 245, "column": 30 }, "end": { - "line": 186, + "line": 245, "column": 31 } } @@ -17472,15 +17472,15 @@ "postfix": false, "binop": null }, - "start": 4279, - "end": 4280, + "start": 5782, + "end": 5783, "loc": { "start": { - "line": 186, + "line": 245, "column": 32 }, "end": { - "line": 186, + "line": 245, "column": 33 } } @@ -17500,15 +17500,15 @@ "updateContext": null }, "value": "return", - "start": 4285, - "end": 4291, + "start": 5788, + "end": 5794, "loc": { "start": { - "line": 187, + "line": 246, "column": 4 }, "end": { - "line": 187, + "line": 246, "column": 10 } } @@ -17526,15 +17526,15 @@ "binop": null }, "value": "data", - "start": 4292, - "end": 4296, + "start": 5795, + "end": 5799, "loc": { "start": { - "line": 187, + "line": 246, "column": 11 }, "end": { - "line": 187, + "line": 246, "column": 15 } } @@ -17552,15 +17552,15 @@ "binop": null, "updateContext": null }, - "start": 4296, - "end": 4297, + "start": 5799, + "end": 5800, "loc": { "start": { - "line": 187, + "line": 246, "column": 15 }, "end": { - "line": 187, + "line": 246, "column": 16 } } @@ -17577,15 +17577,15 @@ "postfix": false, "binop": null }, - "start": 4300, - "end": 4301, + "start": 5803, + "end": 5804, "loc": { "start": { - "line": 188, + "line": 247, "column": 2 }, "end": { - "line": 188, + "line": 247, "column": 3 } } @@ -17603,15 +17603,15 @@ "binop": null, "updateContext": null }, - "start": 4301, - "end": 4302, + "start": 5804, + "end": 5805, "loc": { "start": { - "line": 188, + "line": 247, "column": 3 }, "end": { - "line": 188, + "line": 247, "column": 4 } } @@ -17629,15 +17629,15 @@ "binop": null }, "value": "sort", - "start": 4305, - "end": 4309, + "start": 5808, + "end": 5812, "loc": { "start": { - "line": 189, + "line": 248, "column": 2 }, "end": { - "line": 189, + "line": 248, "column": 6 } } @@ -17654,15 +17654,15 @@ "postfix": false, "binop": null }, - "start": 4309, - "end": 4310, + "start": 5812, + "end": 5813, "loc": { "start": { - "line": 189, + "line": 248, "column": 6 }, "end": { - "line": 189, + "line": 248, "column": 7 } } @@ -17680,15 +17680,15 @@ "binop": null }, "value": "data", - "start": 4310, - "end": 4314, + "start": 5813, + "end": 5817, "loc": { "start": { - "line": 189, + "line": 248, "column": 7 }, "end": { - "line": 189, + "line": 248, "column": 11 } } @@ -17706,15 +17706,15 @@ "binop": null, "updateContext": null }, - "start": 4314, - "end": 4315, + "start": 5817, + "end": 5818, "loc": { "start": { - "line": 189, + "line": 248, "column": 11 }, "end": { - "line": 189, + "line": 248, "column": 12 } } @@ -17732,15 +17732,15 @@ "binop": null }, "value": "sortArguments", - "start": 4316, - "end": 4329, + "start": 5819, + "end": 5832, "loc": { "start": { - "line": 189, + "line": 248, "column": 13 }, "end": { - "line": 189, + "line": 248, "column": 26 } } @@ -17757,15 +17757,15 @@ "postfix": false, "binop": null }, - "start": 4329, - "end": 4330, + "start": 5832, + "end": 5833, "loc": { "start": { - "line": 189, + "line": 248, "column": 26 }, "end": { - "line": 189, + "line": 248, "column": 27 } } @@ -17782,15 +17782,15 @@ "postfix": false, "binop": null }, - "start": 4331, - "end": 4332, + "start": 5834, + "end": 5835, "loc": { "start": { - "line": 189, + "line": 248, "column": 28 }, "end": { - "line": 189, + "line": 248, "column": 29 } } @@ -17810,15 +17810,15 @@ "updateContext": null }, "value": "return", - "start": 4337, - "end": 4343, + "start": 5840, + "end": 5846, "loc": { "start": { - "line": 190, + "line": 249, "column": 4 }, "end": { - "line": 190, + "line": 249, "column": 10 } } @@ -17836,15 +17836,15 @@ "binop": null }, "value": "data", - "start": 4344, - "end": 4348, + "start": 5847, + "end": 5851, "loc": { "start": { - "line": 190, + "line": 249, "column": 11 }, "end": { - "line": 190, + "line": 249, "column": 15 } } @@ -17862,15 +17862,15 @@ "binop": null, "updateContext": null }, - "start": 4348, - "end": 4349, + "start": 5851, + "end": 5852, "loc": { "start": { - "line": 190, + "line": 249, "column": 15 }, "end": { - "line": 190, + "line": 249, "column": 16 } } @@ -17887,15 +17887,15 @@ "postfix": false, "binop": null }, - "start": 4352, - "end": 4353, + "start": 5855, + "end": 5856, "loc": { "start": { - "line": 191, + "line": 250, "column": 2 }, "end": { - "line": 191, + "line": 250, "column": 3 } } @@ -17913,15 +17913,15 @@ "binop": null, "updateContext": null }, - "start": 4353, - "end": 4354, + "start": 5856, + "end": 5857, "loc": { "start": { - "line": 191, + "line": 250, "column": 3 }, "end": { - "line": 191, + "line": 250, "column": 4 } } @@ -17929,15 +17929,15 @@ { "type": "CommentBlock", "value": " eslint-enable no-unused-vars ", - "start": 4357, - "end": 4391, + "start": 5860, + "end": 5894, "loc": { "start": { - "line": 192, + "line": 251, "column": 2 }, "end": { - "line": 192, + "line": 251, "column": 36 } } @@ -17954,15 +17954,15 @@ "postfix": false, "binop": null }, - "start": 4392, - "end": 4393, + "start": 5895, + "end": 5896, "loc": { "start": { - "line": 193, + "line": 252, "column": 0 }, "end": { - "line": 193, + "line": 252, "column": 1 } } @@ -17980,15 +17980,15 @@ "binop": null, "updateContext": null }, - "start": 4393, - "end": 4394, + "start": 5896, + "end": 5897, "loc": { "start": { - "line": 193, + "line": 252, "column": 1 }, "end": { - "line": 193, + "line": 252, "column": 2 } } @@ -18008,15 +18008,15 @@ "updateContext": null }, "value": "export", - "start": 4396, - "end": 4402, + "start": 5899, + "end": 5905, "loc": { "start": { - "line": 195, + "line": 254, "column": 0 }, "end": { - "line": 195, + "line": 254, "column": 6 } } @@ -18036,15 +18036,15 @@ "updateContext": null }, "value": "default", - "start": 4403, - "end": 4410, + "start": 5906, + "end": 5913, "loc": { "start": { - "line": 195, + "line": 254, "column": 7 }, "end": { - "line": 195, + "line": 254, "column": 14 } } @@ -18062,15 +18062,15 @@ "binop": null }, "value": "ArrayDatasource", - "start": 4411, - "end": 4426, + "start": 5914, + "end": 5929, "loc": { "start": { - "line": 195, + "line": 254, "column": 15 }, "end": { - "line": 195, + "line": 254, "column": 30 } } @@ -18088,15 +18088,15 @@ "binop": null, "updateContext": null }, - "start": 4426, - "end": 4427, + "start": 5929, + "end": 5930, "loc": { "start": { - "line": 195, + "line": 254, "column": 30 }, "end": { - "line": 195, + "line": 254, "column": 31 } } @@ -18114,15 +18114,15 @@ "binop": null, "updateContext": null }, - "start": 4428, - "end": 4428, + "start": 5931, + "end": 5931, "loc": { "start": { - "line": 196, + "line": 255, "column": 0 }, "end": { - "line": 196, + "line": 255, "column": 0 } } diff --git a/projects/mitch-datasource-documentation/docs/ast/source/DatasourceBase.js.json b/projects/mitch-datasource-documentation/docs/ast/source/DatasourceBase.js.json index d614700..04c213c 100644 --- a/projects/mitch-datasource-documentation/docs/ast/source/DatasourceBase.js.json +++ b/projects/mitch-datasource-documentation/docs/ast/source/DatasourceBase.js.json @@ -1,7 +1,7 @@ { "type": "File", "start": 0, - "end": 9586, + "end": 9585, "loc": { "start": { "line": 1, @@ -15,7 +15,7 @@ "program": { "type": "Program", "start": 0, - "end": 9586, + "end": 9585, "loc": { "start": { "line": 1, @@ -118,7 +118,7 @@ { "type": "Identifier", "start": 234, - "end": 9400, + "end": 9399, "loc": { "start": { "line": 11, @@ -167,7 +167,7 @@ "body": { "type": "ClassBody", "start": 276, - "end": 9400, + "end": 9399, "loc": { "start": { "line": 11, @@ -864,7 +864,7 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * The pagination size, i.e. the Number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The pagination size, i.e. the number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", "start": 2594, "end": 2728, "loc": { @@ -1014,7 +1014,7 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * The pagination size, i.e. the Number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The pagination size, i.e. the number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", "start": 2594, "end": 2728, "loc": { @@ -1747,7 +1747,7 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * The page Number for data pagination.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The page number for data pagination.\n *\n * @access public\n * @type {Number}\n ", "start": 3445, "end": 3561, "loc": { @@ -1807,7 +1807,7 @@ }, { "type": "CommentBlock", - "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page Number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the Number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", + "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", "start": 1139, "end": 2071, "loc": { @@ -3833,9 +3833,9 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", + "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", "start": 5118, - "end": 5223, + "end": 5222, "loc": { "start": { "line": 219, @@ -3851,8 +3851,8 @@ }, { "type": "ClassMethod", - "start": 5226, - "end": 5300, + "start": 5225, + "end": 5299, "loc": { "start": { "line": 224, @@ -3867,8 +3867,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5230, - "end": 5234, + "start": 5229, + "end": 5233, "loc": { "start": { "line": 224, @@ -3890,8 +3890,8 @@ "params": [ { "type": "Identifier", - "start": 5235, - "end": 5242, + "start": 5234, + "end": 5241, "loc": { "start": { "line": 224, @@ -3908,8 +3908,8 @@ ], "body": { "type": "BlockStatement", - "start": 5244, - "end": 5300, + "start": 5243, + "end": 5299, "loc": { "start": { "line": 224, @@ -3923,8 +3923,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 5250, - "end": 5296, + "start": 5249, + "end": 5295, "loc": { "start": { "line": 225, @@ -3937,8 +3937,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 5250, - "end": 5295, + "start": 5249, + "end": 5294, "loc": { "start": { "line": 225, @@ -3952,8 +3952,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 5250, - "end": 5261, + "start": 5249, + "end": 5260, "loc": { "start": { "line": 225, @@ -3966,8 +3966,8 @@ }, "object": { "type": "ThisExpression", - "start": 5250, - "end": 5254, + "start": 5249, + "end": 5253, "loc": { "start": { "line": 225, @@ -3981,8 +3981,8 @@ }, "property": { "type": "Identifier", - "start": 5255, - "end": 5261, + "start": 5254, + "end": 5260, "loc": { "start": { "line": 225, @@ -4000,8 +4000,8 @@ }, "right": { "type": "BinaryExpression", - "start": 5264, - "end": 5295, + "start": 5263, + "end": 5294, "loc": { "start": { "line": 225, @@ -4014,8 +4014,8 @@ }, "left": { "type": "BinaryExpression", - "start": 5264, - "end": 5283, + "start": 5263, + "end": 5282, "loc": { "start": { "line": 225, @@ -4028,8 +4028,8 @@ }, "left": { "type": "Identifier", - "start": 5264, - "end": 5271, + "start": 5263, + "end": 5270, "loc": { "start": { "line": 225, @@ -4046,8 +4046,8 @@ "operator": "*", "right": { "type": "MemberExpression", - "start": 5274, - "end": 5283, + "start": 5273, + "end": 5282, "loc": { "start": { "line": 225, @@ -4060,8 +4060,8 @@ }, "object": { "type": "ThisExpression", - "start": 5274, - "end": 5278, + "start": 5273, + "end": 5277, "loc": { "start": { "line": 225, @@ -4075,8 +4075,8 @@ }, "property": { "type": "Identifier", - "start": 5279, - "end": 5283, + "start": 5278, + "end": 5282, "loc": { "start": { "line": 225, @@ -4096,8 +4096,8 @@ "operator": "-", "right": { "type": "MemberExpression", - "start": 5286, - "end": 5295, + "start": 5285, + "end": 5294, "loc": { "start": { "line": 225, @@ -4110,8 +4110,8 @@ }, "object": { "type": "ThisExpression", - "start": 5286, - "end": 5290, + "start": 5285, + "end": 5289, "loc": { "start": { "line": 225, @@ -4125,8 +4125,8 @@ }, "property": { "type": "Identifier", - "start": 5291, - "end": 5295, + "start": 5290, + "end": 5294, "loc": { "start": { "line": 225, @@ -4152,9 +4152,9 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", + "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", "start": 5118, - "end": 5223, + "end": 5222, "loc": { "start": { "line": 219, @@ -4171,8 +4171,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the first page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5304, - "end": 5415, + "start": 5303, + "end": 5414, "loc": { "start": { "line": 228, @@ -4188,8 +4188,8 @@ }, { "type": "ClassMethod", - "start": 5418, - "end": 5510, + "start": 5417, + "end": 5509, "loc": { "start": { "line": 233, @@ -4204,8 +4204,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5422, - "end": 5433, + "start": 5421, + "end": 5432, "loc": { "start": { "line": 233, @@ -4227,8 +4227,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5436, - "end": 5510, + "start": 5435, + "end": 5509, "loc": { "start": { "line": 233, @@ -4242,8 +4242,8 @@ "body": [ { "type": "IfStatement", - "start": 5442, - "end": 5488, + "start": 5441, + "end": 5487, "loc": { "start": { "line": 234, @@ -4256,8 +4256,8 @@ }, "test": { "type": "BinaryExpression", - "start": 5446, - "end": 5460, + "start": 5445, + "end": 5459, "loc": { "start": { "line": 234, @@ -4270,8 +4270,8 @@ }, "left": { "type": "MemberExpression", - "start": 5446, - "end": 5455, + "start": 5445, + "end": 5454, "loc": { "start": { "line": 234, @@ -4284,8 +4284,8 @@ }, "object": { "type": "ThisExpression", - "start": 5446, - "end": 5450, + "start": 5445, + "end": 5449, "loc": { "start": { "line": 234, @@ -4299,8 +4299,8 @@ }, "property": { "type": "Identifier", - "start": 5451, - "end": 5455, + "start": 5450, + "end": 5454, "loc": { "start": { "line": 234, @@ -4319,8 +4319,8 @@ "operator": "<=", "right": { "type": "NumericLiteral", - "start": 5459, - "end": 5460, + "start": 5458, + "end": 5459, "loc": { "start": { "line": 234, @@ -4340,8 +4340,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 5462, - "end": 5488, + "start": 5461, + "end": 5487, "loc": { "start": { "line": 234, @@ -4355,8 +4355,8 @@ "body": [ { "type": "ReturnStatement", - "start": 5470, - "end": 5482, + "start": 5469, + "end": 5481, "loc": { "start": { "line": 235, @@ -4369,8 +4369,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5477, - "end": 5481, + "start": 5476, + "end": 5480, "loc": { "start": { "line": 235, @@ -4391,8 +4391,8 @@ }, { "type": "ReturnStatement", - "start": 5493, - "end": 5506, + "start": 5492, + "end": 5505, "loc": { "start": { "line": 237, @@ -4405,8 +4405,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5500, - "end": 5505, + "start": 5499, + "end": 5504, "loc": { "start": { "line": 237, @@ -4428,8 +4428,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the first page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5304, - "end": 5415, + "start": 5303, + "end": 5414, "loc": { "start": { "line": 228, @@ -4446,8 +4446,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the last page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5514, - "end": 5624, + "start": 5513, + "end": 5623, "loc": { "start": { "line": 240, @@ -4463,8 +4463,8 @@ }, { "type": "ClassMethod", - "start": 5627, - "end": 5732, + "start": 5626, + "end": 5731, "loc": { "start": { "line": 245, @@ -4479,8 +4479,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5631, - "end": 5641, + "start": 5630, + "end": 5640, "loc": { "start": { "line": 245, @@ -4502,8 +4502,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5644, - "end": 5732, + "start": 5643, + "end": 5731, "loc": { "start": { "line": 245, @@ -4517,8 +4517,8 @@ "body": [ { "type": "IfStatement", - "start": 5650, - "end": 5710, + "start": 5649, + "end": 5709, "loc": { "start": { "line": 246, @@ -4531,8 +4531,8 @@ }, "test": { "type": "BinaryExpression", - "start": 5654, - "end": 5682, + "start": 5653, + "end": 5681, "loc": { "start": { "line": 246, @@ -4545,8 +4545,8 @@ }, "left": { "type": "MemberExpression", - "start": 5654, - "end": 5663, + "start": 5653, + "end": 5662, "loc": { "start": { "line": 246, @@ -4559,8 +4559,8 @@ }, "object": { "type": "ThisExpression", - "start": 5654, - "end": 5658, + "start": 5653, + "end": 5657, "loc": { "start": { "line": 246, @@ -4574,8 +4574,8 @@ }, "property": { "type": "Identifier", - "start": 5659, - "end": 5663, + "start": 5658, + "end": 5662, "loc": { "start": { "line": 246, @@ -4594,8 +4594,8 @@ "operator": ">=", "right": { "type": "MemberExpression", - "start": 5667, - "end": 5682, + "start": 5666, + "end": 5681, "loc": { "start": { "line": 246, @@ -4608,8 +4608,8 @@ }, "object": { "type": "ThisExpression", - "start": 5667, - "end": 5671, + "start": 5666, + "end": 5670, "loc": { "start": { "line": 246, @@ -4623,8 +4623,8 @@ }, "property": { "type": "Identifier", - "start": 5672, - "end": 5682, + "start": 5671, + "end": 5681, "loc": { "start": { "line": 246, @@ -4643,8 +4643,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 5684, - "end": 5710, + "start": 5683, + "end": 5709, "loc": { "start": { "line": 246, @@ -4658,8 +4658,8 @@ "body": [ { "type": "ReturnStatement", - "start": 5692, - "end": 5704, + "start": 5691, + "end": 5703, "loc": { "start": { "line": 247, @@ -4672,8 +4672,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5699, - "end": 5703, + "start": 5698, + "end": 5702, "loc": { "start": { "line": 247, @@ -4694,8 +4694,8 @@ }, { "type": "ReturnStatement", - "start": 5715, - "end": 5728, + "start": 5714, + "end": 5727, "loc": { "start": { "line": 249, @@ -4708,8 +4708,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5722, - "end": 5727, + "start": 5721, + "end": 5726, "loc": { "start": { "line": 249, @@ -4731,8 +4731,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the last page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5514, - "end": 5624, + "start": 5513, + "end": 5623, "loc": { "start": { "line": 240, @@ -4748,9 +4748,9 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A Number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", - "start": 5736, - "end": 5913, + "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", + "start": 5735, + "end": 5912, "loc": { "start": { "line": 252, @@ -4766,8 +4766,8 @@ }, { "type": "ClassMethod", - "start": 5916, - "end": 6104, + "start": 5915, + "end": 6103, "loc": { "start": { "line": 259, @@ -4782,8 +4782,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5920, - "end": 5930, + "start": 5919, + "end": 5929, "loc": { "start": { "line": 259, @@ -4805,8 +4805,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5933, - "end": 6104, + "start": 5932, + "end": 6103, "loc": { "start": { "line": 259, @@ -4820,8 +4820,8 @@ "body": [ { "type": "IfStatement", - "start": 5939, - "end": 6004, + "start": 5938, + "end": 6003, "loc": { "start": { "line": 260, @@ -4834,8 +4834,8 @@ }, "test": { "type": "LogicalExpression", - "start": 5943, - "end": 5976, + "start": 5942, + "end": 5975, "loc": { "start": { "line": 260, @@ -4848,8 +4848,8 @@ }, "left": { "type": "BinaryExpression", - "start": 5943, - "end": 5962, + "start": 5942, + "end": 5961, "loc": { "start": { "line": 260, @@ -4862,8 +4862,8 @@ }, "left": { "type": "MemberExpression", - "start": 5943, - "end": 5953, + "start": 5942, + "end": 5952, "loc": { "start": { "line": 260, @@ -4876,8 +4876,8 @@ }, "object": { "type": "ThisExpression", - "start": 5943, - "end": 5947, + "start": 5942, + "end": 5946, "loc": { "start": { "line": 260, @@ -4891,8 +4891,8 @@ }, "property": { "type": "Identifier", - "start": 5948, - "end": 5953, + "start": 5947, + "end": 5952, "loc": { "start": { "line": 260, @@ -4911,8 +4911,8 @@ "operator": "===", "right": { "type": "NullLiteral", - "start": 5958, - "end": 5962, + "start": 5957, + "end": 5961, "loc": { "start": { "line": 260, @@ -4928,8 +4928,8 @@ "operator": "||", "right": { "type": "UnaryExpression", - "start": 5966, - "end": 5976, + "start": 5965, + "end": 5975, "loc": { "start": { "line": 260, @@ -4944,8 +4944,8 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 5967, - "end": 5976, + "start": 5966, + "end": 5975, "loc": { "start": { "line": 260, @@ -4958,8 +4958,8 @@ }, "object": { "type": "ThisExpression", - "start": 5967, - "end": 5971, + "start": 5966, + "end": 5970, "loc": { "start": { "line": 260, @@ -4973,8 +4973,8 @@ }, "property": { "type": "Identifier", - "start": 5972, - "end": 5976, + "start": 5971, + "end": 5975, "loc": { "start": { "line": 260, @@ -4997,8 +4997,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 5978, - "end": 6004, + "start": 5977, + "end": 6003, "loc": { "start": { "line": 260, @@ -5012,8 +5012,8 @@ "body": [ { "type": "ReturnStatement", - "start": 5986, - "end": 5998, + "start": 5985, + "end": 5997, "loc": { "start": { "line": 261, @@ -5026,8 +5026,8 @@ }, "argument": { "type": "NullLiteral", - "start": 5993, - "end": 5997, + "start": 5992, + "end": 5996, "loc": { "start": { "line": 261, @@ -5047,8 +5047,8 @@ }, { "type": "IfStatement", - "start": 6009, - "end": 6054, + "start": 6008, + "end": 6053, "loc": { "start": { "line": 263, @@ -5061,8 +5061,8 @@ }, "test": { "type": "BinaryExpression", - "start": 6013, - "end": 6029, + "start": 6012, + "end": 6028, "loc": { "start": { "line": 263, @@ -5075,8 +5075,8 @@ }, "left": { "type": "MemberExpression", - "start": 6013, - "end": 6023, + "start": 6012, + "end": 6022, "loc": { "start": { "line": 263, @@ -5089,8 +5089,8 @@ }, "object": { "type": "ThisExpression", - "start": 6013, - "end": 6017, + "start": 6012, + "end": 6016, "loc": { "start": { "line": 263, @@ -5104,8 +5104,8 @@ }, "property": { "type": "Identifier", - "start": 6018, - "end": 6023, + "start": 6017, + "end": 6022, "loc": { "start": { "line": 263, @@ -5124,8 +5124,8 @@ "operator": "===", "right": { "type": "NumericLiteral", - "start": 6028, - "end": 6029, + "start": 6027, + "end": 6028, "loc": { "start": { "line": 263, @@ -5145,8 +5145,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 6031, - "end": 6054, + "start": 6030, + "end": 6053, "loc": { "start": { "line": 263, @@ -5160,8 +5160,8 @@ "body": [ { "type": "ReturnStatement", - "start": 6039, - "end": 6048, + "start": 6038, + "end": 6047, "loc": { "start": { "line": 264, @@ -5174,8 +5174,8 @@ }, "argument": { "type": "NumericLiteral", - "start": 6046, - "end": 6047, + "start": 6045, + "end": 6046, "loc": { "start": { "line": 264, @@ -5200,8 +5200,8 @@ }, { "type": "ReturnStatement", - "start": 6059, - "end": 6100, + "start": 6058, + "end": 6099, "loc": { "start": { "line": 266, @@ -5214,8 +5214,8 @@ }, "argument": { "type": "CallExpression", - "start": 6066, - "end": 6099, + "start": 6065, + "end": 6098, "loc": { "start": { "line": 266, @@ -5228,8 +5228,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6066, - "end": 6075, + "start": 6065, + "end": 6074, "loc": { "start": { "line": 266, @@ -5242,8 +5242,8 @@ }, "object": { "type": "Identifier", - "start": 6066, - "end": 6070, + "start": 6065, + "end": 6069, "loc": { "start": { "line": 266, @@ -5259,8 +5259,8 @@ }, "property": { "type": "Identifier", - "start": 6071, - "end": 6075, + "start": 6070, + "end": 6074, "loc": { "start": { "line": 266, @@ -5279,8 +5279,8 @@ "arguments": [ { "type": "BinaryExpression", - "start": 6076, - "end": 6098, + "start": 6075, + "end": 6097, "loc": { "start": { "line": 266, @@ -5293,8 +5293,8 @@ }, "left": { "type": "MemberExpression", - "start": 6076, - "end": 6086, + "start": 6075, + "end": 6085, "loc": { "start": { "line": 266, @@ -5307,8 +5307,8 @@ }, "object": { "type": "ThisExpression", - "start": 6076, - "end": 6080, + "start": 6075, + "end": 6079, "loc": { "start": { "line": 266, @@ -5322,8 +5322,8 @@ }, "property": { "type": "Identifier", - "start": 6081, - "end": 6086, + "start": 6080, + "end": 6085, "loc": { "start": { "line": 266, @@ -5342,8 +5342,8 @@ "operator": "/", "right": { "type": "MemberExpression", - "start": 6089, - "end": 6098, + "start": 6088, + "end": 6097, "loc": { "start": { "line": 266, @@ -5356,8 +5356,8 @@ }, "object": { "type": "ThisExpression", - "start": 6089, - "end": 6093, + "start": 6088, + "end": 6092, "loc": { "start": { "line": 266, @@ -5371,8 +5371,8 @@ }, "property": { "type": "Identifier", - "start": 6094, - "end": 6098, + "start": 6093, + "end": 6097, "loc": { "start": { "line": 266, @@ -5399,9 +5399,9 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A Number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", - "start": 5736, - "end": 5913, + "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", + "start": 5735, + "end": 5912, "loc": { "start": { "line": 252, @@ -5418,8 +5418,8 @@ { "type": "CommentBlock", "value": "*\n * Methods\n ", - "start": 6108, - "end": 6130, + "start": 6107, + "end": 6129, "loc": { "start": { "line": 269, @@ -5434,8 +5434,8 @@ { "type": "CommentBlock", "value": "*\n * Updates the datasource, using the currently\n * configured search text, sort settings, and\n * pagination options.\n * @access public\n * @return {Promise} A promise object, resolved when the update is completed.\n ", - "start": 6134, - "end": 6365, + "start": 6133, + "end": 6364, "loc": { "start": { "line": 273, @@ -5451,8 +5451,8 @@ }, { "type": "ClassMethod", - "start": 6368, - "end": 6953, + "start": 6367, + "end": 6952, "loc": { "start": { "line": 280, @@ -5467,8 +5467,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6374, - "end": 6380, + "start": 6373, + "end": 6379, "loc": { "start": { "line": 280, @@ -5490,8 +5490,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 6383, - "end": 6953, + "start": 6382, + "end": 6952, "loc": { "start": { "line": 280, @@ -5505,8 +5505,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 6389, - "end": 6409, + "start": 6388, + "end": 6408, "loc": { "start": { "line": 281, @@ -5519,8 +5519,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6389, - "end": 6408, + "start": 6388, + "end": 6407, "loc": { "start": { "line": 281, @@ -5534,8 +5534,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6389, - "end": 6401, + "start": 6388, + "end": 6400, "loc": { "start": { "line": 281, @@ -5548,8 +5548,8 @@ }, "object": { "type": "ThisExpression", - "start": 6389, - "end": 6393, + "start": 6388, + "end": 6392, "loc": { "start": { "line": 281, @@ -5563,8 +5563,8 @@ }, "property": { "type": "Identifier", - "start": 6394, - "end": 6401, + "start": 6393, + "end": 6400, "loc": { "start": { "line": 281, @@ -5582,8 +5582,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6404, - "end": 6408, + "start": 6403, + "end": 6407, "loc": { "start": { "line": 281, @@ -5600,8 +5600,8 @@ }, { "type": "TryStatement", - "start": 6414, - "end": 6949, + "start": 6413, + "end": 6948, "loc": { "start": { "line": 282, @@ -5614,8 +5614,8 @@ }, "block": { "type": "BlockStatement", - "start": 6418, - "end": 6886, + "start": 6417, + "end": 6885, "loc": { "start": { "line": 282, @@ -5629,8 +5629,8 @@ "body": [ { "type": "VariableDeclaration", - "start": 6426, - "end": 6590, + "start": 6425, + "end": 6589, "loc": { "start": { "line": 283, @@ -5644,8 +5644,8 @@ "declarations": [ { "type": "VariableDeclarator", - "start": 6432, - "end": 6589, + "start": 6431, + "end": 6588, "loc": { "start": { "line": 283, @@ -5658,8 +5658,8 @@ }, "id": { "type": "Identifier", - "start": 6432, - "end": 6447, + "start": 6431, + "end": 6446, "loc": { "start": { "line": 283, @@ -5675,8 +5675,8 @@ }, "init": { "type": "ObjectExpression", - "start": 6450, - "end": 6589, + "start": 6449, + "end": 6588, "loc": { "start": { "line": 283, @@ -5690,8 +5690,8 @@ "properties": [ { "type": "ObjectProperty", - "start": 6460, - "end": 6472, + "start": 6459, + "end": 6471, "loc": { "start": { "line": 284, @@ -5707,8 +5707,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6460, - "end": 6466, + "start": 6459, + "end": 6465, "loc": { "start": { "line": 284, @@ -5724,8 +5724,8 @@ }, "value": { "type": "ThisExpression", - "start": 6468, - "end": 6472, + "start": 6467, + "end": 6471, "loc": { "start": { "line": 284, @@ -5740,8 +5740,8 @@ }, { "type": "ObjectProperty", - "start": 6482, - "end": 6498, + "start": 6481, + "end": 6497, "loc": { "start": { "line": 285, @@ -5757,8 +5757,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6482, - "end": 6491, + "start": 6481, + "end": 6490, "loc": { "start": { "line": 285, @@ -5774,8 +5774,8 @@ }, "value": { "type": "BooleanLiteral", - "start": 6493, - "end": 6498, + "start": 6492, + "end": 6497, "loc": { "start": { "line": 285, @@ -5791,8 +5791,8 @@ }, { "type": "ObjectMethod", - "start": 6508, - "end": 6580, + "start": 6507, + "end": 6579, "loc": { "start": { "line": 286, @@ -5808,8 +5808,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6508, - "end": 6522, + "start": 6507, + "end": 6521, "loc": { "start": { "line": 286, @@ -5831,8 +5831,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 6525, - "end": 6580, + "start": 6524, + "end": 6579, "loc": { "start": { "line": 286, @@ -5846,8 +5846,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 6537, - "end": 6570, + "start": 6536, + "end": 6569, "loc": { "start": { "line": 287, @@ -5860,8 +5860,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6537, - "end": 6569, + "start": 6536, + "end": 6568, "loc": { "start": { "line": 287, @@ -5875,8 +5875,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6537, - "end": 6562, + "start": 6536, + "end": 6561, "loc": { "start": { "line": 287, @@ -5889,8 +5889,8 @@ }, "object": { "type": "Identifier", - "start": 6537, - "end": 6552, + "start": 6536, + "end": 6551, "loc": { "start": { "line": 287, @@ -5906,8 +5906,8 @@ }, "property": { "type": "Identifier", - "start": 6553, - "end": 6562, + "start": 6552, + "end": 6561, "loc": { "start": { "line": 287, @@ -5925,8 +5925,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6565, - "end": 6569, + "start": 6564, + "end": 6568, "loc": { "start": { "line": 287, @@ -5953,8 +5953,8 @@ }, { "type": "ExpressionStatement", - "start": 6597, - "end": 6639, + "start": 6596, + "end": 6638, "loc": { "start": { "line": 290, @@ -5967,8 +5967,8 @@ }, "expression": { "type": "CallExpression", - "start": 6597, - "end": 6638, + "start": 6596, + "end": 6637, "loc": { "start": { "line": 290, @@ -5981,8 +5981,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6597, - "end": 6606, + "start": 6596, + "end": 6605, "loc": { "start": { "line": 290, @@ -5995,8 +5995,8 @@ }, "object": { "type": "ThisExpression", - "start": 6597, - "end": 6601, + "start": 6596, + "end": 6600, "loc": { "start": { "line": 290, @@ -6010,8 +6010,8 @@ }, "property": { "type": "Identifier", - "start": 6602, - "end": 6606, + "start": 6601, + "end": 6605, "loc": { "start": { "line": 290, @@ -6030,8 +6030,8 @@ "arguments": [ { "type": "StringLiteral", - "start": 6607, - "end": 6620, + "start": 6606, + "end": 6619, "loc": { "start": { "line": 290, @@ -6050,8 +6050,8 @@ }, { "type": "Identifier", - "start": 6622, - "end": 6637, + "start": 6621, + "end": 6636, "loc": { "start": { "line": 290, @@ -6070,8 +6070,8 @@ }, { "type": "IfStatement", - "start": 6646, - "end": 6707, + "start": 6645, + "end": 6706, "loc": { "start": { "line": 291, @@ -6084,8 +6084,8 @@ }, "test": { "type": "MemberExpression", - "start": 6650, - "end": 6675, + "start": 6649, + "end": 6674, "loc": { "start": { "line": 291, @@ -6098,8 +6098,8 @@ }, "object": { "type": "Identifier", - "start": 6650, - "end": 6665, + "start": 6649, + "end": 6664, "loc": { "start": { "line": 291, @@ -6115,8 +6115,8 @@ }, "property": { "type": "Identifier", - "start": 6666, - "end": 6675, + "start": 6665, + "end": 6674, "loc": { "start": { "line": 291, @@ -6134,8 +6134,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 6677, - "end": 6707, + "start": 6676, + "end": 6706, "loc": { "start": { "line": 291, @@ -6149,8 +6149,8 @@ "body": [ { "type": "ReturnStatement", - "start": 6687, - "end": 6699, + "start": 6686, + "end": 6698, "loc": { "start": { "line": 292, @@ -6163,8 +6163,8 @@ }, "argument": { "type": "NullLiteral", - "start": 6694, - "end": 6698, + "start": 6693, + "end": 6697, "loc": { "start": { "line": 292, @@ -6184,8 +6184,8 @@ }, { "type": "VariableDeclaration", - "start": 6714, - "end": 6759, + "start": 6713, + "end": 6758, "loc": { "start": { "line": 294, @@ -6199,8 +6199,8 @@ "declarations": [ { "type": "VariableDeclarator", - "start": 6720, - "end": 6758, + "start": 6719, + "end": 6757, "loc": { "start": { "line": 294, @@ -6213,8 +6213,8 @@ }, "id": { "type": "Identifier", - "start": 6720, - "end": 6735, + "start": 6719, + "end": 6734, "loc": { "start": { "line": 294, @@ -6230,8 +6230,8 @@ }, "init": { "type": "AwaitExpression", - "start": 6738, - "end": 6758, + "start": 6737, + "end": 6757, "loc": { "start": { "line": 294, @@ -6244,8 +6244,8 @@ }, "argument": { "type": "CallExpression", - "start": 6744, - "end": 6758, + "start": 6743, + "end": 6757, "loc": { "start": { "line": 294, @@ -6258,8 +6258,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6744, - "end": 6756, + "start": 6743, + "end": 6755, "loc": { "start": { "line": 294, @@ -6272,8 +6272,8 @@ }, "object": { "type": "ThisExpression", - "start": 6744, - "end": 6748, + "start": 6743, + "end": 6747, "loc": { "start": { "line": 294, @@ -6287,8 +6287,8 @@ }, "property": { "type": "Identifier", - "start": 6749, - "end": 6756, + "start": 6748, + "end": 6755, "loc": { "start": { "line": 294, @@ -6313,8 +6313,8 @@ }, { "type": "ExpressionStatement", - "start": 6766, - "end": 6822, + "start": 6765, + "end": 6821, "loc": { "start": { "line": 295, @@ -6327,8 +6327,8 @@ }, "expression": { "type": "CallExpression", - "start": 6766, - "end": 6821, + "start": 6765, + "end": 6820, "loc": { "start": { "line": 295, @@ -6341,8 +6341,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6766, - "end": 6775, + "start": 6765, + "end": 6774, "loc": { "start": { "line": 295, @@ -6355,8 +6355,8 @@ }, "object": { "type": "ThisExpression", - "start": 6766, - "end": 6770, + "start": 6765, + "end": 6769, "loc": { "start": { "line": 295, @@ -6370,8 +6370,8 @@ }, "property": { "type": "Identifier", - "start": 6771, - "end": 6775, + "start": 6770, + "end": 6774, "loc": { "start": { "line": 295, @@ -6390,8 +6390,8 @@ "arguments": [ { "type": "StringLiteral", - "start": 6776, - "end": 6787, + "start": 6775, + "end": 6786, "loc": { "start": { "line": 295, @@ -6410,8 +6410,8 @@ }, { "type": "ObjectExpression", - "start": 6789, - "end": 6820, + "start": 6788, + "end": 6819, "loc": { "start": { "line": 295, @@ -6425,8 +6425,8 @@ "properties": [ { "type": "ObjectProperty", - "start": 6799, - "end": 6811, + "start": 6798, + "end": 6810, "loc": { "start": { "line": 296, @@ -6442,8 +6442,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6799, - "end": 6805, + "start": 6798, + "end": 6804, "loc": { "start": { "line": 296, @@ -6459,8 +6459,8 @@ }, "value": { "type": "ThisExpression", - "start": 6807, - "end": 6811, + "start": 6806, + "end": 6810, "loc": { "start": { "line": 296, @@ -6480,8 +6480,8 @@ }, { "type": "ExpressionStatement", - "start": 6829, - "end": 6850, + "start": 6828, + "end": 6849, "loc": { "start": { "line": 298, @@ -6494,8 +6494,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6829, - "end": 6849, + "start": 6828, + "end": 6848, "loc": { "start": { "line": 298, @@ -6509,8 +6509,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6829, - "end": 6841, + "start": 6828, + "end": 6840, "loc": { "start": { "line": 298, @@ -6523,8 +6523,8 @@ }, "object": { "type": "ThisExpression", - "start": 6829, - "end": 6833, + "start": 6828, + "end": 6832, "loc": { "start": { "line": 298, @@ -6538,8 +6538,8 @@ }, "property": { "type": "Identifier", - "start": 6834, - "end": 6841, + "start": 6833, + "end": 6840, "loc": { "start": { "line": 298, @@ -6557,8 +6557,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6844, - "end": 6849, + "start": 6843, + "end": 6848, "loc": { "start": { "line": 298, @@ -6575,8 +6575,8 @@ }, { "type": "ReturnStatement", - "start": 6857, - "end": 6880, + "start": 6856, + "end": 6879, "loc": { "start": { "line": 299, @@ -6589,8 +6589,8 @@ }, "argument": { "type": "Identifier", - "start": 6864, - "end": 6879, + "start": 6863, + "end": 6878, "loc": { "start": { "line": 299, @@ -6610,8 +6610,8 @@ }, "handler": { "type": "CatchClause", - "start": 6887, - "end": 6949, + "start": 6886, + "end": 6948, "loc": { "start": { "line": 300, @@ -6624,8 +6624,8 @@ }, "param": { "type": "Identifier", - "start": 6894, - "end": 6896, + "start": 6893, + "end": 6895, "loc": { "start": { "line": 300, @@ -6641,8 +6641,8 @@ }, "body": { "type": "BlockStatement", - "start": 6898, - "end": 6949, + "start": 6897, + "end": 6948, "loc": { "start": { "line": 300, @@ -6656,8 +6656,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 6906, - "end": 6927, + "start": 6905, + "end": 6926, "loc": { "start": { "line": 301, @@ -6670,8 +6670,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6906, - "end": 6926, + "start": 6905, + "end": 6925, "loc": { "start": { "line": 301, @@ -6685,8 +6685,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6906, - "end": 6918, + "start": 6905, + "end": 6917, "loc": { "start": { "line": 301, @@ -6699,8 +6699,8 @@ }, "object": { "type": "ThisExpression", - "start": 6906, - "end": 6910, + "start": 6905, + "end": 6909, "loc": { "start": { "line": 301, @@ -6714,8 +6714,8 @@ }, "property": { "type": "Identifier", - "start": 6911, - "end": 6918, + "start": 6910, + "end": 6917, "loc": { "start": { "line": 301, @@ -6733,8 +6733,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6921, - "end": 6926, + "start": 6920, + "end": 6925, "loc": { "start": { "line": 301, @@ -6751,8 +6751,8 @@ }, { "type": "ThrowStatement", - "start": 6934, - "end": 6943, + "start": 6933, + "end": 6942, "loc": { "start": { "line": 302, @@ -6765,8 +6765,8 @@ }, "argument": { "type": "Identifier", - "start": 6940, - "end": 6942, + "start": 6939, + "end": 6941, "loc": { "start": { "line": 302, @@ -6796,8 +6796,8 @@ { "type": "CommentBlock", "value": "*\n * Methods\n ", - "start": 6108, - "end": 6130, + "start": 6107, + "end": 6129, "loc": { "start": { "line": 269, @@ -6812,8 +6812,8 @@ { "type": "CommentBlock", "value": "*\n * Updates the datasource, using the currently\n * configured search text, sort settings, and\n * pagination options.\n * @access public\n * @return {Promise} A promise object, resolved when the update is completed.\n ", - "start": 6134, - "end": 6365, + "start": 6133, + "end": 6364, "loc": { "start": { "line": 273, @@ -6830,8 +6830,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the specified page, and update the datasource accordingly.\n * @access public\n * @param {Number} pageNum - The new page to traverse to.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to specified page.\n * False otherwise.\n ", - "start": 6957, - "end": 7290, + "start": 6956, + "end": 7289, "loc": { "start": { "line": 306, @@ -6847,8 +6847,8 @@ }, { "type": "ClassMethod", - "start": 7293, - "end": 7472, + "start": 7292, + "end": 7471, "loc": { "start": { "line": 314, @@ -6863,8 +6863,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 7299, - "end": 7307, + "start": 7298, + "end": 7306, "loc": { "start": { "line": 314, @@ -6886,8 +6886,8 @@ "params": [ { "type": "Identifier", - "start": 7308, - "end": 7315, + "start": 7307, + "end": 7314, "loc": { "start": { "line": 314, @@ -6904,8 +6904,8 @@ ], "body": { "type": "BlockStatement", - "start": 7317, - "end": 7472, + "start": 7316, + "end": 7471, "loc": { "start": { "line": 314, @@ -6919,8 +6919,8 @@ "body": [ { "type": "IfStatement", - "start": 7323, - "end": 7450, + "start": 7322, + "end": 7449, "loc": { "start": { "line": 315, @@ -6933,8 +6933,8 @@ }, "test": { "type": "LogicalExpression", - "start": 7327, - "end": 7368, + "start": 7326, + "end": 7367, "loc": { "start": { "line": 315, @@ -6947,8 +6947,8 @@ }, "left": { "type": "BinaryExpression", - "start": 7327, - "end": 7338, + "start": 7326, + "end": 7337, "loc": { "start": { "line": 315, @@ -6961,8 +6961,8 @@ }, "left": { "type": "Identifier", - "start": 7327, - "end": 7334, + "start": 7326, + "end": 7333, "loc": { "start": { "line": 315, @@ -6979,8 +6979,8 @@ "operator": ">", "right": { "type": "NumericLiteral", - "start": 7337, - "end": 7338, + "start": 7336, + "end": 7337, "loc": { "start": { "line": 315, @@ -7001,8 +7001,8 @@ "operator": "&&", "right": { "type": "BinaryExpression", - "start": 7342, - "end": 7368, + "start": 7341, + "end": 7367, "loc": { "start": { "line": 315, @@ -7015,8 +7015,8 @@ }, "left": { "type": "Identifier", - "start": 7342, - "end": 7349, + "start": 7341, + "end": 7348, "loc": { "start": { "line": 315, @@ -7033,8 +7033,8 @@ "operator": "<=", "right": { "type": "MemberExpression", - "start": 7353, - "end": 7368, + "start": 7352, + "end": 7367, "loc": { "start": { "line": 315, @@ -7047,8 +7047,8 @@ }, "object": { "type": "ThisExpression", - "start": 7353, - "end": 7357, + "start": 7352, + "end": 7356, "loc": { "start": { "line": 315, @@ -7062,8 +7062,8 @@ }, "property": { "type": "Identifier", - "start": 7358, - "end": 7368, + "start": 7357, + "end": 7367, "loc": { "start": { "line": 315, @@ -7083,8 +7083,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 7370, - "end": 7450, + "start": 7369, + "end": 7449, "loc": { "start": { "line": 315, @@ -7098,8 +7098,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 7378, - "end": 7398, + "start": 7377, + "end": 7397, "loc": { "start": { "line": 316, @@ -7112,8 +7112,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 7378, - "end": 7397, + "start": 7377, + "end": 7396, "loc": { "start": { "line": 316, @@ -7127,8 +7127,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 7378, - "end": 7387, + "start": 7377, + "end": 7386, "loc": { "start": { "line": 316, @@ -7141,8 +7141,8 @@ }, "object": { "type": "ThisExpression", - "start": 7378, - "end": 7382, + "start": 7377, + "end": 7381, "loc": { "start": { "line": 316, @@ -7156,8 +7156,8 @@ }, "property": { "type": "Identifier", - "start": 7383, - "end": 7387, + "start": 7382, + "end": 7386, "loc": { "start": { "line": 316, @@ -7175,8 +7175,8 @@ }, "right": { "type": "Identifier", - "start": 7390, - "end": 7397, + "start": 7389, + "end": 7396, "loc": { "start": { "line": 316, @@ -7194,8 +7194,8 @@ }, { "type": "ExpressionStatement", - "start": 7405, - "end": 7425, + "start": 7404, + "end": 7424, "loc": { "start": { "line": 317, @@ -7208,8 +7208,8 @@ }, "expression": { "type": "AwaitExpression", - "start": 7405, - "end": 7424, + "start": 7404, + "end": 7423, "loc": { "start": { "line": 317, @@ -7222,8 +7222,8 @@ }, "argument": { "type": "CallExpression", - "start": 7411, - "end": 7424, + "start": 7410, + "end": 7423, "loc": { "start": { "line": 317, @@ -7236,8 +7236,8 @@ }, "callee": { "type": "MemberExpression", - "start": 7411, - "end": 7422, + "start": 7410, + "end": 7421, "loc": { "start": { "line": 317, @@ -7250,8 +7250,8 @@ }, "object": { "type": "ThisExpression", - "start": 7411, - "end": 7415, + "start": 7410, + "end": 7414, "loc": { "start": { "line": 317, @@ -7265,8 +7265,8 @@ }, "property": { "type": "Identifier", - "start": 7416, - "end": 7422, + "start": 7415, + "end": 7421, "loc": { "start": { "line": 317, @@ -7288,8 +7288,8 @@ }, { "type": "ReturnStatement", - "start": 7432, - "end": 7444, + "start": 7431, + "end": 7443, "loc": { "start": { "line": 318, @@ -7302,8 +7302,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 7439, - "end": 7443, + "start": 7438, + "end": 7442, "loc": { "start": { "line": 318, @@ -7324,8 +7324,8 @@ }, { "type": "ReturnStatement", - "start": 7455, - "end": 7468, + "start": 7454, + "end": 7467, "loc": { "start": { "line": 320, @@ -7338,8 +7338,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 7462, - "end": 7467, + "start": 7461, + "end": 7466, "loc": { "start": { "line": 320, @@ -7361,8 +7361,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the specified page, and update the datasource accordingly.\n * @access public\n * @param {Number} pageNum - The new page to traverse to.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to specified page.\n * False otherwise.\n ", - "start": 6957, - "end": 7290, + "start": 6956, + "end": 7289, "loc": { "start": { "line": 306, @@ -7379,8 +7379,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the next page, and update the datasource accordingly.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to next page.\n * False otherwise.\n ", - "start": 7476, - "end": 7718, + "start": 7475, + "end": 7717, "loc": { "start": { "line": 323, @@ -7396,8 +7396,8 @@ }, { "type": "ClassMethod", - "start": 7721, - "end": 7784, + "start": 7720, + "end": 7783, "loc": { "start": { "line": 329, @@ -7412,8 +7412,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 7727, - "end": 7735, + "start": 7726, + "end": 7734, "loc": { "start": { "line": 329, @@ -7435,8 +7435,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 7738, - "end": 7784, + "start": 7737, + "end": 7783, "loc": { "start": { "line": 329, @@ -7450,8 +7450,8 @@ "body": [ { "type": "ReturnStatement", - "start": 7744, - "end": 7780, + "start": 7743, + "end": 7779, "loc": { "start": { "line": 330, @@ -7464,8 +7464,8 @@ }, "argument": { "type": "CallExpression", - "start": 7751, - "end": 7779, + "start": 7750, + "end": 7778, "loc": { "start": { "line": 330, @@ -7478,8 +7478,8 @@ }, "callee": { "type": "MemberExpression", - "start": 7751, - "end": 7764, + "start": 7750, + "end": 7763, "loc": { "start": { "line": 330, @@ -7492,8 +7492,8 @@ }, "object": { "type": "ThisExpression", - "start": 7751, - "end": 7755, + "start": 7750, + "end": 7754, "loc": { "start": { "line": 330, @@ -7507,8 +7507,8 @@ }, "property": { "type": "Identifier", - "start": 7756, - "end": 7764, + "start": 7755, + "end": 7763, "loc": { "start": { "line": 330, @@ -7527,8 +7527,8 @@ "arguments": [ { "type": "BinaryExpression", - "start": 7765, - "end": 7778, + "start": 7764, + "end": 7777, "loc": { "start": { "line": 330, @@ -7541,8 +7541,8 @@ }, "left": { "type": "MemberExpression", - "start": 7765, - "end": 7774, + "start": 7764, + "end": 7773, "loc": { "start": { "line": 330, @@ -7555,8 +7555,8 @@ }, "object": { "type": "ThisExpression", - "start": 7765, - "end": 7769, + "start": 7764, + "end": 7768, "loc": { "start": { "line": 330, @@ -7570,8 +7570,8 @@ }, "property": { "type": "Identifier", - "start": 7770, - "end": 7774, + "start": 7769, + "end": 7773, "loc": { "start": { "line": 330, @@ -7590,8 +7590,8 @@ "operator": "+", "right": { "type": "NumericLiteral", - "start": 7777, - "end": 7778, + "start": 7776, + "end": 7777, "loc": { "start": { "line": 330, @@ -7620,8 +7620,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the next page, and update the datasource accordingly.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to next page.\n * False otherwise.\n ", - "start": 7476, - "end": 7718, + "start": 7475, + "end": 7717, "loc": { "start": { "line": 323, @@ -7638,8 +7638,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the previous page, and update the datasource accordingly.\n * @access public\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to previous page.\n * False otherwise.\n ", - "start": 7788, - "end": 8058, + "start": 7787, + "end": 8057, "loc": { "start": { "line": 333, @@ -7655,8 +7655,8 @@ }, { "type": "ClassMethod", - "start": 8061, - "end": 8124, + "start": 8060, + "end": 8123, "loc": { "start": { "line": 340, @@ -7671,8 +7671,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 8067, - "end": 8075, + "start": 8066, + "end": 8074, "loc": { "start": { "line": 340, @@ -7694,8 +7694,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 8078, - "end": 8124, + "start": 8077, + "end": 8123, "loc": { "start": { "line": 340, @@ -7709,8 +7709,8 @@ "body": [ { "type": "ReturnStatement", - "start": 8084, - "end": 8120, + "start": 8083, + "end": 8119, "loc": { "start": { "line": 341, @@ -7723,8 +7723,8 @@ }, "argument": { "type": "CallExpression", - "start": 8091, - "end": 8119, + "start": 8090, + "end": 8118, "loc": { "start": { "line": 341, @@ -7737,8 +7737,8 @@ }, "callee": { "type": "MemberExpression", - "start": 8091, - "end": 8104, + "start": 8090, + "end": 8103, "loc": { "start": { "line": 341, @@ -7751,8 +7751,8 @@ }, "object": { "type": "ThisExpression", - "start": 8091, - "end": 8095, + "start": 8090, + "end": 8094, "loc": { "start": { "line": 341, @@ -7766,8 +7766,8 @@ }, "property": { "type": "Identifier", - "start": 8096, - "end": 8104, + "start": 8095, + "end": 8103, "loc": { "start": { "line": 341, @@ -7786,8 +7786,8 @@ "arguments": [ { "type": "BinaryExpression", - "start": 8105, - "end": 8118, + "start": 8104, + "end": 8117, "loc": { "start": { "line": 341, @@ -7800,8 +7800,8 @@ }, "left": { "type": "MemberExpression", - "start": 8105, - "end": 8114, + "start": 8104, + "end": 8113, "loc": { "start": { "line": 341, @@ -7814,8 +7814,8 @@ }, "object": { "type": "ThisExpression", - "start": 8105, - "end": 8109, + "start": 8104, + "end": 8108, "loc": { "start": { "line": 341, @@ -7829,8 +7829,8 @@ }, "property": { "type": "Identifier", - "start": 8110, - "end": 8114, + "start": 8109, + "end": 8113, "loc": { "start": { "line": 341, @@ -7849,8 +7849,8 @@ "operator": "-", "right": { "type": "NumericLiteral", - "start": 8117, - "end": 8118, + "start": 8116, + "end": 8117, "loc": { "start": { "line": 341, @@ -7879,8 +7879,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the previous page, and update the datasource accordingly.\n * @access public\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to previous page.\n * False otherwise.\n ", - "start": 7788, - "end": 8058, + "start": 7787, + "end": 8057, "loc": { "start": { "line": 333, @@ -7897,8 +7897,8 @@ { "type": "CommentBlock", "value": "*\n * Given a search text, filters the data accordingly.\n * @access public\n * @param {String} searchArguments - The search text to filter with, or\n * the search arguments object to filter\n * with specific column filtering.\n * @return {Promise} A promise object, resolved when the search is completed.\n ", - "start": 8128, - "end": 8518, + "start": 8127, + "end": 8517, "loc": { "start": { "line": 344, @@ -7914,8 +7914,8 @@ }, { "type": "ClassMethod", - "start": 8521, - "end": 8817, + "start": 8520, + "end": 8816, "loc": { "start": { "line": 352, @@ -7930,8 +7930,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 8527, - "end": 8533, + "start": 8526, + "end": 8532, "loc": { "start": { "line": 352, @@ -7953,8 +7953,8 @@ "params": [ { "type": "Identifier", - "start": 8534, - "end": 8549, + "start": 8533, + "end": 8548, "loc": { "start": { "line": 352, @@ -7971,8 +7971,8 @@ ], "body": { "type": "BlockStatement", - "start": 8551, - "end": 8817, + "start": 8550, + "end": 8816, "loc": { "start": { "line": 352, @@ -7986,8 +7986,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 8557, - "end": 8580, + "start": 8556, + "end": 8579, "loc": { "start": { "line": 353, @@ -8000,8 +8000,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8557, - "end": 8579, + "start": 8556, + "end": 8578, "loc": { "start": { "line": 353, @@ -8015,8 +8015,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8557, - "end": 8572, + "start": 8556, + "end": 8571, "loc": { "start": { "line": 353, @@ -8029,8 +8029,8 @@ }, "object": { "type": "ThisExpression", - "start": 8557, - "end": 8561, + "start": 8556, + "end": 8560, "loc": { "start": { "line": 353, @@ -8044,8 +8044,8 @@ }, "property": { "type": "Identifier", - "start": 8562, - "end": 8572, + "start": 8561, + "end": 8571, "loc": { "start": { "line": 353, @@ -8063,8 +8063,8 @@ }, "right": { "type": "NullLiteral", - "start": 8575, - "end": 8579, + "start": 8574, + "end": 8578, "loc": { "start": { "line": 353, @@ -8080,8 +8080,8 @@ }, { "type": "ExpressionStatement", - "start": 8585, - "end": 8613, + "start": 8584, + "end": 8612, "loc": { "start": { "line": 354, @@ -8094,8 +8094,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8585, - "end": 8612, + "start": 8584, + "end": 8611, "loc": { "start": { "line": 354, @@ -8109,8 +8109,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8585, - "end": 8605, + "start": 8584, + "end": 8604, "loc": { "start": { "line": 354, @@ -8123,8 +8123,8 @@ }, "object": { "type": "ThisExpression", - "start": 8585, - "end": 8589, + "start": 8584, + "end": 8588, "loc": { "start": { "line": 354, @@ -8138,8 +8138,8 @@ }, "property": { "type": "Identifier", - "start": 8590, - "end": 8605, + "start": 8589, + "end": 8604, "loc": { "start": { "line": 354, @@ -8157,8 +8157,8 @@ }, "right": { "type": "NullLiteral", - "start": 8608, - "end": 8612, + "start": 8607, + "end": 8611, "loc": { "start": { "line": 354, @@ -8174,8 +8174,8 @@ }, { "type": "IfStatement", - "start": 8618, - "end": 8766, + "start": 8617, + "end": 8765, "loc": { "start": { "line": 355, @@ -8188,8 +8188,8 @@ }, "test": { "type": "BinaryExpression", - "start": 8622, - "end": 8657, + "start": 8621, + "end": 8656, "loc": { "start": { "line": 355, @@ -8202,8 +8202,8 @@ }, "left": { "type": "UnaryExpression", - "start": 8622, - "end": 8644, + "start": 8621, + "end": 8643, "loc": { "start": { "line": 355, @@ -8218,8 +8218,8 @@ "prefix": true, "argument": { "type": "Identifier", - "start": 8629, - "end": 8644, + "start": 8628, + "end": 8643, "loc": { "start": { "line": 355, @@ -8240,8 +8240,8 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 8649, - "end": 8657, + "start": 8648, + "end": 8656, "loc": { "start": { "line": 355, @@ -8261,8 +8261,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 8659, - "end": 8707, + "start": 8658, + "end": 8706, "loc": { "start": { "line": 355, @@ -8276,8 +8276,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 8667, - "end": 8701, + "start": 8666, + "end": 8700, "loc": { "start": { "line": 356, @@ -8290,8 +8290,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8667, - "end": 8700, + "start": 8666, + "end": 8699, "loc": { "start": { "line": 356, @@ -8305,8 +8305,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8667, - "end": 8682, + "start": 8666, + "end": 8681, "loc": { "start": { "line": 356, @@ -8319,8 +8319,8 @@ }, "object": { "type": "ThisExpression", - "start": 8667, - "end": 8671, + "start": 8666, + "end": 8670, "loc": { "start": { "line": 356, @@ -8334,8 +8334,8 @@ }, "property": { "type": "Identifier", - "start": 8672, - "end": 8682, + "start": 8671, + "end": 8681, "loc": { "start": { "line": 356, @@ -8353,8 +8353,8 @@ }, "right": { "type": "Identifier", - "start": 8685, - "end": 8700, + "start": 8684, + "end": 8699, "loc": { "start": { "line": 356, @@ -8375,8 +8375,8 @@ }, "alternate": { "type": "BlockStatement", - "start": 8713, - "end": 8766, + "start": 8712, + "end": 8765, "loc": { "start": { "line": 357, @@ -8390,8 +8390,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 8721, - "end": 8760, + "start": 8720, + "end": 8759, "loc": { "start": { "line": 358, @@ -8404,8 +8404,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8721, - "end": 8759, + "start": 8720, + "end": 8758, "loc": { "start": { "line": 358, @@ -8419,8 +8419,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8721, - "end": 8741, + "start": 8720, + "end": 8740, "loc": { "start": { "line": 358, @@ -8433,8 +8433,8 @@ }, "object": { "type": "ThisExpression", - "start": 8721, - "end": 8725, + "start": 8720, + "end": 8724, "loc": { "start": { "line": 358, @@ -8448,8 +8448,8 @@ }, "property": { "type": "Identifier", - "start": 8726, - "end": 8741, + "start": 8725, + "end": 8740, "loc": { "start": { "line": 358, @@ -8467,8 +8467,8 @@ }, "right": { "type": "Identifier", - "start": 8744, - "end": 8759, + "start": 8743, + "end": 8758, "loc": { "start": { "line": 358, @@ -8490,8 +8490,8 @@ }, { "type": "ExpressionStatement", - "start": 8771, - "end": 8787, + "start": 8770, + "end": 8786, "loc": { "start": { "line": 360, @@ -8504,8 +8504,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8771, - "end": 8786, + "start": 8770, + "end": 8785, "loc": { "start": { "line": 360, @@ -8519,8 +8519,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8771, - "end": 8782, + "start": 8770, + "end": 8781, "loc": { "start": { "line": 360, @@ -8533,8 +8533,8 @@ }, "object": { "type": "ThisExpression", - "start": 8771, - "end": 8775, + "start": 8770, + "end": 8774, "loc": { "start": { "line": 360, @@ -8548,8 +8548,8 @@ }, "property": { "type": "Identifier", - "start": 8776, - "end": 8782, + "start": 8775, + "end": 8781, "loc": { "start": { "line": 360, @@ -8567,8 +8567,8 @@ }, "right": { "type": "NumericLiteral", - "start": 8785, - "end": 8786, + "start": 8784, + "end": 8785, "loc": { "start": { "line": 360, @@ -8589,8 +8589,8 @@ }, { "type": "ReturnStatement", - "start": 8792, - "end": 8813, + "start": 8791, + "end": 8812, "loc": { "start": { "line": 361, @@ -8603,8 +8603,8 @@ }, "argument": { "type": "CallExpression", - "start": 8799, - "end": 8812, + "start": 8798, + "end": 8811, "loc": { "start": { "line": 361, @@ -8617,8 +8617,8 @@ }, "callee": { "type": "MemberExpression", - "start": 8799, - "end": 8810, + "start": 8798, + "end": 8809, "loc": { "start": { "line": 361, @@ -8631,8 +8631,8 @@ }, "object": { "type": "ThisExpression", - "start": 8799, - "end": 8803, + "start": 8798, + "end": 8802, "loc": { "start": { "line": 361, @@ -8646,8 +8646,8 @@ }, "property": { "type": "Identifier", - "start": 8804, - "end": 8810, + "start": 8803, + "end": 8809, "loc": { "start": { "line": 361, @@ -8674,8 +8674,8 @@ { "type": "CommentBlock", "value": "*\n * Given a search text, filters the data accordingly.\n * @access public\n * @param {String} searchArguments - The search text to filter with, or\n * the search arguments object to filter\n * with specific column filtering.\n * @return {Promise} A promise object, resolved when the search is completed.\n ", - "start": 8128, - "end": 8518, + "start": 8127, + "end": 8517, "loc": { "start": { "line": 344, @@ -8692,8 +8692,8 @@ { "type": "CommentBlock", "value": "*\n * Sort the data based on a field and direction.\n * @access public\n * @param {Object} sortArguments - Object with keys as the field names to sort.\n * The values of the object is the sort direction.\n * The sort direction can be 'asc', 'ascend', 'desc',\n * 'descending'\n * @return {Promise} A promise object, resolved when the sorting is completed.\n ", - "start": 8821, - "end": 9291, + "start": 8820, + "end": 9290, "loc": { "start": { "line": 364, @@ -8709,8 +8709,8 @@ }, { "type": "ClassMethod", - "start": 9294, - "end": 9398, + "start": 9293, + "end": 9397, "loc": { "start": { "line": 373, @@ -8725,8 +8725,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9300, - "end": 9304, + "start": 9299, + "end": 9303, "loc": { "start": { "line": 373, @@ -8748,8 +8748,8 @@ "params": [ { "type": "AssignmentPattern", - "start": 9305, - "end": 9325, + "start": 9304, + "end": 9324, "loc": { "start": { "line": 373, @@ -8762,8 +8762,8 @@ }, "left": { "type": "Identifier", - "start": 9305, - "end": 9318, + "start": 9304, + "end": 9317, "loc": { "start": { "line": 373, @@ -8779,8 +8779,8 @@ }, "right": { "type": "NullLiteral", - "start": 9321, - "end": 9325, + "start": 9320, + "end": 9324, "loc": { "start": { "line": 373, @@ -8796,8 +8796,8 @@ ], "body": { "type": "BlockStatement", - "start": 9327, - "end": 9398, + "start": 9326, + "end": 9397, "loc": { "start": { "line": 373, @@ -8811,8 +8811,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 9333, - "end": 9368, + "start": 9332, + "end": 9367, "loc": { "start": { "line": 374, @@ -8825,8 +8825,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 9333, - "end": 9367, + "start": 9332, + "end": 9366, "loc": { "start": { "line": 374, @@ -8840,8 +8840,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 9333, - "end": 9351, + "start": 9332, + "end": 9350, "loc": { "start": { "line": 374, @@ -8854,8 +8854,8 @@ }, "object": { "type": "ThisExpression", - "start": 9333, - "end": 9337, + "start": 9332, + "end": 9336, "loc": { "start": { "line": 374, @@ -8869,8 +8869,8 @@ }, "property": { "type": "Identifier", - "start": 9338, - "end": 9351, + "start": 9337, + "end": 9350, "loc": { "start": { "line": 374, @@ -8888,8 +8888,8 @@ }, "right": { "type": "Identifier", - "start": 9354, - "end": 9367, + "start": 9353, + "end": 9366, "loc": { "start": { "line": 374, @@ -8907,8 +8907,8 @@ }, { "type": "ReturnStatement", - "start": 9373, - "end": 9394, + "start": 9372, + "end": 9393, "loc": { "start": { "line": 375, @@ -8921,8 +8921,8 @@ }, "argument": { "type": "CallExpression", - "start": 9380, - "end": 9393, + "start": 9379, + "end": 9392, "loc": { "start": { "line": 375, @@ -8935,8 +8935,8 @@ }, "callee": { "type": "MemberExpression", - "start": 9380, - "end": 9391, + "start": 9379, + "end": 9390, "loc": { "start": { "line": 375, @@ -8949,8 +8949,8 @@ }, "object": { "type": "ThisExpression", - "start": 9380, - "end": 9384, + "start": 9379, + "end": 9383, "loc": { "start": { "line": 375, @@ -8964,8 +8964,8 @@ }, "property": { "type": "Identifier", - "start": 9385, - "end": 9391, + "start": 9384, + "end": 9390, "loc": { "start": { "line": 375, @@ -8991,8 +8991,8 @@ { "type": "CommentBlock", "value": "*\n * Sort the data based on a field and direction.\n * @access public\n * @param {Object} sortArguments - Object with keys as the field names to sort.\n * The values of the object is the sort direction.\n * The sort direction can be 'asc', 'ascend', 'desc',\n * 'descending'\n * @return {Promise} A promise object, resolved when the sorting is completed.\n ", - "start": 8821, - "end": 9291, + "start": 8820, + "end": 9290, "loc": { "start": { "line": 364, @@ -9014,8 +9014,8 @@ }, { "type": "ExpressionStatement", - "start": 9402, - "end": 9553, + "start": 9401, + "end": 9552, "loc": { "start": { "line": 379, @@ -9028,8 +9028,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 9402, - "end": 9552, + "start": 9401, + "end": 9551, "loc": { "start": { "line": 379, @@ -9043,8 +9043,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 9402, - "end": 9435, + "start": 9401, + "end": 9434, "loc": { "start": { "line": 379, @@ -9057,8 +9057,8 @@ }, "object": { "type": "MemberExpression", - "start": 9402, - "end": 9426, + "start": 9401, + "end": 9425, "loc": { "start": { "line": 379, @@ -9071,8 +9071,8 @@ }, "object": { "type": "Identifier", - "start": 9402, - "end": 9416, + "start": 9401, + "end": 9415, "loc": { "start": { "line": 379, @@ -9088,8 +9088,8 @@ }, "property": { "type": "Identifier", - "start": 9417, - "end": 9426, + "start": 9416, + "end": 9425, "loc": { "start": { "line": 379, @@ -9107,8 +9107,8 @@ }, "property": { "type": "Identifier", - "start": 9427, - "end": 9435, + "start": 9426, + "end": 9434, "loc": { "start": { "line": 379, @@ -9126,8 +9126,8 @@ }, "right": { "type": "ObjectExpression", - "start": 9438, - "end": 9552, + "start": 9437, + "end": 9551, "loc": { "start": { "line": 379, @@ -9141,8 +9141,8 @@ "properties": [ { "type": "ObjectProperty", - "start": 9442, - "end": 9456, + "start": 9441, + "end": 9455, "loc": { "start": { "line": 380, @@ -9158,8 +9158,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9442, - "end": 9449, + "start": 9441, + "end": 9448, "loc": { "start": { "line": 380, @@ -9175,8 +9175,8 @@ }, "value": { "type": "BooleanLiteral", - "start": 9451, - "end": 9456, + "start": 9450, + "end": 9455, "loc": { "start": { "line": 380, @@ -9192,8 +9192,8 @@ }, { "type": "ObjectProperty", - "start": 9460, - "end": 9469, + "start": 9459, + "end": 9468, "loc": { "start": { "line": 381, @@ -9209,8 +9209,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9460, - "end": 9466, + "start": 9459, + "end": 9465, "loc": { "start": { "line": 381, @@ -9226,8 +9226,8 @@ }, "value": { "type": "NumericLiteral", - "start": 9468, - "end": 9469, + "start": 9467, + "end": 9468, "loc": { "start": { "line": 381, @@ -9247,8 +9247,8 @@ }, { "type": "ObjectProperty", - "start": 9473, - "end": 9481, + "start": 9472, + "end": 9480, "loc": { "start": { "line": 382, @@ -9264,8 +9264,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9473, - "end": 9477, + "start": 9472, + "end": 9476, "loc": { "start": { "line": 382, @@ -9281,8 +9281,8 @@ }, "value": { "type": "NumericLiteral", - "start": 9479, - "end": 9481, + "start": 9478, + "end": 9480, "loc": { "start": { "line": 382, @@ -9302,8 +9302,8 @@ }, { "type": "ObjectProperty", - "start": 9485, - "end": 9501, + "start": 9484, + "end": 9500, "loc": { "start": { "line": 383, @@ -9319,8 +9319,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9485, - "end": 9495, + "start": 9484, + "end": 9494, "loc": { "start": { "line": 383, @@ -9336,8 +9336,8 @@ }, "value": { "type": "NullLiteral", - "start": 9497, - "end": 9501, + "start": 9496, + "end": 9500, "loc": { "start": { "line": 383, @@ -9352,8 +9352,8 @@ }, { "type": "ObjectProperty", - "start": 9505, - "end": 9526, + "start": 9504, + "end": 9525, "loc": { "start": { "line": 384, @@ -9369,8 +9369,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9505, - "end": 9520, + "start": 9504, + "end": 9519, "loc": { "start": { "line": 384, @@ -9386,8 +9386,8 @@ }, "value": { "type": "NullLiteral", - "start": 9522, - "end": 9526, + "start": 9521, + "end": 9525, "loc": { "start": { "line": 384, @@ -9402,8 +9402,8 @@ }, { "type": "ObjectProperty", - "start": 9530, - "end": 9549, + "start": 9529, + "end": 9548, "loc": { "start": { "line": 385, @@ -9419,8 +9419,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9530, - "end": 9543, + "start": 9529, + "end": 9542, "loc": { "start": { "line": 385, @@ -9436,8 +9436,8 @@ }, "value": { "type": "NullLiteral", - "start": 9545, - "end": 9549, + "start": 9544, + "end": 9548, "loc": { "start": { "line": 385, @@ -9456,8 +9456,8 @@ }, { "type": "Identifier", - "start": 9555, - "end": 9585, + "start": 9554, + "end": 9584, "loc": { "start": { "line": 388, @@ -9470,8 +9470,8 @@ }, "declaration": { "type": "Identifier", - "start": 9570, - "end": 9584, + "start": 9569, + "end": 9583, "loc": { "start": { "line": 388, @@ -9491,8 +9491,8 @@ }, { "type": "ExportDefaultDeclaration", - "start": 9555, - "end": 9585, + "start": 9554, + "end": 9584, "loc": { "start": { "line": 388, @@ -9506,7 +9506,7 @@ "declaration": { "type": "ClassDeclaration", "start": 234, - "end": 9400, + "end": 9399, "loc": { "start": { "line": 11, @@ -9555,7 +9555,7 @@ "body": { "type": "ClassBody", "start": 276, - "end": 9400, + "end": 9399, "loc": { "start": { "line": 11, @@ -10252,7 +10252,7 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * The pagination size, i.e. the Number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The pagination size, i.e. the number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", "start": 2594, "end": 2728, "loc": { @@ -10402,7 +10402,7 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * The pagination size, i.e. the Number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The pagination size, i.e. the number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", "start": 2594, "end": 2728, "loc": { @@ -11135,7 +11135,7 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * The page Number for data pagination.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The page number for data pagination.\n *\n * @access public\n * @type {Number}\n ", "start": 3445, "end": 3561, "loc": { @@ -11195,7 +11195,7 @@ }, { "type": "CommentBlock", - "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page Number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the Number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", + "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", "start": 1139, "end": 2071, "loc": { @@ -13221,9 +13221,9 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", + "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", "start": 5118, - "end": 5223, + "end": 5222, "loc": { "start": { "line": 219, @@ -13239,8 +13239,8 @@ }, { "type": "ClassMethod", - "start": 5226, - "end": 5300, + "start": 5225, + "end": 5299, "loc": { "start": { "line": 224, @@ -13255,8 +13255,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5230, - "end": 5234, + "start": 5229, + "end": 5233, "loc": { "start": { "line": 224, @@ -13278,8 +13278,8 @@ "params": [ { "type": "Identifier", - "start": 5235, - "end": 5242, + "start": 5234, + "end": 5241, "loc": { "start": { "line": 224, @@ -13296,8 +13296,8 @@ ], "body": { "type": "BlockStatement", - "start": 5244, - "end": 5300, + "start": 5243, + "end": 5299, "loc": { "start": { "line": 224, @@ -13311,8 +13311,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 5250, - "end": 5296, + "start": 5249, + "end": 5295, "loc": { "start": { "line": 225, @@ -13325,8 +13325,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 5250, - "end": 5295, + "start": 5249, + "end": 5294, "loc": { "start": { "line": 225, @@ -13340,8 +13340,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 5250, - "end": 5261, + "start": 5249, + "end": 5260, "loc": { "start": { "line": 225, @@ -13354,8 +13354,8 @@ }, "object": { "type": "ThisExpression", - "start": 5250, - "end": 5254, + "start": 5249, + "end": 5253, "loc": { "start": { "line": 225, @@ -13369,8 +13369,8 @@ }, "property": { "type": "Identifier", - "start": 5255, - "end": 5261, + "start": 5254, + "end": 5260, "loc": { "start": { "line": 225, @@ -13388,8 +13388,8 @@ }, "right": { "type": "BinaryExpression", - "start": 5264, - "end": 5295, + "start": 5263, + "end": 5294, "loc": { "start": { "line": 225, @@ -13402,8 +13402,8 @@ }, "left": { "type": "BinaryExpression", - "start": 5264, - "end": 5283, + "start": 5263, + "end": 5282, "loc": { "start": { "line": 225, @@ -13416,8 +13416,8 @@ }, "left": { "type": "Identifier", - "start": 5264, - "end": 5271, + "start": 5263, + "end": 5270, "loc": { "start": { "line": 225, @@ -13434,8 +13434,8 @@ "operator": "*", "right": { "type": "MemberExpression", - "start": 5274, - "end": 5283, + "start": 5273, + "end": 5282, "loc": { "start": { "line": 225, @@ -13448,8 +13448,8 @@ }, "object": { "type": "ThisExpression", - "start": 5274, - "end": 5278, + "start": 5273, + "end": 5277, "loc": { "start": { "line": 225, @@ -13463,8 +13463,8 @@ }, "property": { "type": "Identifier", - "start": 5279, - "end": 5283, + "start": 5278, + "end": 5282, "loc": { "start": { "line": 225, @@ -13484,8 +13484,8 @@ "operator": "-", "right": { "type": "MemberExpression", - "start": 5286, - "end": 5295, + "start": 5285, + "end": 5294, "loc": { "start": { "line": 225, @@ -13498,8 +13498,8 @@ }, "object": { "type": "ThisExpression", - "start": 5286, - "end": 5290, + "start": 5285, + "end": 5289, "loc": { "start": { "line": 225, @@ -13513,8 +13513,8 @@ }, "property": { "type": "Identifier", - "start": 5291, - "end": 5295, + "start": 5290, + "end": 5294, "loc": { "start": { "line": 225, @@ -13540,9 +13540,9 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", + "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", "start": 5118, - "end": 5223, + "end": 5222, "loc": { "start": { "line": 219, @@ -13559,8 +13559,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the first page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5304, - "end": 5415, + "start": 5303, + "end": 5414, "loc": { "start": { "line": 228, @@ -13576,8 +13576,8 @@ }, { "type": "ClassMethod", - "start": 5418, - "end": 5510, + "start": 5417, + "end": 5509, "loc": { "start": { "line": 233, @@ -13592,8 +13592,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5422, - "end": 5433, + "start": 5421, + "end": 5432, "loc": { "start": { "line": 233, @@ -13615,8 +13615,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5436, - "end": 5510, + "start": 5435, + "end": 5509, "loc": { "start": { "line": 233, @@ -13630,8 +13630,8 @@ "body": [ { "type": "IfStatement", - "start": 5442, - "end": 5488, + "start": 5441, + "end": 5487, "loc": { "start": { "line": 234, @@ -13644,8 +13644,8 @@ }, "test": { "type": "BinaryExpression", - "start": 5446, - "end": 5460, + "start": 5445, + "end": 5459, "loc": { "start": { "line": 234, @@ -13658,8 +13658,8 @@ }, "left": { "type": "MemberExpression", - "start": 5446, - "end": 5455, + "start": 5445, + "end": 5454, "loc": { "start": { "line": 234, @@ -13672,8 +13672,8 @@ }, "object": { "type": "ThisExpression", - "start": 5446, - "end": 5450, + "start": 5445, + "end": 5449, "loc": { "start": { "line": 234, @@ -13687,8 +13687,8 @@ }, "property": { "type": "Identifier", - "start": 5451, - "end": 5455, + "start": 5450, + "end": 5454, "loc": { "start": { "line": 234, @@ -13707,8 +13707,8 @@ "operator": "<=", "right": { "type": "NumericLiteral", - "start": 5459, - "end": 5460, + "start": 5458, + "end": 5459, "loc": { "start": { "line": 234, @@ -13728,8 +13728,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 5462, - "end": 5488, + "start": 5461, + "end": 5487, "loc": { "start": { "line": 234, @@ -13743,8 +13743,8 @@ "body": [ { "type": "ReturnStatement", - "start": 5470, - "end": 5482, + "start": 5469, + "end": 5481, "loc": { "start": { "line": 235, @@ -13757,8 +13757,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5477, - "end": 5481, + "start": 5476, + "end": 5480, "loc": { "start": { "line": 235, @@ -13779,8 +13779,8 @@ }, { "type": "ReturnStatement", - "start": 5493, - "end": 5506, + "start": 5492, + "end": 5505, "loc": { "start": { "line": 237, @@ -13793,8 +13793,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5500, - "end": 5505, + "start": 5499, + "end": 5504, "loc": { "start": { "line": 237, @@ -13816,8 +13816,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the first page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5304, - "end": 5415, + "start": 5303, + "end": 5414, "loc": { "start": { "line": 228, @@ -13834,8 +13834,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the last page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5514, - "end": 5624, + "start": 5513, + "end": 5623, "loc": { "start": { "line": 240, @@ -13851,8 +13851,8 @@ }, { "type": "ClassMethod", - "start": 5627, - "end": 5732, + "start": 5626, + "end": 5731, "loc": { "start": { "line": 245, @@ -13867,8 +13867,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5631, - "end": 5641, + "start": 5630, + "end": 5640, "loc": { "start": { "line": 245, @@ -13890,8 +13890,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5644, - "end": 5732, + "start": 5643, + "end": 5731, "loc": { "start": { "line": 245, @@ -13905,8 +13905,8 @@ "body": [ { "type": "IfStatement", - "start": 5650, - "end": 5710, + "start": 5649, + "end": 5709, "loc": { "start": { "line": 246, @@ -13919,8 +13919,8 @@ }, "test": { "type": "BinaryExpression", - "start": 5654, - "end": 5682, + "start": 5653, + "end": 5681, "loc": { "start": { "line": 246, @@ -13933,8 +13933,8 @@ }, "left": { "type": "MemberExpression", - "start": 5654, - "end": 5663, + "start": 5653, + "end": 5662, "loc": { "start": { "line": 246, @@ -13947,8 +13947,8 @@ }, "object": { "type": "ThisExpression", - "start": 5654, - "end": 5658, + "start": 5653, + "end": 5657, "loc": { "start": { "line": 246, @@ -13962,8 +13962,8 @@ }, "property": { "type": "Identifier", - "start": 5659, - "end": 5663, + "start": 5658, + "end": 5662, "loc": { "start": { "line": 246, @@ -13982,8 +13982,8 @@ "operator": ">=", "right": { "type": "MemberExpression", - "start": 5667, - "end": 5682, + "start": 5666, + "end": 5681, "loc": { "start": { "line": 246, @@ -13996,8 +13996,8 @@ }, "object": { "type": "ThisExpression", - "start": 5667, - "end": 5671, + "start": 5666, + "end": 5670, "loc": { "start": { "line": 246, @@ -14011,8 +14011,8 @@ }, "property": { "type": "Identifier", - "start": 5672, - "end": 5682, + "start": 5671, + "end": 5681, "loc": { "start": { "line": 246, @@ -14031,8 +14031,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 5684, - "end": 5710, + "start": 5683, + "end": 5709, "loc": { "start": { "line": 246, @@ -14046,8 +14046,8 @@ "body": [ { "type": "ReturnStatement", - "start": 5692, - "end": 5704, + "start": 5691, + "end": 5703, "loc": { "start": { "line": 247, @@ -14060,8 +14060,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5699, - "end": 5703, + "start": 5698, + "end": 5702, "loc": { "start": { "line": 247, @@ -14082,8 +14082,8 @@ }, { "type": "ReturnStatement", - "start": 5715, - "end": 5728, + "start": 5714, + "end": 5727, "loc": { "start": { "line": 249, @@ -14096,8 +14096,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 5722, - "end": 5727, + "start": 5721, + "end": 5726, "loc": { "start": { "line": 249, @@ -14119,8 +14119,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the last page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5514, - "end": 5624, + "start": 5513, + "end": 5623, "loc": { "start": { "line": 240, @@ -14136,9 +14136,9 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A Number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", - "start": 5736, - "end": 5913, + "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", + "start": 5735, + "end": 5912, "loc": { "start": { "line": 252, @@ -14154,8 +14154,8 @@ }, { "type": "ClassMethod", - "start": 5916, - "end": 6104, + "start": 5915, + "end": 6103, "loc": { "start": { "line": 259, @@ -14170,8 +14170,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 5920, - "end": 5930, + "start": 5919, + "end": 5929, "loc": { "start": { "line": 259, @@ -14193,8 +14193,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 5933, - "end": 6104, + "start": 5932, + "end": 6103, "loc": { "start": { "line": 259, @@ -14208,8 +14208,8 @@ "body": [ { "type": "IfStatement", - "start": 5939, - "end": 6004, + "start": 5938, + "end": 6003, "loc": { "start": { "line": 260, @@ -14222,8 +14222,8 @@ }, "test": { "type": "LogicalExpression", - "start": 5943, - "end": 5976, + "start": 5942, + "end": 5975, "loc": { "start": { "line": 260, @@ -14236,8 +14236,8 @@ }, "left": { "type": "BinaryExpression", - "start": 5943, - "end": 5962, + "start": 5942, + "end": 5961, "loc": { "start": { "line": 260, @@ -14250,8 +14250,8 @@ }, "left": { "type": "MemberExpression", - "start": 5943, - "end": 5953, + "start": 5942, + "end": 5952, "loc": { "start": { "line": 260, @@ -14264,8 +14264,8 @@ }, "object": { "type": "ThisExpression", - "start": 5943, - "end": 5947, + "start": 5942, + "end": 5946, "loc": { "start": { "line": 260, @@ -14279,8 +14279,8 @@ }, "property": { "type": "Identifier", - "start": 5948, - "end": 5953, + "start": 5947, + "end": 5952, "loc": { "start": { "line": 260, @@ -14299,8 +14299,8 @@ "operator": "===", "right": { "type": "NullLiteral", - "start": 5958, - "end": 5962, + "start": 5957, + "end": 5961, "loc": { "start": { "line": 260, @@ -14316,8 +14316,8 @@ "operator": "||", "right": { "type": "UnaryExpression", - "start": 5966, - "end": 5976, + "start": 5965, + "end": 5975, "loc": { "start": { "line": 260, @@ -14332,8 +14332,8 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 5967, - "end": 5976, + "start": 5966, + "end": 5975, "loc": { "start": { "line": 260, @@ -14346,8 +14346,8 @@ }, "object": { "type": "ThisExpression", - "start": 5967, - "end": 5971, + "start": 5966, + "end": 5970, "loc": { "start": { "line": 260, @@ -14361,8 +14361,8 @@ }, "property": { "type": "Identifier", - "start": 5972, - "end": 5976, + "start": 5971, + "end": 5975, "loc": { "start": { "line": 260, @@ -14385,8 +14385,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 5978, - "end": 6004, + "start": 5977, + "end": 6003, "loc": { "start": { "line": 260, @@ -14400,8 +14400,8 @@ "body": [ { "type": "ReturnStatement", - "start": 5986, - "end": 5998, + "start": 5985, + "end": 5997, "loc": { "start": { "line": 261, @@ -14414,8 +14414,8 @@ }, "argument": { "type": "NullLiteral", - "start": 5993, - "end": 5997, + "start": 5992, + "end": 5996, "loc": { "start": { "line": 261, @@ -14435,8 +14435,8 @@ }, { "type": "IfStatement", - "start": 6009, - "end": 6054, + "start": 6008, + "end": 6053, "loc": { "start": { "line": 263, @@ -14449,8 +14449,8 @@ }, "test": { "type": "BinaryExpression", - "start": 6013, - "end": 6029, + "start": 6012, + "end": 6028, "loc": { "start": { "line": 263, @@ -14463,8 +14463,8 @@ }, "left": { "type": "MemberExpression", - "start": 6013, - "end": 6023, + "start": 6012, + "end": 6022, "loc": { "start": { "line": 263, @@ -14477,8 +14477,8 @@ }, "object": { "type": "ThisExpression", - "start": 6013, - "end": 6017, + "start": 6012, + "end": 6016, "loc": { "start": { "line": 263, @@ -14492,8 +14492,8 @@ }, "property": { "type": "Identifier", - "start": 6018, - "end": 6023, + "start": 6017, + "end": 6022, "loc": { "start": { "line": 263, @@ -14512,8 +14512,8 @@ "operator": "===", "right": { "type": "NumericLiteral", - "start": 6028, - "end": 6029, + "start": 6027, + "end": 6028, "loc": { "start": { "line": 263, @@ -14533,8 +14533,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 6031, - "end": 6054, + "start": 6030, + "end": 6053, "loc": { "start": { "line": 263, @@ -14548,8 +14548,8 @@ "body": [ { "type": "ReturnStatement", - "start": 6039, - "end": 6048, + "start": 6038, + "end": 6047, "loc": { "start": { "line": 264, @@ -14562,8 +14562,8 @@ }, "argument": { "type": "NumericLiteral", - "start": 6046, - "end": 6047, + "start": 6045, + "end": 6046, "loc": { "start": { "line": 264, @@ -14588,8 +14588,8 @@ }, { "type": "ReturnStatement", - "start": 6059, - "end": 6100, + "start": 6058, + "end": 6099, "loc": { "start": { "line": 266, @@ -14602,8 +14602,8 @@ }, "argument": { "type": "CallExpression", - "start": 6066, - "end": 6099, + "start": 6065, + "end": 6098, "loc": { "start": { "line": 266, @@ -14616,8 +14616,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6066, - "end": 6075, + "start": 6065, + "end": 6074, "loc": { "start": { "line": 266, @@ -14630,8 +14630,8 @@ }, "object": { "type": "Identifier", - "start": 6066, - "end": 6070, + "start": 6065, + "end": 6069, "loc": { "start": { "line": 266, @@ -14647,8 +14647,8 @@ }, "property": { "type": "Identifier", - "start": 6071, - "end": 6075, + "start": 6070, + "end": 6074, "loc": { "start": { "line": 266, @@ -14667,8 +14667,8 @@ "arguments": [ { "type": "BinaryExpression", - "start": 6076, - "end": 6098, + "start": 6075, + "end": 6097, "loc": { "start": { "line": 266, @@ -14681,8 +14681,8 @@ }, "left": { "type": "MemberExpression", - "start": 6076, - "end": 6086, + "start": 6075, + "end": 6085, "loc": { "start": { "line": 266, @@ -14695,8 +14695,8 @@ }, "object": { "type": "ThisExpression", - "start": 6076, - "end": 6080, + "start": 6075, + "end": 6079, "loc": { "start": { "line": 266, @@ -14710,8 +14710,8 @@ }, "property": { "type": "Identifier", - "start": 6081, - "end": 6086, + "start": 6080, + "end": 6085, "loc": { "start": { "line": 266, @@ -14730,8 +14730,8 @@ "operator": "/", "right": { "type": "MemberExpression", - "start": 6089, - "end": 6098, + "start": 6088, + "end": 6097, "loc": { "start": { "line": 266, @@ -14744,8 +14744,8 @@ }, "object": { "type": "ThisExpression", - "start": 6089, - "end": 6093, + "start": 6088, + "end": 6092, "loc": { "start": { "line": 266, @@ -14759,8 +14759,8 @@ }, "property": { "type": "Identifier", - "start": 6094, - "end": 6098, + "start": 6093, + "end": 6097, "loc": { "start": { "line": 266, @@ -14787,9 +14787,9 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A Number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", - "start": 5736, - "end": 5913, + "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", + "start": 5735, + "end": 5912, "loc": { "start": { "line": 252, @@ -14806,8 +14806,8 @@ { "type": "CommentBlock", "value": "*\n * Methods\n ", - "start": 6108, - "end": 6130, + "start": 6107, + "end": 6129, "loc": { "start": { "line": 269, @@ -14822,8 +14822,8 @@ { "type": "CommentBlock", "value": "*\n * Updates the datasource, using the currently\n * configured search text, sort settings, and\n * pagination options.\n * @access public\n * @return {Promise} A promise object, resolved when the update is completed.\n ", - "start": 6134, - "end": 6365, + "start": 6133, + "end": 6364, "loc": { "start": { "line": 273, @@ -14839,8 +14839,8 @@ }, { "type": "ClassMethod", - "start": 6368, - "end": 6953, + "start": 6367, + "end": 6952, "loc": { "start": { "line": 280, @@ -14855,8 +14855,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6374, - "end": 6380, + "start": 6373, + "end": 6379, "loc": { "start": { "line": 280, @@ -14878,8 +14878,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 6383, - "end": 6953, + "start": 6382, + "end": 6952, "loc": { "start": { "line": 280, @@ -14893,8 +14893,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 6389, - "end": 6409, + "start": 6388, + "end": 6408, "loc": { "start": { "line": 281, @@ -14907,8 +14907,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6389, - "end": 6408, + "start": 6388, + "end": 6407, "loc": { "start": { "line": 281, @@ -14922,8 +14922,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6389, - "end": 6401, + "start": 6388, + "end": 6400, "loc": { "start": { "line": 281, @@ -14936,8 +14936,8 @@ }, "object": { "type": "ThisExpression", - "start": 6389, - "end": 6393, + "start": 6388, + "end": 6392, "loc": { "start": { "line": 281, @@ -14951,8 +14951,8 @@ }, "property": { "type": "Identifier", - "start": 6394, - "end": 6401, + "start": 6393, + "end": 6400, "loc": { "start": { "line": 281, @@ -14970,8 +14970,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6404, - "end": 6408, + "start": 6403, + "end": 6407, "loc": { "start": { "line": 281, @@ -14988,8 +14988,8 @@ }, { "type": "TryStatement", - "start": 6414, - "end": 6949, + "start": 6413, + "end": 6948, "loc": { "start": { "line": 282, @@ -15002,8 +15002,8 @@ }, "block": { "type": "BlockStatement", - "start": 6418, - "end": 6886, + "start": 6417, + "end": 6885, "loc": { "start": { "line": 282, @@ -15017,8 +15017,8 @@ "body": [ { "type": "VariableDeclaration", - "start": 6426, - "end": 6590, + "start": 6425, + "end": 6589, "loc": { "start": { "line": 283, @@ -15032,8 +15032,8 @@ "declarations": [ { "type": "VariableDeclarator", - "start": 6432, - "end": 6589, + "start": 6431, + "end": 6588, "loc": { "start": { "line": 283, @@ -15046,8 +15046,8 @@ }, "id": { "type": "Identifier", - "start": 6432, - "end": 6447, + "start": 6431, + "end": 6446, "loc": { "start": { "line": 283, @@ -15063,8 +15063,8 @@ }, "init": { "type": "ObjectExpression", - "start": 6450, - "end": 6589, + "start": 6449, + "end": 6588, "loc": { "start": { "line": 283, @@ -15078,8 +15078,8 @@ "properties": [ { "type": "ObjectProperty", - "start": 6460, - "end": 6472, + "start": 6459, + "end": 6471, "loc": { "start": { "line": 284, @@ -15095,8 +15095,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6460, - "end": 6466, + "start": 6459, + "end": 6465, "loc": { "start": { "line": 284, @@ -15112,8 +15112,8 @@ }, "value": { "type": "ThisExpression", - "start": 6468, - "end": 6472, + "start": 6467, + "end": 6471, "loc": { "start": { "line": 284, @@ -15128,8 +15128,8 @@ }, { "type": "ObjectProperty", - "start": 6482, - "end": 6498, + "start": 6481, + "end": 6497, "loc": { "start": { "line": 285, @@ -15145,8 +15145,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6482, - "end": 6491, + "start": 6481, + "end": 6490, "loc": { "start": { "line": 285, @@ -15162,8 +15162,8 @@ }, "value": { "type": "BooleanLiteral", - "start": 6493, - "end": 6498, + "start": 6492, + "end": 6497, "loc": { "start": { "line": 285, @@ -15179,8 +15179,8 @@ }, { "type": "ObjectMethod", - "start": 6508, - "end": 6580, + "start": 6507, + "end": 6579, "loc": { "start": { "line": 286, @@ -15196,8 +15196,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6508, - "end": 6522, + "start": 6507, + "end": 6521, "loc": { "start": { "line": 286, @@ -15219,8 +15219,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 6525, - "end": 6580, + "start": 6524, + "end": 6579, "loc": { "start": { "line": 286, @@ -15234,8 +15234,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 6537, - "end": 6570, + "start": 6536, + "end": 6569, "loc": { "start": { "line": 287, @@ -15248,8 +15248,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6537, - "end": 6569, + "start": 6536, + "end": 6568, "loc": { "start": { "line": 287, @@ -15263,8 +15263,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6537, - "end": 6562, + "start": 6536, + "end": 6561, "loc": { "start": { "line": 287, @@ -15277,8 +15277,8 @@ }, "object": { "type": "Identifier", - "start": 6537, - "end": 6552, + "start": 6536, + "end": 6551, "loc": { "start": { "line": 287, @@ -15294,8 +15294,8 @@ }, "property": { "type": "Identifier", - "start": 6553, - "end": 6562, + "start": 6552, + "end": 6561, "loc": { "start": { "line": 287, @@ -15313,8 +15313,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6565, - "end": 6569, + "start": 6564, + "end": 6568, "loc": { "start": { "line": 287, @@ -15341,8 +15341,8 @@ }, { "type": "ExpressionStatement", - "start": 6597, - "end": 6639, + "start": 6596, + "end": 6638, "loc": { "start": { "line": 290, @@ -15355,8 +15355,8 @@ }, "expression": { "type": "CallExpression", - "start": 6597, - "end": 6638, + "start": 6596, + "end": 6637, "loc": { "start": { "line": 290, @@ -15369,8 +15369,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6597, - "end": 6606, + "start": 6596, + "end": 6605, "loc": { "start": { "line": 290, @@ -15383,8 +15383,8 @@ }, "object": { "type": "ThisExpression", - "start": 6597, - "end": 6601, + "start": 6596, + "end": 6600, "loc": { "start": { "line": 290, @@ -15398,8 +15398,8 @@ }, "property": { "type": "Identifier", - "start": 6602, - "end": 6606, + "start": 6601, + "end": 6605, "loc": { "start": { "line": 290, @@ -15418,8 +15418,8 @@ "arguments": [ { "type": "StringLiteral", - "start": 6607, - "end": 6620, + "start": 6606, + "end": 6619, "loc": { "start": { "line": 290, @@ -15438,8 +15438,8 @@ }, { "type": "Identifier", - "start": 6622, - "end": 6637, + "start": 6621, + "end": 6636, "loc": { "start": { "line": 290, @@ -15458,8 +15458,8 @@ }, { "type": "IfStatement", - "start": 6646, - "end": 6707, + "start": 6645, + "end": 6706, "loc": { "start": { "line": 291, @@ -15472,8 +15472,8 @@ }, "test": { "type": "MemberExpression", - "start": 6650, - "end": 6675, + "start": 6649, + "end": 6674, "loc": { "start": { "line": 291, @@ -15486,8 +15486,8 @@ }, "object": { "type": "Identifier", - "start": 6650, - "end": 6665, + "start": 6649, + "end": 6664, "loc": { "start": { "line": 291, @@ -15503,8 +15503,8 @@ }, "property": { "type": "Identifier", - "start": 6666, - "end": 6675, + "start": 6665, + "end": 6674, "loc": { "start": { "line": 291, @@ -15522,8 +15522,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 6677, - "end": 6707, + "start": 6676, + "end": 6706, "loc": { "start": { "line": 291, @@ -15537,8 +15537,8 @@ "body": [ { "type": "ReturnStatement", - "start": 6687, - "end": 6699, + "start": 6686, + "end": 6698, "loc": { "start": { "line": 292, @@ -15551,8 +15551,8 @@ }, "argument": { "type": "NullLiteral", - "start": 6694, - "end": 6698, + "start": 6693, + "end": 6697, "loc": { "start": { "line": 292, @@ -15572,8 +15572,8 @@ }, { "type": "VariableDeclaration", - "start": 6714, - "end": 6759, + "start": 6713, + "end": 6758, "loc": { "start": { "line": 294, @@ -15587,8 +15587,8 @@ "declarations": [ { "type": "VariableDeclarator", - "start": 6720, - "end": 6758, + "start": 6719, + "end": 6757, "loc": { "start": { "line": 294, @@ -15601,8 +15601,8 @@ }, "id": { "type": "Identifier", - "start": 6720, - "end": 6735, + "start": 6719, + "end": 6734, "loc": { "start": { "line": 294, @@ -15618,8 +15618,8 @@ }, "init": { "type": "AwaitExpression", - "start": 6738, - "end": 6758, + "start": 6737, + "end": 6757, "loc": { "start": { "line": 294, @@ -15632,8 +15632,8 @@ }, "argument": { "type": "CallExpression", - "start": 6744, - "end": 6758, + "start": 6743, + "end": 6757, "loc": { "start": { "line": 294, @@ -15646,8 +15646,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6744, - "end": 6756, + "start": 6743, + "end": 6755, "loc": { "start": { "line": 294, @@ -15660,8 +15660,8 @@ }, "object": { "type": "ThisExpression", - "start": 6744, - "end": 6748, + "start": 6743, + "end": 6747, "loc": { "start": { "line": 294, @@ -15675,8 +15675,8 @@ }, "property": { "type": "Identifier", - "start": 6749, - "end": 6756, + "start": 6748, + "end": 6755, "loc": { "start": { "line": 294, @@ -15701,8 +15701,8 @@ }, { "type": "ExpressionStatement", - "start": 6766, - "end": 6822, + "start": 6765, + "end": 6821, "loc": { "start": { "line": 295, @@ -15715,8 +15715,8 @@ }, "expression": { "type": "CallExpression", - "start": 6766, - "end": 6821, + "start": 6765, + "end": 6820, "loc": { "start": { "line": 295, @@ -15729,8 +15729,8 @@ }, "callee": { "type": "MemberExpression", - "start": 6766, - "end": 6775, + "start": 6765, + "end": 6774, "loc": { "start": { "line": 295, @@ -15743,8 +15743,8 @@ }, "object": { "type": "ThisExpression", - "start": 6766, - "end": 6770, + "start": 6765, + "end": 6769, "loc": { "start": { "line": 295, @@ -15758,8 +15758,8 @@ }, "property": { "type": "Identifier", - "start": 6771, - "end": 6775, + "start": 6770, + "end": 6774, "loc": { "start": { "line": 295, @@ -15778,8 +15778,8 @@ "arguments": [ { "type": "StringLiteral", - "start": 6776, - "end": 6787, + "start": 6775, + "end": 6786, "loc": { "start": { "line": 295, @@ -15798,8 +15798,8 @@ }, { "type": "ObjectExpression", - "start": 6789, - "end": 6820, + "start": 6788, + "end": 6819, "loc": { "start": { "line": 295, @@ -15813,8 +15813,8 @@ "properties": [ { "type": "ObjectProperty", - "start": 6799, - "end": 6811, + "start": 6798, + "end": 6810, "loc": { "start": { "line": 296, @@ -15830,8 +15830,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 6799, - "end": 6805, + "start": 6798, + "end": 6804, "loc": { "start": { "line": 296, @@ -15847,8 +15847,8 @@ }, "value": { "type": "ThisExpression", - "start": 6807, - "end": 6811, + "start": 6806, + "end": 6810, "loc": { "start": { "line": 296, @@ -15868,8 +15868,8 @@ }, { "type": "ExpressionStatement", - "start": 6829, - "end": 6850, + "start": 6828, + "end": 6849, "loc": { "start": { "line": 298, @@ -15882,8 +15882,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6829, - "end": 6849, + "start": 6828, + "end": 6848, "loc": { "start": { "line": 298, @@ -15897,8 +15897,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6829, - "end": 6841, + "start": 6828, + "end": 6840, "loc": { "start": { "line": 298, @@ -15911,8 +15911,8 @@ }, "object": { "type": "ThisExpression", - "start": 6829, - "end": 6833, + "start": 6828, + "end": 6832, "loc": { "start": { "line": 298, @@ -15926,8 +15926,8 @@ }, "property": { "type": "Identifier", - "start": 6834, - "end": 6841, + "start": 6833, + "end": 6840, "loc": { "start": { "line": 298, @@ -15945,8 +15945,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6844, - "end": 6849, + "start": 6843, + "end": 6848, "loc": { "start": { "line": 298, @@ -15963,8 +15963,8 @@ }, { "type": "ReturnStatement", - "start": 6857, - "end": 6880, + "start": 6856, + "end": 6879, "loc": { "start": { "line": 299, @@ -15977,8 +15977,8 @@ }, "argument": { "type": "Identifier", - "start": 6864, - "end": 6879, + "start": 6863, + "end": 6878, "loc": { "start": { "line": 299, @@ -15998,8 +15998,8 @@ }, "handler": { "type": "CatchClause", - "start": 6887, - "end": 6949, + "start": 6886, + "end": 6948, "loc": { "start": { "line": 300, @@ -16012,8 +16012,8 @@ }, "param": { "type": "Identifier", - "start": 6894, - "end": 6896, + "start": 6893, + "end": 6895, "loc": { "start": { "line": 300, @@ -16029,8 +16029,8 @@ }, "body": { "type": "BlockStatement", - "start": 6898, - "end": 6949, + "start": 6897, + "end": 6948, "loc": { "start": { "line": 300, @@ -16044,8 +16044,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 6906, - "end": 6927, + "start": 6905, + "end": 6926, "loc": { "start": { "line": 301, @@ -16058,8 +16058,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 6906, - "end": 6926, + "start": 6905, + "end": 6925, "loc": { "start": { "line": 301, @@ -16073,8 +16073,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 6906, - "end": 6918, + "start": 6905, + "end": 6917, "loc": { "start": { "line": 301, @@ -16087,8 +16087,8 @@ }, "object": { "type": "ThisExpression", - "start": 6906, - "end": 6910, + "start": 6905, + "end": 6909, "loc": { "start": { "line": 301, @@ -16102,8 +16102,8 @@ }, "property": { "type": "Identifier", - "start": 6911, - "end": 6918, + "start": 6910, + "end": 6917, "loc": { "start": { "line": 301, @@ -16121,8 +16121,8 @@ }, "right": { "type": "BooleanLiteral", - "start": 6921, - "end": 6926, + "start": 6920, + "end": 6925, "loc": { "start": { "line": 301, @@ -16139,8 +16139,8 @@ }, { "type": "ThrowStatement", - "start": 6934, - "end": 6943, + "start": 6933, + "end": 6942, "loc": { "start": { "line": 302, @@ -16153,8 +16153,8 @@ }, "argument": { "type": "Identifier", - "start": 6940, - "end": 6942, + "start": 6939, + "end": 6941, "loc": { "start": { "line": 302, @@ -16184,8 +16184,8 @@ { "type": "CommentBlock", "value": "*\n * Methods\n ", - "start": 6108, - "end": 6130, + "start": 6107, + "end": 6129, "loc": { "start": { "line": 269, @@ -16200,8 +16200,8 @@ { "type": "CommentBlock", "value": "*\n * Updates the datasource, using the currently\n * configured search text, sort settings, and\n * pagination options.\n * @access public\n * @return {Promise} A promise object, resolved when the update is completed.\n ", - "start": 6134, - "end": 6365, + "start": 6133, + "end": 6364, "loc": { "start": { "line": 273, @@ -16218,8 +16218,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the specified page, and update the datasource accordingly.\n * @access public\n * @param {Number} pageNum - The new page to traverse to.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to specified page.\n * False otherwise.\n ", - "start": 6957, - "end": 7290, + "start": 6956, + "end": 7289, "loc": { "start": { "line": 306, @@ -16235,8 +16235,8 @@ }, { "type": "ClassMethod", - "start": 7293, - "end": 7472, + "start": 7292, + "end": 7471, "loc": { "start": { "line": 314, @@ -16251,8 +16251,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 7299, - "end": 7307, + "start": 7298, + "end": 7306, "loc": { "start": { "line": 314, @@ -16274,8 +16274,8 @@ "params": [ { "type": "Identifier", - "start": 7308, - "end": 7315, + "start": 7307, + "end": 7314, "loc": { "start": { "line": 314, @@ -16292,8 +16292,8 @@ ], "body": { "type": "BlockStatement", - "start": 7317, - "end": 7472, + "start": 7316, + "end": 7471, "loc": { "start": { "line": 314, @@ -16307,8 +16307,8 @@ "body": [ { "type": "IfStatement", - "start": 7323, - "end": 7450, + "start": 7322, + "end": 7449, "loc": { "start": { "line": 315, @@ -16321,8 +16321,8 @@ }, "test": { "type": "LogicalExpression", - "start": 7327, - "end": 7368, + "start": 7326, + "end": 7367, "loc": { "start": { "line": 315, @@ -16335,8 +16335,8 @@ }, "left": { "type": "BinaryExpression", - "start": 7327, - "end": 7338, + "start": 7326, + "end": 7337, "loc": { "start": { "line": 315, @@ -16349,8 +16349,8 @@ }, "left": { "type": "Identifier", - "start": 7327, - "end": 7334, + "start": 7326, + "end": 7333, "loc": { "start": { "line": 315, @@ -16367,8 +16367,8 @@ "operator": ">", "right": { "type": "NumericLiteral", - "start": 7337, - "end": 7338, + "start": 7336, + "end": 7337, "loc": { "start": { "line": 315, @@ -16389,8 +16389,8 @@ "operator": "&&", "right": { "type": "BinaryExpression", - "start": 7342, - "end": 7368, + "start": 7341, + "end": 7367, "loc": { "start": { "line": 315, @@ -16403,8 +16403,8 @@ }, "left": { "type": "Identifier", - "start": 7342, - "end": 7349, + "start": 7341, + "end": 7348, "loc": { "start": { "line": 315, @@ -16421,8 +16421,8 @@ "operator": "<=", "right": { "type": "MemberExpression", - "start": 7353, - "end": 7368, + "start": 7352, + "end": 7367, "loc": { "start": { "line": 315, @@ -16435,8 +16435,8 @@ }, "object": { "type": "ThisExpression", - "start": 7353, - "end": 7357, + "start": 7352, + "end": 7356, "loc": { "start": { "line": 315, @@ -16450,8 +16450,8 @@ }, "property": { "type": "Identifier", - "start": 7358, - "end": 7368, + "start": 7357, + "end": 7367, "loc": { "start": { "line": 315, @@ -16471,8 +16471,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 7370, - "end": 7450, + "start": 7369, + "end": 7449, "loc": { "start": { "line": 315, @@ -16486,8 +16486,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 7378, - "end": 7398, + "start": 7377, + "end": 7397, "loc": { "start": { "line": 316, @@ -16500,8 +16500,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 7378, - "end": 7397, + "start": 7377, + "end": 7396, "loc": { "start": { "line": 316, @@ -16515,8 +16515,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 7378, - "end": 7387, + "start": 7377, + "end": 7386, "loc": { "start": { "line": 316, @@ -16529,8 +16529,8 @@ }, "object": { "type": "ThisExpression", - "start": 7378, - "end": 7382, + "start": 7377, + "end": 7381, "loc": { "start": { "line": 316, @@ -16544,8 +16544,8 @@ }, "property": { "type": "Identifier", - "start": 7383, - "end": 7387, + "start": 7382, + "end": 7386, "loc": { "start": { "line": 316, @@ -16563,8 +16563,8 @@ }, "right": { "type": "Identifier", - "start": 7390, - "end": 7397, + "start": 7389, + "end": 7396, "loc": { "start": { "line": 316, @@ -16582,8 +16582,8 @@ }, { "type": "ExpressionStatement", - "start": 7405, - "end": 7425, + "start": 7404, + "end": 7424, "loc": { "start": { "line": 317, @@ -16596,8 +16596,8 @@ }, "expression": { "type": "AwaitExpression", - "start": 7405, - "end": 7424, + "start": 7404, + "end": 7423, "loc": { "start": { "line": 317, @@ -16610,8 +16610,8 @@ }, "argument": { "type": "CallExpression", - "start": 7411, - "end": 7424, + "start": 7410, + "end": 7423, "loc": { "start": { "line": 317, @@ -16624,8 +16624,8 @@ }, "callee": { "type": "MemberExpression", - "start": 7411, - "end": 7422, + "start": 7410, + "end": 7421, "loc": { "start": { "line": 317, @@ -16638,8 +16638,8 @@ }, "object": { "type": "ThisExpression", - "start": 7411, - "end": 7415, + "start": 7410, + "end": 7414, "loc": { "start": { "line": 317, @@ -16653,8 +16653,8 @@ }, "property": { "type": "Identifier", - "start": 7416, - "end": 7422, + "start": 7415, + "end": 7421, "loc": { "start": { "line": 317, @@ -16676,8 +16676,8 @@ }, { "type": "ReturnStatement", - "start": 7432, - "end": 7444, + "start": 7431, + "end": 7443, "loc": { "start": { "line": 318, @@ -16690,8 +16690,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 7439, - "end": 7443, + "start": 7438, + "end": 7442, "loc": { "start": { "line": 318, @@ -16712,8 +16712,8 @@ }, { "type": "ReturnStatement", - "start": 7455, - "end": 7468, + "start": 7454, + "end": 7467, "loc": { "start": { "line": 320, @@ -16726,8 +16726,8 @@ }, "argument": { "type": "BooleanLiteral", - "start": 7462, - "end": 7467, + "start": 7461, + "end": 7466, "loc": { "start": { "line": 320, @@ -16749,8 +16749,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the specified page, and update the datasource accordingly.\n * @access public\n * @param {Number} pageNum - The new page to traverse to.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to specified page.\n * False otherwise.\n ", - "start": 6957, - "end": 7290, + "start": 6956, + "end": 7289, "loc": { "start": { "line": 306, @@ -16767,8 +16767,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the next page, and update the datasource accordingly.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to next page.\n * False otherwise.\n ", - "start": 7476, - "end": 7718, + "start": 7475, + "end": 7717, "loc": { "start": { "line": 323, @@ -16784,8 +16784,8 @@ }, { "type": "ClassMethod", - "start": 7721, - "end": 7784, + "start": 7720, + "end": 7783, "loc": { "start": { "line": 329, @@ -16800,8 +16800,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 7727, - "end": 7735, + "start": 7726, + "end": 7734, "loc": { "start": { "line": 329, @@ -16823,8 +16823,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 7738, - "end": 7784, + "start": 7737, + "end": 7783, "loc": { "start": { "line": 329, @@ -16838,8 +16838,8 @@ "body": [ { "type": "ReturnStatement", - "start": 7744, - "end": 7780, + "start": 7743, + "end": 7779, "loc": { "start": { "line": 330, @@ -16852,8 +16852,8 @@ }, "argument": { "type": "CallExpression", - "start": 7751, - "end": 7779, + "start": 7750, + "end": 7778, "loc": { "start": { "line": 330, @@ -16866,8 +16866,8 @@ }, "callee": { "type": "MemberExpression", - "start": 7751, - "end": 7764, + "start": 7750, + "end": 7763, "loc": { "start": { "line": 330, @@ -16880,8 +16880,8 @@ }, "object": { "type": "ThisExpression", - "start": 7751, - "end": 7755, + "start": 7750, + "end": 7754, "loc": { "start": { "line": 330, @@ -16895,8 +16895,8 @@ }, "property": { "type": "Identifier", - "start": 7756, - "end": 7764, + "start": 7755, + "end": 7763, "loc": { "start": { "line": 330, @@ -16915,8 +16915,8 @@ "arguments": [ { "type": "BinaryExpression", - "start": 7765, - "end": 7778, + "start": 7764, + "end": 7777, "loc": { "start": { "line": 330, @@ -16929,8 +16929,8 @@ }, "left": { "type": "MemberExpression", - "start": 7765, - "end": 7774, + "start": 7764, + "end": 7773, "loc": { "start": { "line": 330, @@ -16943,8 +16943,8 @@ }, "object": { "type": "ThisExpression", - "start": 7765, - "end": 7769, + "start": 7764, + "end": 7768, "loc": { "start": { "line": 330, @@ -16958,8 +16958,8 @@ }, "property": { "type": "Identifier", - "start": 7770, - "end": 7774, + "start": 7769, + "end": 7773, "loc": { "start": { "line": 330, @@ -16978,8 +16978,8 @@ "operator": "+", "right": { "type": "NumericLiteral", - "start": 7777, - "end": 7778, + "start": 7776, + "end": 7777, "loc": { "start": { "line": 330, @@ -17008,8 +17008,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the next page, and update the datasource accordingly.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to next page.\n * False otherwise.\n ", - "start": 7476, - "end": 7718, + "start": 7475, + "end": 7717, "loc": { "start": { "line": 323, @@ -17026,8 +17026,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the previous page, and update the datasource accordingly.\n * @access public\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to previous page.\n * False otherwise.\n ", - "start": 7788, - "end": 8058, + "start": 7787, + "end": 8057, "loc": { "start": { "line": 333, @@ -17043,8 +17043,8 @@ }, { "type": "ClassMethod", - "start": 8061, - "end": 8124, + "start": 8060, + "end": 8123, "loc": { "start": { "line": 340, @@ -17059,8 +17059,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 8067, - "end": 8075, + "start": 8066, + "end": 8074, "loc": { "start": { "line": 340, @@ -17082,8 +17082,8 @@ "params": [], "body": { "type": "BlockStatement", - "start": 8078, - "end": 8124, + "start": 8077, + "end": 8123, "loc": { "start": { "line": 340, @@ -17097,8 +17097,8 @@ "body": [ { "type": "ReturnStatement", - "start": 8084, - "end": 8120, + "start": 8083, + "end": 8119, "loc": { "start": { "line": 341, @@ -17111,8 +17111,8 @@ }, "argument": { "type": "CallExpression", - "start": 8091, - "end": 8119, + "start": 8090, + "end": 8118, "loc": { "start": { "line": 341, @@ -17125,8 +17125,8 @@ }, "callee": { "type": "MemberExpression", - "start": 8091, - "end": 8104, + "start": 8090, + "end": 8103, "loc": { "start": { "line": 341, @@ -17139,8 +17139,8 @@ }, "object": { "type": "ThisExpression", - "start": 8091, - "end": 8095, + "start": 8090, + "end": 8094, "loc": { "start": { "line": 341, @@ -17154,8 +17154,8 @@ }, "property": { "type": "Identifier", - "start": 8096, - "end": 8104, + "start": 8095, + "end": 8103, "loc": { "start": { "line": 341, @@ -17174,8 +17174,8 @@ "arguments": [ { "type": "BinaryExpression", - "start": 8105, - "end": 8118, + "start": 8104, + "end": 8117, "loc": { "start": { "line": 341, @@ -17188,8 +17188,8 @@ }, "left": { "type": "MemberExpression", - "start": 8105, - "end": 8114, + "start": 8104, + "end": 8113, "loc": { "start": { "line": 341, @@ -17202,8 +17202,8 @@ }, "object": { "type": "ThisExpression", - "start": 8105, - "end": 8109, + "start": 8104, + "end": 8108, "loc": { "start": { "line": 341, @@ -17217,8 +17217,8 @@ }, "property": { "type": "Identifier", - "start": 8110, - "end": 8114, + "start": 8109, + "end": 8113, "loc": { "start": { "line": 341, @@ -17237,8 +17237,8 @@ "operator": "-", "right": { "type": "NumericLiteral", - "start": 8117, - "end": 8118, + "start": 8116, + "end": 8117, "loc": { "start": { "line": 341, @@ -17267,8 +17267,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the previous page, and update the datasource accordingly.\n * @access public\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to previous page.\n * False otherwise.\n ", - "start": 7788, - "end": 8058, + "start": 7787, + "end": 8057, "loc": { "start": { "line": 333, @@ -17285,8 +17285,8 @@ { "type": "CommentBlock", "value": "*\n * Given a search text, filters the data accordingly.\n * @access public\n * @param {String} searchArguments - The search text to filter with, or\n * the search arguments object to filter\n * with specific column filtering.\n * @return {Promise} A promise object, resolved when the search is completed.\n ", - "start": 8128, - "end": 8518, + "start": 8127, + "end": 8517, "loc": { "start": { "line": 344, @@ -17302,8 +17302,8 @@ }, { "type": "ClassMethod", - "start": 8521, - "end": 8817, + "start": 8520, + "end": 8816, "loc": { "start": { "line": 352, @@ -17318,8 +17318,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 8527, - "end": 8533, + "start": 8526, + "end": 8532, "loc": { "start": { "line": 352, @@ -17341,8 +17341,8 @@ "params": [ { "type": "Identifier", - "start": 8534, - "end": 8549, + "start": 8533, + "end": 8548, "loc": { "start": { "line": 352, @@ -17359,8 +17359,8 @@ ], "body": { "type": "BlockStatement", - "start": 8551, - "end": 8817, + "start": 8550, + "end": 8816, "loc": { "start": { "line": 352, @@ -17374,8 +17374,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 8557, - "end": 8580, + "start": 8556, + "end": 8579, "loc": { "start": { "line": 353, @@ -17388,8 +17388,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8557, - "end": 8579, + "start": 8556, + "end": 8578, "loc": { "start": { "line": 353, @@ -17403,8 +17403,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8557, - "end": 8572, + "start": 8556, + "end": 8571, "loc": { "start": { "line": 353, @@ -17417,8 +17417,8 @@ }, "object": { "type": "ThisExpression", - "start": 8557, - "end": 8561, + "start": 8556, + "end": 8560, "loc": { "start": { "line": 353, @@ -17432,8 +17432,8 @@ }, "property": { "type": "Identifier", - "start": 8562, - "end": 8572, + "start": 8561, + "end": 8571, "loc": { "start": { "line": 353, @@ -17451,8 +17451,8 @@ }, "right": { "type": "NullLiteral", - "start": 8575, - "end": 8579, + "start": 8574, + "end": 8578, "loc": { "start": { "line": 353, @@ -17468,8 +17468,8 @@ }, { "type": "ExpressionStatement", - "start": 8585, - "end": 8613, + "start": 8584, + "end": 8612, "loc": { "start": { "line": 354, @@ -17482,8 +17482,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8585, - "end": 8612, + "start": 8584, + "end": 8611, "loc": { "start": { "line": 354, @@ -17497,8 +17497,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8585, - "end": 8605, + "start": 8584, + "end": 8604, "loc": { "start": { "line": 354, @@ -17511,8 +17511,8 @@ }, "object": { "type": "ThisExpression", - "start": 8585, - "end": 8589, + "start": 8584, + "end": 8588, "loc": { "start": { "line": 354, @@ -17526,8 +17526,8 @@ }, "property": { "type": "Identifier", - "start": 8590, - "end": 8605, + "start": 8589, + "end": 8604, "loc": { "start": { "line": 354, @@ -17545,8 +17545,8 @@ }, "right": { "type": "NullLiteral", - "start": 8608, - "end": 8612, + "start": 8607, + "end": 8611, "loc": { "start": { "line": 354, @@ -17562,8 +17562,8 @@ }, { "type": "IfStatement", - "start": 8618, - "end": 8766, + "start": 8617, + "end": 8765, "loc": { "start": { "line": 355, @@ -17576,8 +17576,8 @@ }, "test": { "type": "BinaryExpression", - "start": 8622, - "end": 8657, + "start": 8621, + "end": 8656, "loc": { "start": { "line": 355, @@ -17590,8 +17590,8 @@ }, "left": { "type": "UnaryExpression", - "start": 8622, - "end": 8644, + "start": 8621, + "end": 8643, "loc": { "start": { "line": 355, @@ -17606,8 +17606,8 @@ "prefix": true, "argument": { "type": "Identifier", - "start": 8629, - "end": 8644, + "start": 8628, + "end": 8643, "loc": { "start": { "line": 355, @@ -17628,8 +17628,8 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 8649, - "end": 8657, + "start": 8648, + "end": 8656, "loc": { "start": { "line": 355, @@ -17649,8 +17649,8 @@ }, "consequent": { "type": "BlockStatement", - "start": 8659, - "end": 8707, + "start": 8658, + "end": 8706, "loc": { "start": { "line": 355, @@ -17664,8 +17664,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 8667, - "end": 8701, + "start": 8666, + "end": 8700, "loc": { "start": { "line": 356, @@ -17678,8 +17678,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8667, - "end": 8700, + "start": 8666, + "end": 8699, "loc": { "start": { "line": 356, @@ -17693,8 +17693,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8667, - "end": 8682, + "start": 8666, + "end": 8681, "loc": { "start": { "line": 356, @@ -17707,8 +17707,8 @@ }, "object": { "type": "ThisExpression", - "start": 8667, - "end": 8671, + "start": 8666, + "end": 8670, "loc": { "start": { "line": 356, @@ -17722,8 +17722,8 @@ }, "property": { "type": "Identifier", - "start": 8672, - "end": 8682, + "start": 8671, + "end": 8681, "loc": { "start": { "line": 356, @@ -17741,8 +17741,8 @@ }, "right": { "type": "Identifier", - "start": 8685, - "end": 8700, + "start": 8684, + "end": 8699, "loc": { "start": { "line": 356, @@ -17763,8 +17763,8 @@ }, "alternate": { "type": "BlockStatement", - "start": 8713, - "end": 8766, + "start": 8712, + "end": 8765, "loc": { "start": { "line": 357, @@ -17778,8 +17778,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 8721, - "end": 8760, + "start": 8720, + "end": 8759, "loc": { "start": { "line": 358, @@ -17792,8 +17792,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8721, - "end": 8759, + "start": 8720, + "end": 8758, "loc": { "start": { "line": 358, @@ -17807,8 +17807,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8721, - "end": 8741, + "start": 8720, + "end": 8740, "loc": { "start": { "line": 358, @@ -17821,8 +17821,8 @@ }, "object": { "type": "ThisExpression", - "start": 8721, - "end": 8725, + "start": 8720, + "end": 8724, "loc": { "start": { "line": 358, @@ -17836,8 +17836,8 @@ }, "property": { "type": "Identifier", - "start": 8726, - "end": 8741, + "start": 8725, + "end": 8740, "loc": { "start": { "line": 358, @@ -17855,8 +17855,8 @@ }, "right": { "type": "Identifier", - "start": 8744, - "end": 8759, + "start": 8743, + "end": 8758, "loc": { "start": { "line": 358, @@ -17878,8 +17878,8 @@ }, { "type": "ExpressionStatement", - "start": 8771, - "end": 8787, + "start": 8770, + "end": 8786, "loc": { "start": { "line": 360, @@ -17892,8 +17892,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 8771, - "end": 8786, + "start": 8770, + "end": 8785, "loc": { "start": { "line": 360, @@ -17907,8 +17907,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 8771, - "end": 8782, + "start": 8770, + "end": 8781, "loc": { "start": { "line": 360, @@ -17921,8 +17921,8 @@ }, "object": { "type": "ThisExpression", - "start": 8771, - "end": 8775, + "start": 8770, + "end": 8774, "loc": { "start": { "line": 360, @@ -17936,8 +17936,8 @@ }, "property": { "type": "Identifier", - "start": 8776, - "end": 8782, + "start": 8775, + "end": 8781, "loc": { "start": { "line": 360, @@ -17955,8 +17955,8 @@ }, "right": { "type": "NumericLiteral", - "start": 8785, - "end": 8786, + "start": 8784, + "end": 8785, "loc": { "start": { "line": 360, @@ -17977,8 +17977,8 @@ }, { "type": "ReturnStatement", - "start": 8792, - "end": 8813, + "start": 8791, + "end": 8812, "loc": { "start": { "line": 361, @@ -17991,8 +17991,8 @@ }, "argument": { "type": "CallExpression", - "start": 8799, - "end": 8812, + "start": 8798, + "end": 8811, "loc": { "start": { "line": 361, @@ -18005,8 +18005,8 @@ }, "callee": { "type": "MemberExpression", - "start": 8799, - "end": 8810, + "start": 8798, + "end": 8809, "loc": { "start": { "line": 361, @@ -18019,8 +18019,8 @@ }, "object": { "type": "ThisExpression", - "start": 8799, - "end": 8803, + "start": 8798, + "end": 8802, "loc": { "start": { "line": 361, @@ -18034,8 +18034,8 @@ }, "property": { "type": "Identifier", - "start": 8804, - "end": 8810, + "start": 8803, + "end": 8809, "loc": { "start": { "line": 361, @@ -18062,8 +18062,8 @@ { "type": "CommentBlock", "value": "*\n * Given a search text, filters the data accordingly.\n * @access public\n * @param {String} searchArguments - The search text to filter with, or\n * the search arguments object to filter\n * with specific column filtering.\n * @return {Promise} A promise object, resolved when the search is completed.\n ", - "start": 8128, - "end": 8518, + "start": 8127, + "end": 8517, "loc": { "start": { "line": 344, @@ -18080,8 +18080,8 @@ { "type": "CommentBlock", "value": "*\n * Sort the data based on a field and direction.\n * @access public\n * @param {Object} sortArguments - Object with keys as the field names to sort.\n * The values of the object is the sort direction.\n * The sort direction can be 'asc', 'ascend', 'desc',\n * 'descending'\n * @return {Promise} A promise object, resolved when the sorting is completed.\n ", - "start": 8821, - "end": 9291, + "start": 8820, + "end": 9290, "loc": { "start": { "line": 364, @@ -18097,8 +18097,8 @@ }, { "type": "ClassMethod", - "start": 9294, - "end": 9398, + "start": 9293, + "end": 9397, "loc": { "start": { "line": 373, @@ -18113,8 +18113,8 @@ "computed": false, "key": { "type": "Identifier", - "start": 9300, - "end": 9304, + "start": 9299, + "end": 9303, "loc": { "start": { "line": 373, @@ -18136,8 +18136,8 @@ "params": [ { "type": "AssignmentPattern", - "start": 9305, - "end": 9325, + "start": 9304, + "end": 9324, "loc": { "start": { "line": 373, @@ -18150,8 +18150,8 @@ }, "left": { "type": "Identifier", - "start": 9305, - "end": 9318, + "start": 9304, + "end": 9317, "loc": { "start": { "line": 373, @@ -18167,8 +18167,8 @@ }, "right": { "type": "NullLiteral", - "start": 9321, - "end": 9325, + "start": 9320, + "end": 9324, "loc": { "start": { "line": 373, @@ -18184,8 +18184,8 @@ ], "body": { "type": "BlockStatement", - "start": 9327, - "end": 9398, + "start": 9326, + "end": 9397, "loc": { "start": { "line": 373, @@ -18199,8 +18199,8 @@ "body": [ { "type": "ExpressionStatement", - "start": 9333, - "end": 9368, + "start": 9332, + "end": 9367, "loc": { "start": { "line": 374, @@ -18213,8 +18213,8 @@ }, "expression": { "type": "AssignmentExpression", - "start": 9333, - "end": 9367, + "start": 9332, + "end": 9366, "loc": { "start": { "line": 374, @@ -18228,8 +18228,8 @@ "operator": "=", "left": { "type": "MemberExpression", - "start": 9333, - "end": 9351, + "start": 9332, + "end": 9350, "loc": { "start": { "line": 374, @@ -18242,8 +18242,8 @@ }, "object": { "type": "ThisExpression", - "start": 9333, - "end": 9337, + "start": 9332, + "end": 9336, "loc": { "start": { "line": 374, @@ -18257,8 +18257,8 @@ }, "property": { "type": "Identifier", - "start": 9338, - "end": 9351, + "start": 9337, + "end": 9350, "loc": { "start": { "line": 374, @@ -18276,8 +18276,8 @@ }, "right": { "type": "Identifier", - "start": 9354, - "end": 9367, + "start": 9353, + "end": 9366, "loc": { "start": { "line": 374, @@ -18295,8 +18295,8 @@ }, { "type": "ReturnStatement", - "start": 9373, - "end": 9394, + "start": 9372, + "end": 9393, "loc": { "start": { "line": 375, @@ -18309,8 +18309,8 @@ }, "argument": { "type": "CallExpression", - "start": 9380, - "end": 9393, + "start": 9379, + "end": 9392, "loc": { "start": { "line": 375, @@ -18323,8 +18323,8 @@ }, "callee": { "type": "MemberExpression", - "start": 9380, - "end": 9391, + "start": 9379, + "end": 9390, "loc": { "start": { "line": 375, @@ -18337,8 +18337,8 @@ }, "object": { "type": "ThisExpression", - "start": 9380, - "end": 9384, + "start": 9379, + "end": 9383, "loc": { "start": { "line": 375, @@ -18352,8 +18352,8 @@ }, "property": { "type": "Identifier", - "start": 9385, - "end": 9391, + "start": 9384, + "end": 9390, "loc": { "start": { "line": 375, @@ -18379,8 +18379,8 @@ { "type": "CommentBlock", "value": "*\n * Sort the data based on a field and direction.\n * @access public\n * @param {Object} sortArguments - Object with keys as the field names to sort.\n * The values of the object is the sort direction.\n * The sort direction can be 'asc', 'ascend', 'desc',\n * 'descending'\n * @return {Promise} A promise object, resolved when the sorting is completed.\n ", - "start": 8821, - "end": 9291, + "start": 8820, + "end": 9290, "loc": { "start": { "line": 364, @@ -18473,7 +18473,7 @@ }, { "type": "CommentBlock", - "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page Number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the Number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", + "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", "start": 1139, "end": 2071, "loc": { @@ -18521,7 +18521,7 @@ }, { "type": "CommentBlock", - "value": "*\n * The pagination size, i.e. the Number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The pagination size, i.e. the number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", "start": 2594, "end": 2728, "loc": { @@ -18585,7 +18585,7 @@ }, { "type": "CommentBlock", - "value": "*\n * The page Number for data pagination.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The page number for data pagination.\n *\n * @access public\n * @type {Number}\n ", "start": 3445, "end": 3561, "loc": { @@ -18713,9 +18713,9 @@ }, { "type": "CommentBlock", - "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", + "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", "start": 5118, - "end": 5223, + "end": 5222, "loc": { "start": { "line": 219, @@ -18730,8 +18730,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the first page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5304, - "end": 5415, + "start": 5303, + "end": 5414, "loc": { "start": { "line": 228, @@ -18746,8 +18746,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the last page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5514, - "end": 5624, + "start": 5513, + "end": 5623, "loc": { "start": { "line": 240, @@ -18761,9 +18761,9 @@ }, { "type": "CommentBlock", - "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A Number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", - "start": 5736, - "end": 5913, + "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", + "start": 5735, + "end": 5912, "loc": { "start": { "line": 252, @@ -18778,8 +18778,8 @@ { "type": "CommentBlock", "value": "*\n * Methods\n ", - "start": 6108, - "end": 6130, + "start": 6107, + "end": 6129, "loc": { "start": { "line": 269, @@ -18794,8 +18794,8 @@ { "type": "CommentBlock", "value": "*\n * Updates the datasource, using the currently\n * configured search text, sort settings, and\n * pagination options.\n * @access public\n * @return {Promise} A promise object, resolved when the update is completed.\n ", - "start": 6134, - "end": 6365, + "start": 6133, + "end": 6364, "loc": { "start": { "line": 273, @@ -18810,8 +18810,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the specified page, and update the datasource accordingly.\n * @access public\n * @param {Number} pageNum - The new page to traverse to.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to specified page.\n * False otherwise.\n ", - "start": 6957, - "end": 7290, + "start": 6956, + "end": 7289, "loc": { "start": { "line": 306, @@ -18826,8 +18826,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the next page, and update the datasource accordingly.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to next page.\n * False otherwise.\n ", - "start": 7476, - "end": 7718, + "start": 7475, + "end": 7717, "loc": { "start": { "line": 323, @@ -18842,8 +18842,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the previous page, and update the datasource accordingly.\n * @access public\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to previous page.\n * False otherwise.\n ", - "start": 7788, - "end": 8058, + "start": 7787, + "end": 8057, "loc": { "start": { "line": 333, @@ -18858,8 +18858,8 @@ { "type": "CommentBlock", "value": "*\n * Given a search text, filters the data accordingly.\n * @access public\n * @param {String} searchArguments - The search text to filter with, or\n * the search arguments object to filter\n * with specific column filtering.\n * @return {Promise} A promise object, resolved when the search is completed.\n ", - "start": 8128, - "end": 8518, + "start": 8127, + "end": 8517, "loc": { "start": { "line": 344, @@ -18874,8 +18874,8 @@ { "type": "CommentBlock", "value": "*\n * Sort the data based on a field and direction.\n * @access public\n * @param {Object} sortArguments - Object with keys as the field names to sort.\n * The values of the object is the sort direction.\n * The sort direction can be 'asc', 'ascend', 'desc',\n * 'descending'\n * @return {Promise} A promise object, resolved when the sorting is completed.\n ", - "start": 8821, - "end": 9291, + "start": 8820, + "end": 9290, "loc": { "start": { "line": 364, @@ -19205,7 +19205,7 @@ }, { "type": "CommentBlock", - "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page Number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the Number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", + "value": "*\n * Create a datasource.\n * @param {Object} [options]\n * The datasource options.\n * @param {Boolean} [options.loading=false]\n * Represents whether the datasource is\n * loading or not.\n * @param {Number} [options.offset=0]\n * The pagination offset. It skips the\n * specified amount of items when querying.\n * @param {Number} [options.page=1]\n * The page number for data pagination.\n * @param {Number} [options.size=10]\n * The pagination size, i.e. the number\n * of records per page.\n * @param {String} [options.searchText=null]\n * The text to search for. Used to filter\n * the data items.\n * @param {MultiColumnSearchArgs} [options.searchArguments=null]\n * The search arguments object, for specific\n * or multi-column searching purposes.\n * @param {MultiColumnSortArgs} [options.sortArguments=null]\n * The sort arguments object, for specific\n * or multi-column sorting purposes.\n ", "start": 1139, "end": 2071, "loc": { @@ -20400,7 +20400,7 @@ }, { "type": "CommentBlock", - "value": "*\n * The pagination size, i.e. the Number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The pagination size, i.e. the number\n * of records per page.\n *\n * @access public\n * @type {Number}\n ", "start": 2594, "end": 2728, "loc": { @@ -21489,7 +21489,7 @@ }, { "type": "CommentBlock", - "value": "*\n * The page Number for data pagination.\n *\n * @access public\n * @type {Number}\n ", + "value": "*\n * The page number for data pagination.\n *\n * @access public\n * @type {Number}\n ", "start": 3445, "end": 3561, "loc": { @@ -25850,9 +25850,9 @@ }, { "type": "CommentBlock", - "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", + "value": "*\n * @param {Number} newPage - The new page to set to.\n * @access public\n * @type {Number}\n ", "start": 5118, - "end": 5223, + "end": 5222, "loc": { "start": { "line": 219, @@ -25877,8 +25877,8 @@ "binop": null }, "value": "set", - "start": 5226, - "end": 5229, + "start": 5225, + "end": 5228, "loc": { "start": { "line": 224, @@ -25903,8 +25903,8 @@ "binop": null }, "value": "page", - "start": 5230, - "end": 5234, + "start": 5229, + "end": 5233, "loc": { "start": { "line": 224, @@ -25928,8 +25928,8 @@ "postfix": false, "binop": null }, - "start": 5234, - "end": 5235, + "start": 5233, + "end": 5234, "loc": { "start": { "line": 224, @@ -25954,8 +25954,8 @@ "binop": null }, "value": "newPage", - "start": 5235, - "end": 5242, + "start": 5234, + "end": 5241, "loc": { "start": { "line": 224, @@ -25979,8 +25979,8 @@ "postfix": false, "binop": null }, - "start": 5242, - "end": 5243, + "start": 5241, + "end": 5242, "loc": { "start": { "line": 224, @@ -26004,8 +26004,8 @@ "postfix": false, "binop": null }, - "start": 5244, - "end": 5245, + "start": 5243, + "end": 5244, "loc": { "start": { "line": 224, @@ -26032,8 +26032,8 @@ "updateContext": null }, "value": "this", - "start": 5250, - "end": 5254, + "start": 5249, + "end": 5253, "loc": { "start": { "line": 225, @@ -26058,8 +26058,8 @@ "binop": null, "updateContext": null }, - "start": 5254, - "end": 5255, + "start": 5253, + "end": 5254, "loc": { "start": { "line": 225, @@ -26084,8 +26084,8 @@ "binop": null }, "value": "offset", - "start": 5255, - "end": 5261, + "start": 5254, + "end": 5260, "loc": { "start": { "line": 225, @@ -26111,8 +26111,8 @@ "updateContext": null }, "value": "=", - "start": 5262, - "end": 5263, + "start": 5261, + "end": 5262, "loc": { "start": { "line": 225, @@ -26137,8 +26137,8 @@ "binop": null }, "value": "newPage", - "start": 5264, - "end": 5271, + "start": 5263, + "end": 5270, "loc": { "start": { "line": 225, @@ -26164,8 +26164,8 @@ "updateContext": null }, "value": "*", - "start": 5272, - "end": 5273, + "start": 5271, + "end": 5272, "loc": { "start": { "line": 225, @@ -26192,8 +26192,8 @@ "updateContext": null }, "value": "this", - "start": 5274, - "end": 5278, + "start": 5273, + "end": 5277, "loc": { "start": { "line": 225, @@ -26218,8 +26218,8 @@ "binop": null, "updateContext": null }, - "start": 5278, - "end": 5279, + "start": 5277, + "end": 5278, "loc": { "start": { "line": 225, @@ -26244,8 +26244,8 @@ "binop": null }, "value": "size", - "start": 5279, - "end": 5283, + "start": 5278, + "end": 5282, "loc": { "start": { "line": 225, @@ -26271,8 +26271,8 @@ "updateContext": null }, "value": "-", - "start": 5284, - "end": 5285, + "start": 5283, + "end": 5284, "loc": { "start": { "line": 225, @@ -26299,8 +26299,8 @@ "updateContext": null }, "value": "this", - "start": 5286, - "end": 5290, + "start": 5285, + "end": 5289, "loc": { "start": { "line": 225, @@ -26325,8 +26325,8 @@ "binop": null, "updateContext": null }, - "start": 5290, - "end": 5291, + "start": 5289, + "end": 5290, "loc": { "start": { "line": 225, @@ -26351,8 +26351,8 @@ "binop": null }, "value": "size", - "start": 5291, - "end": 5295, + "start": 5290, + "end": 5294, "loc": { "start": { "line": 225, @@ -26377,8 +26377,8 @@ "binop": null, "updateContext": null }, - "start": 5295, - "end": 5296, + "start": 5294, + "end": 5295, "loc": { "start": { "line": 225, @@ -26402,8 +26402,8 @@ "postfix": false, "binop": null }, - "start": 5299, - "end": 5300, + "start": 5298, + "end": 5299, "loc": { "start": { "line": 226, @@ -26418,8 +26418,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the first page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5304, - "end": 5415, + "start": 5303, + "end": 5414, "loc": { "start": { "line": 228, @@ -26444,8 +26444,8 @@ "binop": null }, "value": "get", - "start": 5418, - "end": 5421, + "start": 5417, + "end": 5420, "loc": { "start": { "line": 233, @@ -26470,8 +26470,8 @@ "binop": null }, "value": "isFirstPage", - "start": 5422, - "end": 5433, + "start": 5421, + "end": 5432, "loc": { "start": { "line": 233, @@ -26495,8 +26495,8 @@ "postfix": false, "binop": null }, - "start": 5433, - "end": 5434, + "start": 5432, + "end": 5433, "loc": { "start": { "line": 233, @@ -26520,8 +26520,8 @@ "postfix": false, "binop": null }, - "start": 5434, - "end": 5435, + "start": 5433, + "end": 5434, "loc": { "start": { "line": 233, @@ -26545,8 +26545,8 @@ "postfix": false, "binop": null }, - "start": 5436, - "end": 5437, + "start": 5435, + "end": 5436, "loc": { "start": { "line": 233, @@ -26573,8 +26573,8 @@ "updateContext": null }, "value": "if", - "start": 5442, - "end": 5444, + "start": 5441, + "end": 5443, "loc": { "start": { "line": 234, @@ -26598,8 +26598,8 @@ "postfix": false, "binop": null }, - "start": 5445, - "end": 5446, + "start": 5444, + "end": 5445, "loc": { "start": { "line": 234, @@ -26626,8 +26626,8 @@ "updateContext": null }, "value": "this", - "start": 5446, - "end": 5450, + "start": 5445, + "end": 5449, "loc": { "start": { "line": 234, @@ -26652,8 +26652,8 @@ "binop": null, "updateContext": null }, - "start": 5450, - "end": 5451, + "start": 5449, + "end": 5450, "loc": { "start": { "line": 234, @@ -26678,8 +26678,8 @@ "binop": null }, "value": "page", - "start": 5451, - "end": 5455, + "start": 5450, + "end": 5454, "loc": { "start": { "line": 234, @@ -26705,8 +26705,8 @@ "updateContext": null }, "value": "<=", - "start": 5456, - "end": 5458, + "start": 5455, + "end": 5457, "loc": { "start": { "line": 234, @@ -26732,8 +26732,8 @@ "updateContext": null }, "value": 1, - "start": 5459, - "end": 5460, + "start": 5458, + "end": 5459, "loc": { "start": { "line": 234, @@ -26757,8 +26757,8 @@ "postfix": false, "binop": null }, - "start": 5460, - "end": 5461, + "start": 5459, + "end": 5460, "loc": { "start": { "line": 234, @@ -26782,8 +26782,8 @@ "postfix": false, "binop": null }, - "start": 5462, - "end": 5463, + "start": 5461, + "end": 5462, "loc": { "start": { "line": 234, @@ -26810,8 +26810,8 @@ "updateContext": null }, "value": "return", - "start": 5470, - "end": 5476, + "start": 5469, + "end": 5475, "loc": { "start": { "line": 235, @@ -26838,8 +26838,8 @@ "updateContext": null }, "value": "true", - "start": 5477, - "end": 5481, + "start": 5476, + "end": 5480, "loc": { "start": { "line": 235, @@ -26864,8 +26864,8 @@ "binop": null, "updateContext": null }, - "start": 5481, - "end": 5482, + "start": 5480, + "end": 5481, "loc": { "start": { "line": 235, @@ -26889,8 +26889,8 @@ "postfix": false, "binop": null }, - "start": 5487, - "end": 5488, + "start": 5486, + "end": 5487, "loc": { "start": { "line": 236, @@ -26917,8 +26917,8 @@ "updateContext": null }, "value": "return", - "start": 5493, - "end": 5499, + "start": 5492, + "end": 5498, "loc": { "start": { "line": 237, @@ -26945,8 +26945,8 @@ "updateContext": null }, "value": "false", - "start": 5500, - "end": 5505, + "start": 5499, + "end": 5504, "loc": { "start": { "line": 237, @@ -26971,8 +26971,8 @@ "binop": null, "updateContext": null }, - "start": 5505, - "end": 5506, + "start": 5504, + "end": 5505, "loc": { "start": { "line": 237, @@ -26996,8 +26996,8 @@ "postfix": false, "binop": null }, - "start": 5509, - "end": 5510, + "start": 5508, + "end": 5509, "loc": { "start": { "line": 238, @@ -27012,8 +27012,8 @@ { "type": "CommentBlock", "value": "*\n * Boolean to indicate whether it's the last page or not.\n * @access public\n * @type {Boolean}\n ", - "start": 5514, - "end": 5624, + "start": 5513, + "end": 5623, "loc": { "start": { "line": 240, @@ -27038,8 +27038,8 @@ "binop": null }, "value": "get", - "start": 5627, - "end": 5630, + "start": 5626, + "end": 5629, "loc": { "start": { "line": 245, @@ -27064,8 +27064,8 @@ "binop": null }, "value": "isLastPage", - "start": 5631, - "end": 5641, + "start": 5630, + "end": 5640, "loc": { "start": { "line": 245, @@ -27089,8 +27089,8 @@ "postfix": false, "binop": null }, - "start": 5641, - "end": 5642, + "start": 5640, + "end": 5641, "loc": { "start": { "line": 245, @@ -27114,8 +27114,8 @@ "postfix": false, "binop": null }, - "start": 5642, - "end": 5643, + "start": 5641, + "end": 5642, "loc": { "start": { "line": 245, @@ -27139,8 +27139,8 @@ "postfix": false, "binop": null }, - "start": 5644, - "end": 5645, + "start": 5643, + "end": 5644, "loc": { "start": { "line": 245, @@ -27167,8 +27167,8 @@ "updateContext": null }, "value": "if", - "start": 5650, - "end": 5652, + "start": 5649, + "end": 5651, "loc": { "start": { "line": 246, @@ -27192,8 +27192,8 @@ "postfix": false, "binop": null }, - "start": 5653, - "end": 5654, + "start": 5652, + "end": 5653, "loc": { "start": { "line": 246, @@ -27220,8 +27220,8 @@ "updateContext": null }, "value": "this", - "start": 5654, - "end": 5658, + "start": 5653, + "end": 5657, "loc": { "start": { "line": 246, @@ -27246,8 +27246,8 @@ "binop": null, "updateContext": null }, - "start": 5658, - "end": 5659, + "start": 5657, + "end": 5658, "loc": { "start": { "line": 246, @@ -27272,8 +27272,8 @@ "binop": null }, "value": "page", - "start": 5659, - "end": 5663, + "start": 5658, + "end": 5662, "loc": { "start": { "line": 246, @@ -27299,8 +27299,8 @@ "updateContext": null }, "value": ">=", - "start": 5664, - "end": 5666, + "start": 5663, + "end": 5665, "loc": { "start": { "line": 246, @@ -27327,8 +27327,8 @@ "updateContext": null }, "value": "this", - "start": 5667, - "end": 5671, + "start": 5666, + "end": 5670, "loc": { "start": { "line": 246, @@ -27353,8 +27353,8 @@ "binop": null, "updateContext": null }, - "start": 5671, - "end": 5672, + "start": 5670, + "end": 5671, "loc": { "start": { "line": 246, @@ -27379,8 +27379,8 @@ "binop": null }, "value": "totalPages", - "start": 5672, - "end": 5682, + "start": 5671, + "end": 5681, "loc": { "start": { "line": 246, @@ -27404,8 +27404,8 @@ "postfix": false, "binop": null }, - "start": 5682, - "end": 5683, + "start": 5681, + "end": 5682, "loc": { "start": { "line": 246, @@ -27429,8 +27429,8 @@ "postfix": false, "binop": null }, - "start": 5684, - "end": 5685, + "start": 5683, + "end": 5684, "loc": { "start": { "line": 246, @@ -27457,8 +27457,8 @@ "updateContext": null }, "value": "return", - "start": 5692, - "end": 5698, + "start": 5691, + "end": 5697, "loc": { "start": { "line": 247, @@ -27485,8 +27485,8 @@ "updateContext": null }, "value": "true", - "start": 5699, - "end": 5703, + "start": 5698, + "end": 5702, "loc": { "start": { "line": 247, @@ -27511,8 +27511,8 @@ "binop": null, "updateContext": null }, - "start": 5703, - "end": 5704, + "start": 5702, + "end": 5703, "loc": { "start": { "line": 247, @@ -27536,8 +27536,8 @@ "postfix": false, "binop": null }, - "start": 5709, - "end": 5710, + "start": 5708, + "end": 5709, "loc": { "start": { "line": 248, @@ -27564,8 +27564,8 @@ "updateContext": null }, "value": "return", - "start": 5715, - "end": 5721, + "start": 5714, + "end": 5720, "loc": { "start": { "line": 249, @@ -27592,8 +27592,8 @@ "updateContext": null }, "value": "false", - "start": 5722, - "end": 5727, + "start": 5721, + "end": 5726, "loc": { "start": { "line": 249, @@ -27618,8 +27618,8 @@ "binop": null, "updateContext": null }, - "start": 5727, - "end": 5728, + "start": 5726, + "end": 5727, "loc": { "start": { "line": 249, @@ -27643,8 +27643,8 @@ "postfix": false, "binop": null }, - "start": 5731, - "end": 5732, + "start": 5730, + "end": 5731, "loc": { "start": { "line": 250, @@ -27658,9 +27658,9 @@ }, { "type": "CommentBlock", - "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A Number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", - "start": 5736, - "end": 5913, + "value": "*\n * The total amount of pages.\n * Returns null if total wasn't provided.\n * A number representing current page otherwise.\n * @access public\n * @type {?Number}\n ", + "start": 5735, + "end": 5912, "loc": { "start": { "line": 252, @@ -27685,8 +27685,8 @@ "binop": null }, "value": "get", - "start": 5916, - "end": 5919, + "start": 5915, + "end": 5918, "loc": { "start": { "line": 259, @@ -27711,8 +27711,8 @@ "binop": null }, "value": "totalPages", - "start": 5920, - "end": 5930, + "start": 5919, + "end": 5929, "loc": { "start": { "line": 259, @@ -27736,8 +27736,8 @@ "postfix": false, "binop": null }, - "start": 5930, - "end": 5931, + "start": 5929, + "end": 5930, "loc": { "start": { "line": 259, @@ -27761,8 +27761,8 @@ "postfix": false, "binop": null }, - "start": 5931, - "end": 5932, + "start": 5930, + "end": 5931, "loc": { "start": { "line": 259, @@ -27786,8 +27786,8 @@ "postfix": false, "binop": null }, - "start": 5933, - "end": 5934, + "start": 5932, + "end": 5933, "loc": { "start": { "line": 259, @@ -27814,8 +27814,8 @@ "updateContext": null }, "value": "if", - "start": 5939, - "end": 5941, + "start": 5938, + "end": 5940, "loc": { "start": { "line": 260, @@ -27839,8 +27839,8 @@ "postfix": false, "binop": null }, - "start": 5942, - "end": 5943, + "start": 5941, + "end": 5942, "loc": { "start": { "line": 260, @@ -27867,8 +27867,8 @@ "updateContext": null }, "value": "this", - "start": 5943, - "end": 5947, + "start": 5942, + "end": 5946, "loc": { "start": { "line": 260, @@ -27893,8 +27893,8 @@ "binop": null, "updateContext": null }, - "start": 5947, - "end": 5948, + "start": 5946, + "end": 5947, "loc": { "start": { "line": 260, @@ -27919,8 +27919,8 @@ "binop": null }, "value": "total", - "start": 5948, - "end": 5953, + "start": 5947, + "end": 5952, "loc": { "start": { "line": 260, @@ -27946,8 +27946,8 @@ "updateContext": null }, "value": "===", - "start": 5954, - "end": 5957, + "start": 5953, + "end": 5956, "loc": { "start": { "line": 260, @@ -27974,8 +27974,8 @@ "updateContext": null }, "value": "null", - "start": 5958, - "end": 5962, + "start": 5957, + "end": 5961, "loc": { "start": { "line": 260, @@ -28001,8 +28001,8 @@ "updateContext": null }, "value": "||", - "start": 5963, - "end": 5965, + "start": 5962, + "end": 5964, "loc": { "start": { "line": 260, @@ -28028,8 +28028,8 @@ "updateContext": null }, "value": "!", - "start": 5966, - "end": 5967, + "start": 5965, + "end": 5966, "loc": { "start": { "line": 260, @@ -28056,8 +28056,8 @@ "updateContext": null }, "value": "this", - "start": 5967, - "end": 5971, + "start": 5966, + "end": 5970, "loc": { "start": { "line": 260, @@ -28082,8 +28082,8 @@ "binop": null, "updateContext": null }, - "start": 5971, - "end": 5972, + "start": 5970, + "end": 5971, "loc": { "start": { "line": 260, @@ -28108,8 +28108,8 @@ "binop": null }, "value": "size", - "start": 5972, - "end": 5976, + "start": 5971, + "end": 5975, "loc": { "start": { "line": 260, @@ -28133,8 +28133,8 @@ "postfix": false, "binop": null }, - "start": 5976, - "end": 5977, + "start": 5975, + "end": 5976, "loc": { "start": { "line": 260, @@ -28158,8 +28158,8 @@ "postfix": false, "binop": null }, - "start": 5978, - "end": 5979, + "start": 5977, + "end": 5978, "loc": { "start": { "line": 260, @@ -28186,8 +28186,8 @@ "updateContext": null }, "value": "return", - "start": 5986, - "end": 5992, + "start": 5985, + "end": 5991, "loc": { "start": { "line": 261, @@ -28214,8 +28214,8 @@ "updateContext": null }, "value": "null", - "start": 5993, - "end": 5997, + "start": 5992, + "end": 5996, "loc": { "start": { "line": 261, @@ -28240,8 +28240,8 @@ "binop": null, "updateContext": null }, - "start": 5997, - "end": 5998, + "start": 5996, + "end": 5997, "loc": { "start": { "line": 261, @@ -28265,8 +28265,8 @@ "postfix": false, "binop": null }, - "start": 6003, - "end": 6004, + "start": 6002, + "end": 6003, "loc": { "start": { "line": 262, @@ -28293,8 +28293,8 @@ "updateContext": null }, "value": "if", - "start": 6009, - "end": 6011, + "start": 6008, + "end": 6010, "loc": { "start": { "line": 263, @@ -28318,8 +28318,8 @@ "postfix": false, "binop": null }, - "start": 6012, - "end": 6013, + "start": 6011, + "end": 6012, "loc": { "start": { "line": 263, @@ -28346,8 +28346,8 @@ "updateContext": null }, "value": "this", - "start": 6013, - "end": 6017, + "start": 6012, + "end": 6016, "loc": { "start": { "line": 263, @@ -28372,8 +28372,8 @@ "binop": null, "updateContext": null }, - "start": 6017, - "end": 6018, + "start": 6016, + "end": 6017, "loc": { "start": { "line": 263, @@ -28398,8 +28398,8 @@ "binop": null }, "value": "total", - "start": 6018, - "end": 6023, + "start": 6017, + "end": 6022, "loc": { "start": { "line": 263, @@ -28425,8 +28425,8 @@ "updateContext": null }, "value": "===", - "start": 6024, - "end": 6027, + "start": 6023, + "end": 6026, "loc": { "start": { "line": 263, @@ -28452,8 +28452,8 @@ "updateContext": null }, "value": 0, - "start": 6028, - "end": 6029, + "start": 6027, + "end": 6028, "loc": { "start": { "line": 263, @@ -28477,8 +28477,8 @@ "postfix": false, "binop": null }, - "start": 6029, - "end": 6030, + "start": 6028, + "end": 6029, "loc": { "start": { "line": 263, @@ -28502,8 +28502,8 @@ "postfix": false, "binop": null }, - "start": 6031, - "end": 6032, + "start": 6030, + "end": 6031, "loc": { "start": { "line": 263, @@ -28530,8 +28530,8 @@ "updateContext": null }, "value": "return", - "start": 6039, - "end": 6045, + "start": 6038, + "end": 6044, "loc": { "start": { "line": 264, @@ -28557,8 +28557,8 @@ "updateContext": null }, "value": 0, - "start": 6046, - "end": 6047, + "start": 6045, + "end": 6046, "loc": { "start": { "line": 264, @@ -28583,8 +28583,8 @@ "binop": null, "updateContext": null }, - "start": 6047, - "end": 6048, + "start": 6046, + "end": 6047, "loc": { "start": { "line": 264, @@ -28608,8 +28608,8 @@ "postfix": false, "binop": null }, - "start": 6053, - "end": 6054, + "start": 6052, + "end": 6053, "loc": { "start": { "line": 265, @@ -28636,8 +28636,8 @@ "updateContext": null }, "value": "return", - "start": 6059, - "end": 6065, + "start": 6058, + "end": 6064, "loc": { "start": { "line": 266, @@ -28662,8 +28662,8 @@ "binop": null }, "value": "Math", - "start": 6066, - "end": 6070, + "start": 6065, + "end": 6069, "loc": { "start": { "line": 266, @@ -28688,8 +28688,8 @@ "binop": null, "updateContext": null }, - "start": 6070, - "end": 6071, + "start": 6069, + "end": 6070, "loc": { "start": { "line": 266, @@ -28714,8 +28714,8 @@ "binop": null }, "value": "ceil", - "start": 6071, - "end": 6075, + "start": 6070, + "end": 6074, "loc": { "start": { "line": 266, @@ -28739,8 +28739,8 @@ "postfix": false, "binop": null }, - "start": 6075, - "end": 6076, + "start": 6074, + "end": 6075, "loc": { "start": { "line": 266, @@ -28767,8 +28767,8 @@ "updateContext": null }, "value": "this", - "start": 6076, - "end": 6080, + "start": 6075, + "end": 6079, "loc": { "start": { "line": 266, @@ -28793,8 +28793,8 @@ "binop": null, "updateContext": null }, - "start": 6080, - "end": 6081, + "start": 6079, + "end": 6080, "loc": { "start": { "line": 266, @@ -28819,8 +28819,8 @@ "binop": null }, "value": "total", - "start": 6081, - "end": 6086, + "start": 6080, + "end": 6085, "loc": { "start": { "line": 266, @@ -28846,8 +28846,8 @@ "updateContext": null }, "value": "/", - "start": 6087, - "end": 6088, + "start": 6086, + "end": 6087, "loc": { "start": { "line": 266, @@ -28874,8 +28874,8 @@ "updateContext": null }, "value": "this", - "start": 6089, - "end": 6093, + "start": 6088, + "end": 6092, "loc": { "start": { "line": 266, @@ -28900,8 +28900,8 @@ "binop": null, "updateContext": null }, - "start": 6093, - "end": 6094, + "start": 6092, + "end": 6093, "loc": { "start": { "line": 266, @@ -28926,8 +28926,8 @@ "binop": null }, "value": "size", - "start": 6094, - "end": 6098, + "start": 6093, + "end": 6097, "loc": { "start": { "line": 266, @@ -28951,8 +28951,8 @@ "postfix": false, "binop": null }, - "start": 6098, - "end": 6099, + "start": 6097, + "end": 6098, "loc": { "start": { "line": 266, @@ -28977,8 +28977,8 @@ "binop": null, "updateContext": null }, - "start": 6099, - "end": 6100, + "start": 6098, + "end": 6099, "loc": { "start": { "line": 266, @@ -29002,8 +29002,8 @@ "postfix": false, "binop": null }, - "start": 6103, - "end": 6104, + "start": 6102, + "end": 6103, "loc": { "start": { "line": 267, @@ -29018,8 +29018,8 @@ { "type": "CommentBlock", "value": "*\n * Methods\n ", - "start": 6108, - "end": 6130, + "start": 6107, + "end": 6129, "loc": { "start": { "line": 269, @@ -29034,8 +29034,8 @@ { "type": "CommentBlock", "value": "*\n * Updates the datasource, using the currently\n * configured search text, sort settings, and\n * pagination options.\n * @access public\n * @return {Promise} A promise object, resolved when the update is completed.\n ", - "start": 6134, - "end": 6365, + "start": 6133, + "end": 6364, "loc": { "start": { "line": 273, @@ -29060,8 +29060,8 @@ "binop": null }, "value": "async", - "start": 6368, - "end": 6373, + "start": 6367, + "end": 6372, "loc": { "start": { "line": 280, @@ -29086,8 +29086,8 @@ "binop": null }, "value": "update", - "start": 6374, - "end": 6380, + "start": 6373, + "end": 6379, "loc": { "start": { "line": 280, @@ -29111,8 +29111,8 @@ "postfix": false, "binop": null }, - "start": 6380, - "end": 6381, + "start": 6379, + "end": 6380, "loc": { "start": { "line": 280, @@ -29136,8 +29136,8 @@ "postfix": false, "binop": null }, - "start": 6381, - "end": 6382, + "start": 6380, + "end": 6381, "loc": { "start": { "line": 280, @@ -29161,8 +29161,8 @@ "postfix": false, "binop": null }, - "start": 6383, - "end": 6384, + "start": 6382, + "end": 6383, "loc": { "start": { "line": 280, @@ -29189,8 +29189,8 @@ "updateContext": null }, "value": "this", - "start": 6389, - "end": 6393, + "start": 6388, + "end": 6392, "loc": { "start": { "line": 281, @@ -29215,8 +29215,8 @@ "binop": null, "updateContext": null }, - "start": 6393, - "end": 6394, + "start": 6392, + "end": 6393, "loc": { "start": { "line": 281, @@ -29241,8 +29241,8 @@ "binop": null }, "value": "loading", - "start": 6394, - "end": 6401, + "start": 6393, + "end": 6400, "loc": { "start": { "line": 281, @@ -29268,8 +29268,8 @@ "updateContext": null }, "value": "=", - "start": 6402, - "end": 6403, + "start": 6401, + "end": 6402, "loc": { "start": { "line": 281, @@ -29296,8 +29296,8 @@ "updateContext": null }, "value": "true", - "start": 6404, - "end": 6408, + "start": 6403, + "end": 6407, "loc": { "start": { "line": 281, @@ -29322,8 +29322,8 @@ "binop": null, "updateContext": null }, - "start": 6408, - "end": 6409, + "start": 6407, + "end": 6408, "loc": { "start": { "line": 281, @@ -29350,8 +29350,8 @@ "updateContext": null }, "value": "try", - "start": 6414, - "end": 6417, + "start": 6413, + "end": 6416, "loc": { "start": { "line": 282, @@ -29375,8 +29375,8 @@ "postfix": false, "binop": null }, - "start": 6418, - "end": 6419, + "start": 6417, + "end": 6418, "loc": { "start": { "line": 282, @@ -29403,8 +29403,8 @@ "updateContext": null }, "value": "const", - "start": 6426, - "end": 6431, + "start": 6425, + "end": 6430, "loc": { "start": { "line": 283, @@ -29429,8 +29429,8 @@ "binop": null }, "value": "updateStartArgs", - "start": 6432, - "end": 6447, + "start": 6431, + "end": 6446, "loc": { "start": { "line": 283, @@ -29456,8 +29456,8 @@ "updateContext": null }, "value": "=", - "start": 6448, - "end": 6449, + "start": 6447, + "end": 6448, "loc": { "start": { "line": 283, @@ -29481,8 +29481,8 @@ "postfix": false, "binop": null }, - "start": 6450, - "end": 6451, + "start": 6449, + "end": 6450, "loc": { "start": { "line": 283, @@ -29507,8 +29507,8 @@ "binop": null }, "value": "sender", - "start": 6460, - "end": 6466, + "start": 6459, + "end": 6465, "loc": { "start": { "line": 284, @@ -29533,8 +29533,8 @@ "binop": null, "updateContext": null }, - "start": 6466, - "end": 6467, + "start": 6465, + "end": 6466, "loc": { "start": { "line": 284, @@ -29561,8 +29561,8 @@ "updateContext": null }, "value": "this", - "start": 6468, - "end": 6472, + "start": 6467, + "end": 6471, "loc": { "start": { "line": 284, @@ -29587,8 +29587,8 @@ "binop": null, "updateContext": null }, - "start": 6472, - "end": 6473, + "start": 6471, + "end": 6472, "loc": { "start": { "line": 284, @@ -29613,8 +29613,8 @@ "binop": null }, "value": "prevented", - "start": 6482, - "end": 6491, + "start": 6481, + "end": 6490, "loc": { "start": { "line": 285, @@ -29639,8 +29639,8 @@ "binop": null, "updateContext": null }, - "start": 6491, - "end": 6492, + "start": 6490, + "end": 6491, "loc": { "start": { "line": 285, @@ -29667,8 +29667,8 @@ "updateContext": null }, "value": "false", - "start": 6493, - "end": 6498, + "start": 6492, + "end": 6497, "loc": { "start": { "line": 285, @@ -29693,8 +29693,8 @@ "binop": null, "updateContext": null }, - "start": 6498, - "end": 6499, + "start": 6497, + "end": 6498, "loc": { "start": { "line": 285, @@ -29719,8 +29719,8 @@ "binop": null }, "value": "preventDefault", - "start": 6508, - "end": 6522, + "start": 6507, + "end": 6521, "loc": { "start": { "line": 286, @@ -29744,8 +29744,8 @@ "postfix": false, "binop": null }, - "start": 6522, - "end": 6523, + "start": 6521, + "end": 6522, "loc": { "start": { "line": 286, @@ -29769,8 +29769,8 @@ "postfix": false, "binop": null }, - "start": 6523, - "end": 6524, + "start": 6522, + "end": 6523, "loc": { "start": { "line": 286, @@ -29794,8 +29794,8 @@ "postfix": false, "binop": null }, - "start": 6525, - "end": 6526, + "start": 6524, + "end": 6525, "loc": { "start": { "line": 286, @@ -29820,8 +29820,8 @@ "binop": null }, "value": "updateStartArgs", - "start": 6537, - "end": 6552, + "start": 6536, + "end": 6551, "loc": { "start": { "line": 287, @@ -29846,8 +29846,8 @@ "binop": null, "updateContext": null }, - "start": 6552, - "end": 6553, + "start": 6551, + "end": 6552, "loc": { "start": { "line": 287, @@ -29872,8 +29872,8 @@ "binop": null }, "value": "prevented", - "start": 6553, - "end": 6562, + "start": 6552, + "end": 6561, "loc": { "start": { "line": 287, @@ -29899,8 +29899,8 @@ "updateContext": null }, "value": "=", - "start": 6563, - "end": 6564, + "start": 6562, + "end": 6563, "loc": { "start": { "line": 287, @@ -29927,8 +29927,8 @@ "updateContext": null }, "value": "true", - "start": 6565, - "end": 6569, + "start": 6564, + "end": 6568, "loc": { "start": { "line": 287, @@ -29953,8 +29953,8 @@ "binop": null, "updateContext": null }, - "start": 6569, - "end": 6570, + "start": 6568, + "end": 6569, "loc": { "start": { "line": 287, @@ -29978,8 +29978,8 @@ "postfix": false, "binop": null }, - "start": 6579, - "end": 6580, + "start": 6578, + "end": 6579, "loc": { "start": { "line": 288, @@ -30004,8 +30004,8 @@ "binop": null, "updateContext": null }, - "start": 6580, - "end": 6581, + "start": 6579, + "end": 6580, "loc": { "start": { "line": 288, @@ -30029,8 +30029,8 @@ "postfix": false, "binop": null }, - "start": 6588, - "end": 6589, + "start": 6587, + "end": 6588, "loc": { "start": { "line": 289, @@ -30055,8 +30055,8 @@ "binop": null, "updateContext": null }, - "start": 6589, - "end": 6590, + "start": 6588, + "end": 6589, "loc": { "start": { "line": 289, @@ -30083,8 +30083,8 @@ "updateContext": null }, "value": "this", - "start": 6597, - "end": 6601, + "start": 6596, + "end": 6600, "loc": { "start": { "line": 290, @@ -30109,8 +30109,8 @@ "binop": null, "updateContext": null }, - "start": 6601, - "end": 6602, + "start": 6600, + "end": 6601, "loc": { "start": { "line": 290, @@ -30135,8 +30135,8 @@ "binop": null }, "value": "emit", - "start": 6602, - "end": 6606, + "start": 6601, + "end": 6605, "loc": { "start": { "line": 290, @@ -30160,8 +30160,8 @@ "postfix": false, "binop": null }, - "start": 6606, - "end": 6607, + "start": 6605, + "end": 6606, "loc": { "start": { "line": 290, @@ -30187,8 +30187,8 @@ "updateContext": null }, "value": "updatestart", - "start": 6607, - "end": 6620, + "start": 6606, + "end": 6619, "loc": { "start": { "line": 290, @@ -30213,8 +30213,8 @@ "binop": null, "updateContext": null }, - "start": 6620, - "end": 6621, + "start": 6619, + "end": 6620, "loc": { "start": { "line": 290, @@ -30239,8 +30239,8 @@ "binop": null }, "value": "updateStartArgs", - "start": 6622, - "end": 6637, + "start": 6621, + "end": 6636, "loc": { "start": { "line": 290, @@ -30264,8 +30264,8 @@ "postfix": false, "binop": null }, - "start": 6637, - "end": 6638, + "start": 6636, + "end": 6637, "loc": { "start": { "line": 290, @@ -30290,8 +30290,8 @@ "binop": null, "updateContext": null }, - "start": 6638, - "end": 6639, + "start": 6637, + "end": 6638, "loc": { "start": { "line": 290, @@ -30318,8 +30318,8 @@ "updateContext": null }, "value": "if", - "start": 6646, - "end": 6648, + "start": 6645, + "end": 6647, "loc": { "start": { "line": 291, @@ -30343,8 +30343,8 @@ "postfix": false, "binop": null }, - "start": 6649, - "end": 6650, + "start": 6648, + "end": 6649, "loc": { "start": { "line": 291, @@ -30369,8 +30369,8 @@ "binop": null }, "value": "updateStartArgs", - "start": 6650, - "end": 6665, + "start": 6649, + "end": 6664, "loc": { "start": { "line": 291, @@ -30395,8 +30395,8 @@ "binop": null, "updateContext": null }, - "start": 6665, - "end": 6666, + "start": 6664, + "end": 6665, "loc": { "start": { "line": 291, @@ -30421,8 +30421,8 @@ "binop": null }, "value": "prevented", - "start": 6666, - "end": 6675, + "start": 6665, + "end": 6674, "loc": { "start": { "line": 291, @@ -30446,8 +30446,8 @@ "postfix": false, "binop": null }, - "start": 6675, - "end": 6676, + "start": 6674, + "end": 6675, "loc": { "start": { "line": 291, @@ -30471,8 +30471,8 @@ "postfix": false, "binop": null }, - "start": 6677, - "end": 6678, + "start": 6676, + "end": 6677, "loc": { "start": { "line": 291, @@ -30499,8 +30499,8 @@ "updateContext": null }, "value": "return", - "start": 6687, - "end": 6693, + "start": 6686, + "end": 6692, "loc": { "start": { "line": 292, @@ -30527,8 +30527,8 @@ "updateContext": null }, "value": "null", - "start": 6694, - "end": 6698, + "start": 6693, + "end": 6697, "loc": { "start": { "line": 292, @@ -30553,8 +30553,8 @@ "binop": null, "updateContext": null }, - "start": 6698, - "end": 6699, + "start": 6697, + "end": 6698, "loc": { "start": { "line": 292, @@ -30578,8 +30578,8 @@ "postfix": false, "binop": null }, - "start": 6706, - "end": 6707, + "start": 6705, + "end": 6706, "loc": { "start": { "line": 293, @@ -30606,8 +30606,8 @@ "updateContext": null }, "value": "const", - "start": 6714, - "end": 6719, + "start": 6713, + "end": 6718, "loc": { "start": { "line": 294, @@ -30632,8 +30632,8 @@ "binop": null }, "value": "updatedResponse", - "start": 6720, - "end": 6735, + "start": 6719, + "end": 6734, "loc": { "start": { "line": 294, @@ -30659,8 +30659,8 @@ "updateContext": null }, "value": "=", - "start": 6736, - "end": 6737, + "start": 6735, + "end": 6736, "loc": { "start": { "line": 294, @@ -30685,8 +30685,8 @@ "binop": null }, "value": "await", - "start": 6738, - "end": 6743, + "start": 6737, + "end": 6742, "loc": { "start": { "line": 294, @@ -30713,8 +30713,8 @@ "updateContext": null }, "value": "this", - "start": 6744, - "end": 6748, + "start": 6743, + "end": 6747, "loc": { "start": { "line": 294, @@ -30739,8 +30739,8 @@ "binop": null, "updateContext": null }, - "start": 6748, - "end": 6749, + "start": 6747, + "end": 6748, "loc": { "start": { "line": 294, @@ -30765,8 +30765,8 @@ "binop": null }, "value": "_update", - "start": 6749, - "end": 6756, + "start": 6748, + "end": 6755, "loc": { "start": { "line": 294, @@ -30790,8 +30790,8 @@ "postfix": false, "binop": null }, - "start": 6756, - "end": 6757, + "start": 6755, + "end": 6756, "loc": { "start": { "line": 294, @@ -30815,8 +30815,8 @@ "postfix": false, "binop": null }, - "start": 6757, - "end": 6758, + "start": 6756, + "end": 6757, "loc": { "start": { "line": 294, @@ -30841,8 +30841,8 @@ "binop": null, "updateContext": null }, - "start": 6758, - "end": 6759, + "start": 6757, + "end": 6758, "loc": { "start": { "line": 294, @@ -30869,8 +30869,8 @@ "updateContext": null }, "value": "this", - "start": 6766, - "end": 6770, + "start": 6765, + "end": 6769, "loc": { "start": { "line": 295, @@ -30895,8 +30895,8 @@ "binop": null, "updateContext": null }, - "start": 6770, - "end": 6771, + "start": 6769, + "end": 6770, "loc": { "start": { "line": 295, @@ -30921,8 +30921,8 @@ "binop": null }, "value": "emit", - "start": 6771, - "end": 6775, + "start": 6770, + "end": 6774, "loc": { "start": { "line": 295, @@ -30946,8 +30946,8 @@ "postfix": false, "binop": null }, - "start": 6775, - "end": 6776, + "start": 6774, + "end": 6775, "loc": { "start": { "line": 295, @@ -30973,8 +30973,8 @@ "updateContext": null }, "value": "updateend", - "start": 6776, - "end": 6787, + "start": 6775, + "end": 6786, "loc": { "start": { "line": 295, @@ -30999,8 +30999,8 @@ "binop": null, "updateContext": null }, - "start": 6787, - "end": 6788, + "start": 6786, + "end": 6787, "loc": { "start": { "line": 295, @@ -31024,8 +31024,8 @@ "postfix": false, "binop": null }, - "start": 6789, - "end": 6790, + "start": 6788, + "end": 6789, "loc": { "start": { "line": 295, @@ -31050,8 +31050,8 @@ "binop": null }, "value": "sender", - "start": 6799, - "end": 6805, + "start": 6798, + "end": 6804, "loc": { "start": { "line": 296, @@ -31076,8 +31076,8 @@ "binop": null, "updateContext": null }, - "start": 6805, - "end": 6806, + "start": 6804, + "end": 6805, "loc": { "start": { "line": 296, @@ -31104,8 +31104,8 @@ "updateContext": null }, "value": "this", - "start": 6807, - "end": 6811, + "start": 6806, + "end": 6810, "loc": { "start": { "line": 296, @@ -31130,8 +31130,8 @@ "binop": null, "updateContext": null }, - "start": 6811, - "end": 6812, + "start": 6810, + "end": 6811, "loc": { "start": { "line": 296, @@ -31155,8 +31155,8 @@ "postfix": false, "binop": null }, - "start": 6819, - "end": 6820, + "start": 6818, + "end": 6819, "loc": { "start": { "line": 297, @@ -31180,8 +31180,8 @@ "postfix": false, "binop": null }, - "start": 6820, - "end": 6821, + "start": 6819, + "end": 6820, "loc": { "start": { "line": 297, @@ -31206,8 +31206,8 @@ "binop": null, "updateContext": null }, - "start": 6821, - "end": 6822, + "start": 6820, + "end": 6821, "loc": { "start": { "line": 297, @@ -31234,8 +31234,8 @@ "updateContext": null }, "value": "this", - "start": 6829, - "end": 6833, + "start": 6828, + "end": 6832, "loc": { "start": { "line": 298, @@ -31260,8 +31260,8 @@ "binop": null, "updateContext": null }, - "start": 6833, - "end": 6834, + "start": 6832, + "end": 6833, "loc": { "start": { "line": 298, @@ -31286,8 +31286,8 @@ "binop": null }, "value": "loading", - "start": 6834, - "end": 6841, + "start": 6833, + "end": 6840, "loc": { "start": { "line": 298, @@ -31313,8 +31313,8 @@ "updateContext": null }, "value": "=", - "start": 6842, - "end": 6843, + "start": 6841, + "end": 6842, "loc": { "start": { "line": 298, @@ -31341,8 +31341,8 @@ "updateContext": null }, "value": "false", - "start": 6844, - "end": 6849, + "start": 6843, + "end": 6848, "loc": { "start": { "line": 298, @@ -31367,8 +31367,8 @@ "binop": null, "updateContext": null }, - "start": 6849, - "end": 6850, + "start": 6848, + "end": 6849, "loc": { "start": { "line": 298, @@ -31395,8 +31395,8 @@ "updateContext": null }, "value": "return", - "start": 6857, - "end": 6863, + "start": 6856, + "end": 6862, "loc": { "start": { "line": 299, @@ -31421,8 +31421,8 @@ "binop": null }, "value": "updatedResponse", - "start": 6864, - "end": 6879, + "start": 6863, + "end": 6878, "loc": { "start": { "line": 299, @@ -31447,8 +31447,8 @@ "binop": null, "updateContext": null }, - "start": 6879, - "end": 6880, + "start": 6878, + "end": 6879, "loc": { "start": { "line": 299, @@ -31472,8 +31472,8 @@ "postfix": false, "binop": null }, - "start": 6885, - "end": 6886, + "start": 6884, + "end": 6885, "loc": { "start": { "line": 300, @@ -31500,8 +31500,8 @@ "updateContext": null }, "value": "catch", - "start": 6887, - "end": 6892, + "start": 6886, + "end": 6891, "loc": { "start": { "line": 300, @@ -31525,8 +31525,8 @@ "postfix": false, "binop": null }, - "start": 6893, - "end": 6894, + "start": 6892, + "end": 6893, "loc": { "start": { "line": 300, @@ -31551,8 +31551,8 @@ "binop": null }, "value": "ex", - "start": 6894, - "end": 6896, + "start": 6893, + "end": 6895, "loc": { "start": { "line": 300, @@ -31576,8 +31576,8 @@ "postfix": false, "binop": null }, - "start": 6896, - "end": 6897, + "start": 6895, + "end": 6896, "loc": { "start": { "line": 300, @@ -31601,8 +31601,8 @@ "postfix": false, "binop": null }, - "start": 6898, - "end": 6899, + "start": 6897, + "end": 6898, "loc": { "start": { "line": 300, @@ -31629,8 +31629,8 @@ "updateContext": null }, "value": "this", - "start": 6906, - "end": 6910, + "start": 6905, + "end": 6909, "loc": { "start": { "line": 301, @@ -31655,8 +31655,8 @@ "binop": null, "updateContext": null }, - "start": 6910, - "end": 6911, + "start": 6909, + "end": 6910, "loc": { "start": { "line": 301, @@ -31681,8 +31681,8 @@ "binop": null }, "value": "loading", - "start": 6911, - "end": 6918, + "start": 6910, + "end": 6917, "loc": { "start": { "line": 301, @@ -31708,8 +31708,8 @@ "updateContext": null }, "value": "=", - "start": 6919, - "end": 6920, + "start": 6918, + "end": 6919, "loc": { "start": { "line": 301, @@ -31736,8 +31736,8 @@ "updateContext": null }, "value": "false", - "start": 6921, - "end": 6926, + "start": 6920, + "end": 6925, "loc": { "start": { "line": 301, @@ -31762,8 +31762,8 @@ "binop": null, "updateContext": null }, - "start": 6926, - "end": 6927, + "start": 6925, + "end": 6926, "loc": { "start": { "line": 301, @@ -31790,8 +31790,8 @@ "updateContext": null }, "value": "throw", - "start": 6934, - "end": 6939, + "start": 6933, + "end": 6938, "loc": { "start": { "line": 302, @@ -31816,8 +31816,8 @@ "binop": null }, "value": "ex", - "start": 6940, - "end": 6942, + "start": 6939, + "end": 6941, "loc": { "start": { "line": 302, @@ -31842,8 +31842,8 @@ "binop": null, "updateContext": null }, - "start": 6942, - "end": 6943, + "start": 6941, + "end": 6942, "loc": { "start": { "line": 302, @@ -31867,8 +31867,8 @@ "postfix": false, "binop": null }, - "start": 6948, - "end": 6949, + "start": 6947, + "end": 6948, "loc": { "start": { "line": 303, @@ -31892,8 +31892,8 @@ "postfix": false, "binop": null }, - "start": 6952, - "end": 6953, + "start": 6951, + "end": 6952, "loc": { "start": { "line": 304, @@ -31908,8 +31908,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the specified page, and update the datasource accordingly.\n * @access public\n * @param {Number} pageNum - The new page to traverse to.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to specified page.\n * False otherwise.\n ", - "start": 6957, - "end": 7290, + "start": 6956, + "end": 7289, "loc": { "start": { "line": 306, @@ -31934,8 +31934,8 @@ "binop": null }, "value": "async", - "start": 7293, - "end": 7298, + "start": 7292, + "end": 7297, "loc": { "start": { "line": 314, @@ -31960,8 +31960,8 @@ "binop": null }, "value": "goToPage", - "start": 7299, - "end": 7307, + "start": 7298, + "end": 7306, "loc": { "start": { "line": 314, @@ -31985,8 +31985,8 @@ "postfix": false, "binop": null }, - "start": 7307, - "end": 7308, + "start": 7306, + "end": 7307, "loc": { "start": { "line": 314, @@ -32011,8 +32011,8 @@ "binop": null }, "value": "pageNum", - "start": 7308, - "end": 7315, + "start": 7307, + "end": 7314, "loc": { "start": { "line": 314, @@ -32036,8 +32036,8 @@ "postfix": false, "binop": null }, - "start": 7315, - "end": 7316, + "start": 7314, + "end": 7315, "loc": { "start": { "line": 314, @@ -32061,8 +32061,8 @@ "postfix": false, "binop": null }, - "start": 7317, - "end": 7318, + "start": 7316, + "end": 7317, "loc": { "start": { "line": 314, @@ -32089,8 +32089,8 @@ "updateContext": null }, "value": "if", - "start": 7323, - "end": 7325, + "start": 7322, + "end": 7324, "loc": { "start": { "line": 315, @@ -32114,8 +32114,8 @@ "postfix": false, "binop": null }, - "start": 7326, - "end": 7327, + "start": 7325, + "end": 7326, "loc": { "start": { "line": 315, @@ -32140,8 +32140,8 @@ "binop": null }, "value": "pageNum", - "start": 7327, - "end": 7334, + "start": 7326, + "end": 7333, "loc": { "start": { "line": 315, @@ -32167,8 +32167,8 @@ "updateContext": null }, "value": ">", - "start": 7335, - "end": 7336, + "start": 7334, + "end": 7335, "loc": { "start": { "line": 315, @@ -32194,8 +32194,8 @@ "updateContext": null }, "value": 0, - "start": 7337, - "end": 7338, + "start": 7336, + "end": 7337, "loc": { "start": { "line": 315, @@ -32221,8 +32221,8 @@ "updateContext": null }, "value": "&&", - "start": 7339, - "end": 7341, + "start": 7338, + "end": 7340, "loc": { "start": { "line": 315, @@ -32247,8 +32247,8 @@ "binop": null }, "value": "pageNum", - "start": 7342, - "end": 7349, + "start": 7341, + "end": 7348, "loc": { "start": { "line": 315, @@ -32274,8 +32274,8 @@ "updateContext": null }, "value": "<=", - "start": 7350, - "end": 7352, + "start": 7349, + "end": 7351, "loc": { "start": { "line": 315, @@ -32302,8 +32302,8 @@ "updateContext": null }, "value": "this", - "start": 7353, - "end": 7357, + "start": 7352, + "end": 7356, "loc": { "start": { "line": 315, @@ -32328,8 +32328,8 @@ "binop": null, "updateContext": null }, - "start": 7357, - "end": 7358, + "start": 7356, + "end": 7357, "loc": { "start": { "line": 315, @@ -32354,8 +32354,8 @@ "binop": null }, "value": "totalPages", - "start": 7358, - "end": 7368, + "start": 7357, + "end": 7367, "loc": { "start": { "line": 315, @@ -32379,8 +32379,8 @@ "postfix": false, "binop": null }, - "start": 7368, - "end": 7369, + "start": 7367, + "end": 7368, "loc": { "start": { "line": 315, @@ -32404,8 +32404,8 @@ "postfix": false, "binop": null }, - "start": 7370, - "end": 7371, + "start": 7369, + "end": 7370, "loc": { "start": { "line": 315, @@ -32432,8 +32432,8 @@ "updateContext": null }, "value": "this", - "start": 7378, - "end": 7382, + "start": 7377, + "end": 7381, "loc": { "start": { "line": 316, @@ -32458,8 +32458,8 @@ "binop": null, "updateContext": null }, - "start": 7382, - "end": 7383, + "start": 7381, + "end": 7382, "loc": { "start": { "line": 316, @@ -32484,8 +32484,8 @@ "binop": null }, "value": "page", - "start": 7383, - "end": 7387, + "start": 7382, + "end": 7386, "loc": { "start": { "line": 316, @@ -32511,8 +32511,8 @@ "updateContext": null }, "value": "=", - "start": 7388, - "end": 7389, + "start": 7387, + "end": 7388, "loc": { "start": { "line": 316, @@ -32537,8 +32537,8 @@ "binop": null }, "value": "pageNum", - "start": 7390, - "end": 7397, + "start": 7389, + "end": 7396, "loc": { "start": { "line": 316, @@ -32563,8 +32563,8 @@ "binop": null, "updateContext": null }, - "start": 7397, - "end": 7398, + "start": 7396, + "end": 7397, "loc": { "start": { "line": 316, @@ -32589,8 +32589,8 @@ "binop": null }, "value": "await", - "start": 7405, - "end": 7410, + "start": 7404, + "end": 7409, "loc": { "start": { "line": 317, @@ -32617,8 +32617,8 @@ "updateContext": null }, "value": "this", - "start": 7411, - "end": 7415, + "start": 7410, + "end": 7414, "loc": { "start": { "line": 317, @@ -32643,8 +32643,8 @@ "binop": null, "updateContext": null }, - "start": 7415, - "end": 7416, + "start": 7414, + "end": 7415, "loc": { "start": { "line": 317, @@ -32669,8 +32669,8 @@ "binop": null }, "value": "update", - "start": 7416, - "end": 7422, + "start": 7415, + "end": 7421, "loc": { "start": { "line": 317, @@ -32694,8 +32694,8 @@ "postfix": false, "binop": null }, - "start": 7422, - "end": 7423, + "start": 7421, + "end": 7422, "loc": { "start": { "line": 317, @@ -32719,8 +32719,8 @@ "postfix": false, "binop": null }, - "start": 7423, - "end": 7424, + "start": 7422, + "end": 7423, "loc": { "start": { "line": 317, @@ -32745,8 +32745,8 @@ "binop": null, "updateContext": null }, - "start": 7424, - "end": 7425, + "start": 7423, + "end": 7424, "loc": { "start": { "line": 317, @@ -32773,8 +32773,8 @@ "updateContext": null }, "value": "return", - "start": 7432, - "end": 7438, + "start": 7431, + "end": 7437, "loc": { "start": { "line": 318, @@ -32801,8 +32801,8 @@ "updateContext": null }, "value": "true", - "start": 7439, - "end": 7443, + "start": 7438, + "end": 7442, "loc": { "start": { "line": 318, @@ -32827,8 +32827,8 @@ "binop": null, "updateContext": null }, - "start": 7443, - "end": 7444, + "start": 7442, + "end": 7443, "loc": { "start": { "line": 318, @@ -32852,8 +32852,8 @@ "postfix": false, "binop": null }, - "start": 7449, - "end": 7450, + "start": 7448, + "end": 7449, "loc": { "start": { "line": 319, @@ -32880,8 +32880,8 @@ "updateContext": null }, "value": "return", - "start": 7455, - "end": 7461, + "start": 7454, + "end": 7460, "loc": { "start": { "line": 320, @@ -32908,8 +32908,8 @@ "updateContext": null }, "value": "false", - "start": 7462, - "end": 7467, + "start": 7461, + "end": 7466, "loc": { "start": { "line": 320, @@ -32934,8 +32934,8 @@ "binop": null, "updateContext": null }, - "start": 7467, - "end": 7468, + "start": 7466, + "end": 7467, "loc": { "start": { "line": 320, @@ -32959,8 +32959,8 @@ "postfix": false, "binop": null }, - "start": 7471, - "end": 7472, + "start": 7470, + "end": 7471, "loc": { "start": { "line": 321, @@ -32975,8 +32975,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the next page, and update the datasource accordingly.\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to next page.\n * False otherwise.\n ", - "start": 7476, - "end": 7718, + "start": 7475, + "end": 7717, "loc": { "start": { "line": 323, @@ -33001,8 +33001,8 @@ "binop": null }, "value": "async", - "start": 7721, - "end": 7726, + "start": 7720, + "end": 7725, "loc": { "start": { "line": 329, @@ -33027,8 +33027,8 @@ "binop": null }, "value": "nextPage", - "start": 7727, - "end": 7735, + "start": 7726, + "end": 7734, "loc": { "start": { "line": 329, @@ -33052,8 +33052,8 @@ "postfix": false, "binop": null }, - "start": 7735, - "end": 7736, + "start": 7734, + "end": 7735, "loc": { "start": { "line": 329, @@ -33077,8 +33077,8 @@ "postfix": false, "binop": null }, - "start": 7736, - "end": 7737, + "start": 7735, + "end": 7736, "loc": { "start": { "line": 329, @@ -33102,8 +33102,8 @@ "postfix": false, "binop": null }, - "start": 7738, - "end": 7739, + "start": 7737, + "end": 7738, "loc": { "start": { "line": 329, @@ -33130,8 +33130,8 @@ "updateContext": null }, "value": "return", - "start": 7744, - "end": 7750, + "start": 7743, + "end": 7749, "loc": { "start": { "line": 330, @@ -33158,8 +33158,8 @@ "updateContext": null }, "value": "this", - "start": 7751, - "end": 7755, + "start": 7750, + "end": 7754, "loc": { "start": { "line": 330, @@ -33184,8 +33184,8 @@ "binop": null, "updateContext": null }, - "start": 7755, - "end": 7756, + "start": 7754, + "end": 7755, "loc": { "start": { "line": 330, @@ -33210,8 +33210,8 @@ "binop": null }, "value": "goToPage", - "start": 7756, - "end": 7764, + "start": 7755, + "end": 7763, "loc": { "start": { "line": 330, @@ -33235,8 +33235,8 @@ "postfix": false, "binop": null }, - "start": 7764, - "end": 7765, + "start": 7763, + "end": 7764, "loc": { "start": { "line": 330, @@ -33263,8 +33263,8 @@ "updateContext": null }, "value": "this", - "start": 7765, - "end": 7769, + "start": 7764, + "end": 7768, "loc": { "start": { "line": 330, @@ -33289,8 +33289,8 @@ "binop": null, "updateContext": null }, - "start": 7769, - "end": 7770, + "start": 7768, + "end": 7769, "loc": { "start": { "line": 330, @@ -33315,8 +33315,8 @@ "binop": null }, "value": "page", - "start": 7770, - "end": 7774, + "start": 7769, + "end": 7773, "loc": { "start": { "line": 330, @@ -33342,8 +33342,8 @@ "updateContext": null }, "value": "+", - "start": 7775, - "end": 7776, + "start": 7774, + "end": 7775, "loc": { "start": { "line": 330, @@ -33369,8 +33369,8 @@ "updateContext": null }, "value": 1, - "start": 7777, - "end": 7778, + "start": 7776, + "end": 7777, "loc": { "start": { "line": 330, @@ -33394,8 +33394,8 @@ "postfix": false, "binop": null }, - "start": 7778, - "end": 7779, + "start": 7777, + "end": 7778, "loc": { "start": { "line": 330, @@ -33420,8 +33420,8 @@ "binop": null, "updateContext": null }, - "start": 7779, - "end": 7780, + "start": 7778, + "end": 7779, "loc": { "start": { "line": 330, @@ -33445,8 +33445,8 @@ "postfix": false, "binop": null }, - "start": 7783, - "end": 7784, + "start": 7782, + "end": 7783, "loc": { "start": { "line": 331, @@ -33461,8 +33461,8 @@ { "type": "CommentBlock", "value": "*\n * Traverse to the previous page, and update the datasource accordingly.\n * @access public\n * @return {Promise} A promise with a boolean data. True if\n * successfully traversed to previous page.\n * False otherwise.\n ", - "start": 7788, - "end": 8058, + "start": 7787, + "end": 8057, "loc": { "start": { "line": 333, @@ -33487,8 +33487,8 @@ "binop": null }, "value": "async", - "start": 8061, - "end": 8066, + "start": 8060, + "end": 8065, "loc": { "start": { "line": 340, @@ -33513,8 +33513,8 @@ "binop": null }, "value": "prevPage", - "start": 8067, - "end": 8075, + "start": 8066, + "end": 8074, "loc": { "start": { "line": 340, @@ -33538,8 +33538,8 @@ "postfix": false, "binop": null }, - "start": 8075, - "end": 8076, + "start": 8074, + "end": 8075, "loc": { "start": { "line": 340, @@ -33563,8 +33563,8 @@ "postfix": false, "binop": null }, - "start": 8076, - "end": 8077, + "start": 8075, + "end": 8076, "loc": { "start": { "line": 340, @@ -33588,8 +33588,8 @@ "postfix": false, "binop": null }, - "start": 8078, - "end": 8079, + "start": 8077, + "end": 8078, "loc": { "start": { "line": 340, @@ -33616,8 +33616,8 @@ "updateContext": null }, "value": "return", - "start": 8084, - "end": 8090, + "start": 8083, + "end": 8089, "loc": { "start": { "line": 341, @@ -33644,8 +33644,8 @@ "updateContext": null }, "value": "this", - "start": 8091, - "end": 8095, + "start": 8090, + "end": 8094, "loc": { "start": { "line": 341, @@ -33670,8 +33670,8 @@ "binop": null, "updateContext": null }, - "start": 8095, - "end": 8096, + "start": 8094, + "end": 8095, "loc": { "start": { "line": 341, @@ -33696,8 +33696,8 @@ "binop": null }, "value": "goToPage", - "start": 8096, - "end": 8104, + "start": 8095, + "end": 8103, "loc": { "start": { "line": 341, @@ -33721,8 +33721,8 @@ "postfix": false, "binop": null }, - "start": 8104, - "end": 8105, + "start": 8103, + "end": 8104, "loc": { "start": { "line": 341, @@ -33749,8 +33749,8 @@ "updateContext": null }, "value": "this", - "start": 8105, - "end": 8109, + "start": 8104, + "end": 8108, "loc": { "start": { "line": 341, @@ -33775,8 +33775,8 @@ "binop": null, "updateContext": null }, - "start": 8109, - "end": 8110, + "start": 8108, + "end": 8109, "loc": { "start": { "line": 341, @@ -33801,8 +33801,8 @@ "binop": null }, "value": "page", - "start": 8110, - "end": 8114, + "start": 8109, + "end": 8113, "loc": { "start": { "line": 341, @@ -33828,8 +33828,8 @@ "updateContext": null }, "value": "-", - "start": 8115, - "end": 8116, + "start": 8114, + "end": 8115, "loc": { "start": { "line": 341, @@ -33855,8 +33855,8 @@ "updateContext": null }, "value": 1, - "start": 8117, - "end": 8118, + "start": 8116, + "end": 8117, "loc": { "start": { "line": 341, @@ -33880,8 +33880,8 @@ "postfix": false, "binop": null }, - "start": 8118, - "end": 8119, + "start": 8117, + "end": 8118, "loc": { "start": { "line": 341, @@ -33906,8 +33906,8 @@ "binop": null, "updateContext": null }, - "start": 8119, - "end": 8120, + "start": 8118, + "end": 8119, "loc": { "start": { "line": 341, @@ -33931,8 +33931,8 @@ "postfix": false, "binop": null }, - "start": 8123, - "end": 8124, + "start": 8122, + "end": 8123, "loc": { "start": { "line": 342, @@ -33947,8 +33947,8 @@ { "type": "CommentBlock", "value": "*\n * Given a search text, filters the data accordingly.\n * @access public\n * @param {String} searchArguments - The search text to filter with, or\n * the search arguments object to filter\n * with specific column filtering.\n * @return {Promise} A promise object, resolved when the search is completed.\n ", - "start": 8128, - "end": 8518, + "start": 8127, + "end": 8517, "loc": { "start": { "line": 344, @@ -33973,8 +33973,8 @@ "binop": null }, "value": "async", - "start": 8521, - "end": 8526, + "start": 8520, + "end": 8525, "loc": { "start": { "line": 352, @@ -33999,8 +33999,8 @@ "binop": null }, "value": "search", - "start": 8527, - "end": 8533, + "start": 8526, + "end": 8532, "loc": { "start": { "line": 352, @@ -34024,8 +34024,8 @@ "postfix": false, "binop": null }, - "start": 8533, - "end": 8534, + "start": 8532, + "end": 8533, "loc": { "start": { "line": 352, @@ -34050,8 +34050,8 @@ "binop": null }, "value": "searchArguments", - "start": 8534, - "end": 8549, + "start": 8533, + "end": 8548, "loc": { "start": { "line": 352, @@ -34075,8 +34075,8 @@ "postfix": false, "binop": null }, - "start": 8549, - "end": 8550, + "start": 8548, + "end": 8549, "loc": { "start": { "line": 352, @@ -34100,8 +34100,8 @@ "postfix": false, "binop": null }, - "start": 8551, - "end": 8552, + "start": 8550, + "end": 8551, "loc": { "start": { "line": 352, @@ -34128,8 +34128,8 @@ "updateContext": null }, "value": "this", - "start": 8557, - "end": 8561, + "start": 8556, + "end": 8560, "loc": { "start": { "line": 353, @@ -34154,8 +34154,8 @@ "binop": null, "updateContext": null }, - "start": 8561, - "end": 8562, + "start": 8560, + "end": 8561, "loc": { "start": { "line": 353, @@ -34180,8 +34180,8 @@ "binop": null }, "value": "searchText", - "start": 8562, - "end": 8572, + "start": 8561, + "end": 8571, "loc": { "start": { "line": 353, @@ -34207,8 +34207,8 @@ "updateContext": null }, "value": "=", - "start": 8573, - "end": 8574, + "start": 8572, + "end": 8573, "loc": { "start": { "line": 353, @@ -34235,8 +34235,8 @@ "updateContext": null }, "value": "null", - "start": 8575, - "end": 8579, + "start": 8574, + "end": 8578, "loc": { "start": { "line": 353, @@ -34261,8 +34261,8 @@ "binop": null, "updateContext": null }, - "start": 8579, - "end": 8580, + "start": 8578, + "end": 8579, "loc": { "start": { "line": 353, @@ -34289,8 +34289,8 @@ "updateContext": null }, "value": "this", - "start": 8585, - "end": 8589, + "start": 8584, + "end": 8588, "loc": { "start": { "line": 354, @@ -34315,8 +34315,8 @@ "binop": null, "updateContext": null }, - "start": 8589, - "end": 8590, + "start": 8588, + "end": 8589, "loc": { "start": { "line": 354, @@ -34341,8 +34341,8 @@ "binop": null }, "value": "searchArguments", - "start": 8590, - "end": 8605, + "start": 8589, + "end": 8604, "loc": { "start": { "line": 354, @@ -34368,8 +34368,8 @@ "updateContext": null }, "value": "=", - "start": 8606, - "end": 8607, + "start": 8605, + "end": 8606, "loc": { "start": { "line": 354, @@ -34396,8 +34396,8 @@ "updateContext": null }, "value": "null", - "start": 8608, - "end": 8612, + "start": 8607, + "end": 8611, "loc": { "start": { "line": 354, @@ -34422,8 +34422,8 @@ "binop": null, "updateContext": null }, - "start": 8612, - "end": 8613, + "start": 8611, + "end": 8612, "loc": { "start": { "line": 354, @@ -34450,8 +34450,8 @@ "updateContext": null }, "value": "if", - "start": 8618, - "end": 8620, + "start": 8617, + "end": 8619, "loc": { "start": { "line": 355, @@ -34475,8 +34475,8 @@ "postfix": false, "binop": null }, - "start": 8621, - "end": 8622, + "start": 8620, + "end": 8621, "loc": { "start": { "line": 355, @@ -34503,8 +34503,8 @@ "updateContext": null }, "value": "typeof", - "start": 8622, - "end": 8628, + "start": 8621, + "end": 8627, "loc": { "start": { "line": 355, @@ -34529,8 +34529,8 @@ "binop": null }, "value": "searchArguments", - "start": 8629, - "end": 8644, + "start": 8628, + "end": 8643, "loc": { "start": { "line": 355, @@ -34556,8 +34556,8 @@ "updateContext": null }, "value": "===", - "start": 8645, - "end": 8648, + "start": 8644, + "end": 8647, "loc": { "start": { "line": 355, @@ -34583,8 +34583,8 @@ "updateContext": null }, "value": "string", - "start": 8649, - "end": 8657, + "start": 8648, + "end": 8656, "loc": { "start": { "line": 355, @@ -34608,8 +34608,8 @@ "postfix": false, "binop": null }, - "start": 8657, - "end": 8658, + "start": 8656, + "end": 8657, "loc": { "start": { "line": 355, @@ -34633,8 +34633,8 @@ "postfix": false, "binop": null }, - "start": 8659, - "end": 8660, + "start": 8658, + "end": 8659, "loc": { "start": { "line": 355, @@ -34661,8 +34661,8 @@ "updateContext": null }, "value": "this", - "start": 8667, - "end": 8671, + "start": 8666, + "end": 8670, "loc": { "start": { "line": 356, @@ -34687,8 +34687,8 @@ "binop": null, "updateContext": null }, - "start": 8671, - "end": 8672, + "start": 8670, + "end": 8671, "loc": { "start": { "line": 356, @@ -34713,8 +34713,8 @@ "binop": null }, "value": "searchText", - "start": 8672, - "end": 8682, + "start": 8671, + "end": 8681, "loc": { "start": { "line": 356, @@ -34740,8 +34740,8 @@ "updateContext": null }, "value": "=", - "start": 8683, - "end": 8684, + "start": 8682, + "end": 8683, "loc": { "start": { "line": 356, @@ -34766,8 +34766,8 @@ "binop": null }, "value": "searchArguments", - "start": 8685, - "end": 8700, + "start": 8684, + "end": 8699, "loc": { "start": { "line": 356, @@ -34792,8 +34792,8 @@ "binop": null, "updateContext": null }, - "start": 8700, - "end": 8701, + "start": 8699, + "end": 8700, "loc": { "start": { "line": 356, @@ -34817,8 +34817,8 @@ "postfix": false, "binop": null }, - "start": 8706, - "end": 8707, + "start": 8705, + "end": 8706, "loc": { "start": { "line": 357, @@ -34845,8 +34845,8 @@ "updateContext": null }, "value": "else", - "start": 8708, - "end": 8712, + "start": 8707, + "end": 8711, "loc": { "start": { "line": 357, @@ -34870,8 +34870,8 @@ "postfix": false, "binop": null }, - "start": 8713, - "end": 8714, + "start": 8712, + "end": 8713, "loc": { "start": { "line": 357, @@ -34898,8 +34898,8 @@ "updateContext": null }, "value": "this", - "start": 8721, - "end": 8725, + "start": 8720, + "end": 8724, "loc": { "start": { "line": 358, @@ -34924,8 +34924,8 @@ "binop": null, "updateContext": null }, - "start": 8725, - "end": 8726, + "start": 8724, + "end": 8725, "loc": { "start": { "line": 358, @@ -34950,8 +34950,8 @@ "binop": null }, "value": "searchArguments", - "start": 8726, - "end": 8741, + "start": 8725, + "end": 8740, "loc": { "start": { "line": 358, @@ -34977,8 +34977,8 @@ "updateContext": null }, "value": "=", - "start": 8742, - "end": 8743, + "start": 8741, + "end": 8742, "loc": { "start": { "line": 358, @@ -35003,8 +35003,8 @@ "binop": null }, "value": "searchArguments", - "start": 8744, - "end": 8759, + "start": 8743, + "end": 8758, "loc": { "start": { "line": 358, @@ -35029,8 +35029,8 @@ "binop": null, "updateContext": null }, - "start": 8759, - "end": 8760, + "start": 8758, + "end": 8759, "loc": { "start": { "line": 358, @@ -35054,8 +35054,8 @@ "postfix": false, "binop": null }, - "start": 8765, - "end": 8766, + "start": 8764, + "end": 8765, "loc": { "start": { "line": 359, @@ -35082,8 +35082,8 @@ "updateContext": null }, "value": "this", - "start": 8771, - "end": 8775, + "start": 8770, + "end": 8774, "loc": { "start": { "line": 360, @@ -35108,8 +35108,8 @@ "binop": null, "updateContext": null }, - "start": 8775, - "end": 8776, + "start": 8774, + "end": 8775, "loc": { "start": { "line": 360, @@ -35134,8 +35134,8 @@ "binop": null }, "value": "offset", - "start": 8776, - "end": 8782, + "start": 8775, + "end": 8781, "loc": { "start": { "line": 360, @@ -35161,8 +35161,8 @@ "updateContext": null }, "value": "=", - "start": 8783, - "end": 8784, + "start": 8782, + "end": 8783, "loc": { "start": { "line": 360, @@ -35188,8 +35188,8 @@ "updateContext": null }, "value": 0, - "start": 8785, - "end": 8786, + "start": 8784, + "end": 8785, "loc": { "start": { "line": 360, @@ -35214,8 +35214,8 @@ "binop": null, "updateContext": null }, - "start": 8786, - "end": 8787, + "start": 8785, + "end": 8786, "loc": { "start": { "line": 360, @@ -35242,8 +35242,8 @@ "updateContext": null }, "value": "return", - "start": 8792, - "end": 8798, + "start": 8791, + "end": 8797, "loc": { "start": { "line": 361, @@ -35270,8 +35270,8 @@ "updateContext": null }, "value": "this", - "start": 8799, - "end": 8803, + "start": 8798, + "end": 8802, "loc": { "start": { "line": 361, @@ -35296,8 +35296,8 @@ "binop": null, "updateContext": null }, - "start": 8803, - "end": 8804, + "start": 8802, + "end": 8803, "loc": { "start": { "line": 361, @@ -35322,8 +35322,8 @@ "binop": null }, "value": "update", - "start": 8804, - "end": 8810, + "start": 8803, + "end": 8809, "loc": { "start": { "line": 361, @@ -35347,8 +35347,8 @@ "postfix": false, "binop": null }, - "start": 8810, - "end": 8811, + "start": 8809, + "end": 8810, "loc": { "start": { "line": 361, @@ -35372,8 +35372,8 @@ "postfix": false, "binop": null }, - "start": 8811, - "end": 8812, + "start": 8810, + "end": 8811, "loc": { "start": { "line": 361, @@ -35398,8 +35398,8 @@ "binop": null, "updateContext": null }, - "start": 8812, - "end": 8813, + "start": 8811, + "end": 8812, "loc": { "start": { "line": 361, @@ -35423,8 +35423,8 @@ "postfix": false, "binop": null }, - "start": 8816, - "end": 8817, + "start": 8815, + "end": 8816, "loc": { "start": { "line": 362, @@ -35439,8 +35439,8 @@ { "type": "CommentBlock", "value": "*\n * Sort the data based on a field and direction.\n * @access public\n * @param {Object} sortArguments - Object with keys as the field names to sort.\n * The values of the object is the sort direction.\n * The sort direction can be 'asc', 'ascend', 'desc',\n * 'descending'\n * @return {Promise} A promise object, resolved when the sorting is completed.\n ", - "start": 8821, - "end": 9291, + "start": 8820, + "end": 9290, "loc": { "start": { "line": 364, @@ -35465,8 +35465,8 @@ "binop": null }, "value": "async", - "start": 9294, - "end": 9299, + "start": 9293, + "end": 9298, "loc": { "start": { "line": 373, @@ -35491,8 +35491,8 @@ "binop": null }, "value": "sort", - "start": 9300, - "end": 9304, + "start": 9299, + "end": 9303, "loc": { "start": { "line": 373, @@ -35516,8 +35516,8 @@ "postfix": false, "binop": null }, - "start": 9304, - "end": 9305, + "start": 9303, + "end": 9304, "loc": { "start": { "line": 373, @@ -35542,8 +35542,8 @@ "binop": null }, "value": "sortArguments", - "start": 9305, - "end": 9318, + "start": 9304, + "end": 9317, "loc": { "start": { "line": 373, @@ -35569,8 +35569,8 @@ "updateContext": null }, "value": "=", - "start": 9319, - "end": 9320, + "start": 9318, + "end": 9319, "loc": { "start": { "line": 373, @@ -35597,8 +35597,8 @@ "updateContext": null }, "value": "null", - "start": 9321, - "end": 9325, + "start": 9320, + "end": 9324, "loc": { "start": { "line": 373, @@ -35622,8 +35622,8 @@ "postfix": false, "binop": null }, - "start": 9325, - "end": 9326, + "start": 9324, + "end": 9325, "loc": { "start": { "line": 373, @@ -35647,8 +35647,8 @@ "postfix": false, "binop": null }, - "start": 9327, - "end": 9328, + "start": 9326, + "end": 9327, "loc": { "start": { "line": 373, @@ -35675,8 +35675,8 @@ "updateContext": null }, "value": "this", - "start": 9333, - "end": 9337, + "start": 9332, + "end": 9336, "loc": { "start": { "line": 374, @@ -35701,8 +35701,8 @@ "binop": null, "updateContext": null }, - "start": 9337, - "end": 9338, + "start": 9336, + "end": 9337, "loc": { "start": { "line": 374, @@ -35727,8 +35727,8 @@ "binop": null }, "value": "sortArguments", - "start": 9338, - "end": 9351, + "start": 9337, + "end": 9350, "loc": { "start": { "line": 374, @@ -35754,8 +35754,8 @@ "updateContext": null }, "value": "=", - "start": 9352, - "end": 9353, + "start": 9351, + "end": 9352, "loc": { "start": { "line": 374, @@ -35780,8 +35780,8 @@ "binop": null }, "value": "sortArguments", - "start": 9354, - "end": 9367, + "start": 9353, + "end": 9366, "loc": { "start": { "line": 374, @@ -35806,8 +35806,8 @@ "binop": null, "updateContext": null }, - "start": 9367, - "end": 9368, + "start": 9366, + "end": 9367, "loc": { "start": { "line": 374, @@ -35834,8 +35834,8 @@ "updateContext": null }, "value": "return", - "start": 9373, - "end": 9379, + "start": 9372, + "end": 9378, "loc": { "start": { "line": 375, @@ -35862,8 +35862,8 @@ "updateContext": null }, "value": "this", - "start": 9380, - "end": 9384, + "start": 9379, + "end": 9383, "loc": { "start": { "line": 375, @@ -35888,8 +35888,8 @@ "binop": null, "updateContext": null }, - "start": 9384, - "end": 9385, + "start": 9383, + "end": 9384, "loc": { "start": { "line": 375, @@ -35914,8 +35914,8 @@ "binop": null }, "value": "update", - "start": 9385, - "end": 9391, + "start": 9384, + "end": 9390, "loc": { "start": { "line": 375, @@ -35939,8 +35939,8 @@ "postfix": false, "binop": null }, - "start": 9391, - "end": 9392, + "start": 9390, + "end": 9391, "loc": { "start": { "line": 375, @@ -35964,8 +35964,8 @@ "postfix": false, "binop": null }, - "start": 9392, - "end": 9393, + "start": 9391, + "end": 9392, "loc": { "start": { "line": 375, @@ -35990,8 +35990,8 @@ "binop": null, "updateContext": null }, - "start": 9393, - "end": 9394, + "start": 9392, + "end": 9393, "loc": { "start": { "line": 375, @@ -36015,8 +36015,8 @@ "postfix": false, "binop": null }, - "start": 9397, - "end": 9398, + "start": 9396, + "end": 9397, "loc": { "start": { "line": 376, @@ -36040,8 +36040,8 @@ "postfix": false, "binop": null }, - "start": 9399, - "end": 9400, + "start": 9398, + "end": 9399, "loc": { "start": { "line": 377, @@ -36066,8 +36066,8 @@ "binop": null }, "value": "DatasourceBase", - "start": 9402, - "end": 9416, + "start": 9401, + "end": 9415, "loc": { "start": { "line": 379, @@ -36092,8 +36092,8 @@ "binop": null, "updateContext": null }, - "start": 9416, - "end": 9417, + "start": 9415, + "end": 9416, "loc": { "start": { "line": 379, @@ -36118,8 +36118,8 @@ "binop": null }, "value": "prototype", - "start": 9417, - "end": 9426, + "start": 9416, + "end": 9425, "loc": { "start": { "line": 379, @@ -36144,8 +36144,8 @@ "binop": null, "updateContext": null }, - "start": 9426, - "end": 9427, + "start": 9425, + "end": 9426, "loc": { "start": { "line": 379, @@ -36170,8 +36170,8 @@ "binop": null }, "value": "defaults", - "start": 9427, - "end": 9435, + "start": 9426, + "end": 9434, "loc": { "start": { "line": 379, @@ -36197,8 +36197,8 @@ "updateContext": null }, "value": "=", - "start": 9436, - "end": 9437, + "start": 9435, + "end": 9436, "loc": { "start": { "line": 379, @@ -36222,8 +36222,8 @@ "postfix": false, "binop": null }, - "start": 9438, - "end": 9439, + "start": 9437, + "end": 9438, "loc": { "start": { "line": 379, @@ -36248,8 +36248,8 @@ "binop": null }, "value": "loading", - "start": 9442, - "end": 9449, + "start": 9441, + "end": 9448, "loc": { "start": { "line": 380, @@ -36274,8 +36274,8 @@ "binop": null, "updateContext": null }, - "start": 9449, - "end": 9450, + "start": 9448, + "end": 9449, "loc": { "start": { "line": 380, @@ -36302,8 +36302,8 @@ "updateContext": null }, "value": "false", - "start": 9451, - "end": 9456, + "start": 9450, + "end": 9455, "loc": { "start": { "line": 380, @@ -36328,8 +36328,8 @@ "binop": null, "updateContext": null }, - "start": 9456, - "end": 9457, + "start": 9455, + "end": 9456, "loc": { "start": { "line": 380, @@ -36354,8 +36354,8 @@ "binop": null }, "value": "offset", - "start": 9460, - "end": 9466, + "start": 9459, + "end": 9465, "loc": { "start": { "line": 381, @@ -36380,8 +36380,8 @@ "binop": null, "updateContext": null }, - "start": 9466, - "end": 9467, + "start": 9465, + "end": 9466, "loc": { "start": { "line": 381, @@ -36407,8 +36407,8 @@ "updateContext": null }, "value": 0, - "start": 9468, - "end": 9469, + "start": 9467, + "end": 9468, "loc": { "start": { "line": 381, @@ -36433,8 +36433,8 @@ "binop": null, "updateContext": null }, - "start": 9469, - "end": 9470, + "start": 9468, + "end": 9469, "loc": { "start": { "line": 381, @@ -36459,8 +36459,8 @@ "binop": null }, "value": "size", - "start": 9473, - "end": 9477, + "start": 9472, + "end": 9476, "loc": { "start": { "line": 382, @@ -36485,8 +36485,8 @@ "binop": null, "updateContext": null }, - "start": 9477, - "end": 9478, + "start": 9476, + "end": 9477, "loc": { "start": { "line": 382, @@ -36512,8 +36512,8 @@ "updateContext": null }, "value": 10, - "start": 9479, - "end": 9481, + "start": 9478, + "end": 9480, "loc": { "start": { "line": 382, @@ -36538,8 +36538,8 @@ "binop": null, "updateContext": null }, - "start": 9481, - "end": 9482, + "start": 9480, + "end": 9481, "loc": { "start": { "line": 382, @@ -36564,8 +36564,8 @@ "binop": null }, "value": "searchText", - "start": 9485, - "end": 9495, + "start": 9484, + "end": 9494, "loc": { "start": { "line": 383, @@ -36590,8 +36590,8 @@ "binop": null, "updateContext": null }, - "start": 9495, - "end": 9496, + "start": 9494, + "end": 9495, "loc": { "start": { "line": 383, @@ -36618,8 +36618,8 @@ "updateContext": null }, "value": "null", - "start": 9497, - "end": 9501, + "start": 9496, + "end": 9500, "loc": { "start": { "line": 383, @@ -36644,8 +36644,8 @@ "binop": null, "updateContext": null }, - "start": 9501, - "end": 9502, + "start": 9500, + "end": 9501, "loc": { "start": { "line": 383, @@ -36670,8 +36670,8 @@ "binop": null }, "value": "searchArguments", - "start": 9505, - "end": 9520, + "start": 9504, + "end": 9519, "loc": { "start": { "line": 384, @@ -36696,8 +36696,8 @@ "binop": null, "updateContext": null }, - "start": 9520, - "end": 9521, + "start": 9519, + "end": 9520, "loc": { "start": { "line": 384, @@ -36724,8 +36724,8 @@ "updateContext": null }, "value": "null", - "start": 9522, - "end": 9526, + "start": 9521, + "end": 9525, "loc": { "start": { "line": 384, @@ -36750,8 +36750,8 @@ "binop": null, "updateContext": null }, - "start": 9526, - "end": 9527, + "start": 9525, + "end": 9526, "loc": { "start": { "line": 384, @@ -36776,8 +36776,8 @@ "binop": null }, "value": "sortArguments", - "start": 9530, - "end": 9543, + "start": 9529, + "end": 9542, "loc": { "start": { "line": 385, @@ -36802,8 +36802,8 @@ "binop": null, "updateContext": null }, - "start": 9543, - "end": 9544, + "start": 9542, + "end": 9543, "loc": { "start": { "line": 385, @@ -36830,8 +36830,8 @@ "updateContext": null }, "value": "null", - "start": 9545, - "end": 9549, + "start": 9544, + "end": 9548, "loc": { "start": { "line": 385, @@ -36856,8 +36856,8 @@ "binop": null, "updateContext": null }, - "start": 9549, - "end": 9550, + "start": 9548, + "end": 9549, "loc": { "start": { "line": 385, @@ -36881,8 +36881,8 @@ "postfix": false, "binop": null }, - "start": 9551, - "end": 9552, + "start": 9550, + "end": 9551, "loc": { "start": { "line": 386, @@ -36907,8 +36907,8 @@ "binop": null, "updateContext": null }, - "start": 9552, - "end": 9553, + "start": 9551, + "end": 9552, "loc": { "start": { "line": 386, @@ -36935,8 +36935,8 @@ "updateContext": null }, "value": "export", - "start": 9555, - "end": 9561, + "start": 9554, + "end": 9560, "loc": { "start": { "line": 388, @@ -36963,8 +36963,8 @@ "updateContext": null }, "value": "default", - "start": 9562, - "end": 9569, + "start": 9561, + "end": 9568, "loc": { "start": { "line": 388, @@ -36989,8 +36989,8 @@ "binop": null }, "value": "DatasourceBase", - "start": 9570, - "end": 9584, + "start": 9569, + "end": 9583, "loc": { "start": { "line": 388, @@ -37015,8 +37015,8 @@ "binop": null, "updateContext": null }, - "start": 9584, - "end": 9585, + "start": 9583, + "end": 9584, "loc": { "start": { "line": 388, @@ -37041,8 +37041,8 @@ "binop": null, "updateContext": null }, - "start": 9586, - "end": 9586, + "start": 9585, + "end": 9585, "loc": { "start": { "line": 389, diff --git a/projects/mitch-datasource-documentation/docs/ast/source/QueryBuilder.js.json b/projects/mitch-datasource-documentation/docs/ast/source/QueryBuilder.js.json index 3c0a0d6..3a0475c 100644 --- a/projects/mitch-datasource-documentation/docs/ast/source/QueryBuilder.js.json +++ b/projects/mitch-datasource-documentation/docs/ast/source/QueryBuilder.js.json @@ -1,28 +1,28 @@ { "type": "File", "start": 0, - "end": 8112, + "end": 8398, "loc": { "start": { "line": 1, "column": 0 }, "end": { - "line": 248, + "line": 261, "column": 0 } }, "program": { "type": "Program", "start": 0, - "end": 8112, + "end": 8398, "loc": { "start": { "line": 1, "column": 0 }, "end": { - "line": 248, + "line": 261, "column": 0 } }, @@ -613,16 +613,16 @@ "trailingComments": [ { "type": "CommentBlock", - "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n * @example With Adding to Defaults\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n * @example With Extra Parameter for GET/POST Request\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", + "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n *\n * @example With Adding to Defaults\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * return queryObject;\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * return queryString;\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n *\n * @example With Extra Parameter for GET/POST Request\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", "start": 204, - "end": 1999, + "end": 2285, "loc": { "start": { "line": 12, "column": 0 }, "end": { - "line": 61, + "line": 74, "column": 3 } } @@ -631,29 +631,29 @@ }, { "type": "Identifier", - "start": 2000, - "end": 5733, + "start": 2286, + "end": 6019, "loc": { "start": { - "line": 62, + "line": 75, "column": 0 }, "end": { - "line": 180, + "line": 193, "column": 1 } }, "id": { "type": "Identifier", - "start": 2006, - "end": 2018, + "start": 2292, + "end": 2304, "loc": { "start": { - "line": 62, + "line": 75, "column": 6 }, "end": { - "line": 62, + "line": 75, "column": 18 }, "identifierName": "QueryBuilder" @@ -664,30 +664,30 @@ "superClass": null, "body": { "type": "ClassBody", - "start": 2019, - "end": 5733, + "start": 2305, + "end": 6019, "loc": { "start": { - "line": 62, + "line": 75, "column": 19 }, "end": { - "line": 180, + "line": 193, "column": 1 } }, "body": [ { "type": "ClassMethod", - "start": 3694, - "end": 4603, + "start": 3980, + "end": 4889, "loc": { "start": { - "line": 112, + "line": 125, "column": 2 }, "end": { - "line": 144, + "line": 157, "column": 3 } }, @@ -695,15 +695,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3694, - "end": 3705, + "start": 3980, + "end": 3991, "loc": { "start": { - "line": 112, + "line": 125, "column": 2 }, "end": { - "line": 112, + "line": 125, "column": 13 }, "identifierName": "constructor" @@ -719,29 +719,29 @@ "params": [ { "type": "AssignmentPattern", - "start": 3706, - "end": 3718, + "start": 3992, + "end": 4004, "loc": { "start": { - "line": 112, + "line": 125, "column": 14 }, "end": { - "line": 112, + "line": 125, "column": 26 } }, "left": { "type": "Identifier", - "start": 3706, - "end": 3713, + "start": 3992, + "end": 3999, "loc": { "start": { - "line": 112, + "line": 125, "column": 14 }, "end": { - "line": 112, + "line": 125, "column": 21 }, "identifierName": "options" @@ -750,15 +750,15 @@ }, "right": { "type": "ObjectExpression", - "start": 3716, - "end": 3718, + "start": 4002, + "end": 4004, "loc": { "start": { - "line": 112, + "line": 125, "column": 24 }, "end": { - "line": 112, + "line": 125, "column": 26 } }, @@ -768,59 +768,59 @@ ], "body": { "type": "BlockStatement", - "start": 3720, - "end": 4603, + "start": 4006, + "end": 4889, "loc": { "start": { - "line": 112, + "line": 125, "column": 28 }, "end": { - "line": 144, + "line": 157, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 3726, - "end": 3816, + "start": 4012, + "end": 4102, "loc": { "start": { - "line": 113, + "line": 126, "column": 4 }, "end": { - "line": 116, + "line": 129, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 3732, - "end": 3815, + "start": 4018, + "end": 4101, "loc": { "start": { - "line": 113, + "line": 126, "column": 10 }, "end": { - "line": 116, + "line": 129, "column": 5 } }, "id": { "type": "Identifier", - "start": 3732, - "end": 3745, + "start": 4018, + "end": 4031, "loc": { "start": { - "line": 113, + "line": 126, "column": 10 }, "end": { - "line": 113, + "line": 126, "column": 23 }, "identifierName": "mergedOptions" @@ -829,72 +829,72 @@ }, "init": { "type": "ObjectExpression", - "start": 3748, - "end": 3815, + "start": 4034, + "end": 4101, "loc": { "start": { - "line": 113, + "line": 126, "column": 26 }, "end": { - "line": 116, + "line": 129, "column": 5 } }, "properties": [ { "type": "SpreadProperty", - "start": 3756, - "end": 3790, + "start": 4042, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 6 }, "end": { - "line": 114, + "line": 127, "column": 40 } }, "argument": { "type": "MemberExpression", - "start": 3759, - "end": 3790, + "start": 4045, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 40 } }, "object": { "type": "MemberExpression", - "start": 3759, - "end": 3781, + "start": 4045, + "end": 4067, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 31 } }, "object": { "type": "Identifier", - "start": 3759, - "end": 3771, + "start": 4045, + "end": 4057, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 21 }, "identifierName": "QueryBuilder" @@ -903,15 +903,15 @@ }, "property": { "type": "Identifier", - "start": 3772, - "end": 3781, + "start": 4058, + "end": 4067, "loc": { "start": { - "line": 114, + "line": 127, "column": 22 }, "end": { - "line": 114, + "line": 127, "column": 31 }, "identifierName": "prototype" @@ -922,15 +922,15 @@ }, "property": { "type": "Identifier", - "start": 3782, - "end": 3790, + "start": 4068, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 32 }, "end": { - "line": 114, + "line": 127, "column": 40 }, "identifierName": "defaults" @@ -942,29 +942,29 @@ }, { "type": "SpreadProperty", - "start": 3798, - "end": 3808, + "start": 4084, + "end": 4094, "loc": { "start": { - "line": 115, + "line": 128, "column": 6 }, "end": { - "line": 115, + "line": 128, "column": 16 } }, "argument": { "type": "Identifier", - "start": 3801, - "end": 3808, + "start": 4087, + "end": 4094, "loc": { "start": { - "line": 115, + "line": 128, "column": 9 }, "end": { - "line": 115, + "line": 128, "column": 16 }, "identifierName": "options" @@ -981,15 +981,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link SerialiseToQueryObjectCallback}\n *\n * @access public\n * @type {SerialiseToQueryObjectCallback}\n ", - "start": 3821, - "end": 3957, + "start": 4107, + "end": 4243, "loc": { "start": { - "line": 117, + "line": 130, "column": 4 }, "end": { - "line": 122, + "line": 135, "column": 7 } } @@ -998,58 +998,58 @@ }, { "type": "ExpressionStatement", - "start": 3962, - "end": 4029, + "start": 4248, + "end": 4315, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 3962, - "end": 4028, + "start": 4248, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3962, - "end": 3989, + "start": 4248, + "end": 4275, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 31 } }, "object": { "type": "ThisExpression", - "start": 3962, - "end": 3966, + "start": 4248, + "end": 4252, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 8 } }, @@ -1057,15 +1057,15 @@ }, "property": { "type": "Identifier", - "start": 3967, - "end": 3989, + "start": 4253, + "end": 4275, "loc": { "start": { - "line": 123, + "line": 136, "column": 9 }, "end": { - "line": 123, + "line": 136, "column": 31 }, "identifierName": "serialiseToQueryObject" @@ -1077,29 +1077,29 @@ }, "right": { "type": "MemberExpression", - "start": 3992, - "end": 4028, + "start": 4278, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 34 }, "end": { - "line": 123, + "line": 136, "column": 70 } }, "object": { "type": "Identifier", - "start": 3992, - "end": 4005, + "start": 4278, + "end": 4291, "loc": { "start": { - "line": 123, + "line": 136, "column": 34 }, "end": { - "line": 123, + "line": 136, "column": 47 }, "identifierName": "mergedOptions" @@ -1108,15 +1108,15 @@ }, "property": { "type": "Identifier", - "start": 4006, - "end": 4028, + "start": 4292, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 48 }, "end": { - "line": 123, + "line": 136, "column": 70 }, "identifierName": "serialiseToQueryObject" @@ -1131,15 +1131,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link SerialiseToQueryObjectCallback}\n *\n * @access public\n * @type {SerialiseToQueryObjectCallback}\n ", - "start": 3821, - "end": 3957, + "start": 4107, + "end": 4243, "loc": { "start": { - "line": 117, + "line": 130, "column": 4 }, "end": { - "line": 122, + "line": 135, "column": 7 } } @@ -1149,15 +1149,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link QueryStringOptions}\n *\n * @access public\n * @type {QueryStringOptions}\n ", - "start": 4035, - "end": 4147, + "start": 4321, + "end": 4433, "loc": { "start": { - "line": 125, + "line": 138, "column": 4 }, "end": { - "line": 130, + "line": 143, "column": 7 } } @@ -1166,58 +1166,58 @@ }, { "type": "ExpressionStatement", - "start": 4152, - "end": 4211, + "start": 4438, + "end": 4497, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 63 } }, "expression": { "type": "AssignmentExpression", - "start": 4152, - "end": 4210, + "start": 4438, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 62 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4152, - "end": 4175, + "start": 4438, + "end": 4461, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 27 } }, "object": { "type": "ThisExpression", - "start": 4152, - "end": 4156, + "start": 4438, + "end": 4442, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 8 } }, @@ -1225,15 +1225,15 @@ }, "property": { "type": "Identifier", - "start": 4157, - "end": 4175, + "start": 4443, + "end": 4461, "loc": { "start": { - "line": 131, + "line": 144, "column": 9 }, "end": { - "line": 131, + "line": 144, "column": 27 }, "identifierName": "queryStringOptions" @@ -1245,29 +1245,29 @@ }, "right": { "type": "MemberExpression", - "start": 4178, - "end": 4210, + "start": 4464, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 30 }, "end": { - "line": 131, + "line": 144, "column": 62 } }, "object": { "type": "Identifier", - "start": 4178, - "end": 4191, + "start": 4464, + "end": 4477, "loc": { "start": { - "line": 131, + "line": 144, "column": 30 }, "end": { - "line": 131, + "line": 144, "column": 43 }, "identifierName": "mergedOptions" @@ -1276,15 +1276,15 @@ }, "property": { "type": "Identifier", - "start": 4192, - "end": 4210, + "start": 4478, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 44 }, "end": { - "line": 131, + "line": 144, "column": 62 }, "identifierName": "queryStringOptions" @@ -1299,15 +1299,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link QueryStringOptions}\n *\n * @access public\n * @type {QueryStringOptions}\n ", - "start": 4035, - "end": 4147, + "start": 4321, + "end": 4433, "loc": { "start": { - "line": 125, + "line": 138, "column": 4 }, "end": { - "line": 130, + "line": 143, "column": 7 } } @@ -1317,15 +1317,15 @@ { "type": "CommentBlock", "value": "*\n * If you need to change the behavior of the\n * query string, then you should first check\n * {@link QueryBuilder#queryStringOptions}\n *\n * For more information, see {@link SerialiseToQueryStringCallback}\n *\n * @access public\n * @type {SerialiseToQueryStringCallback}\n ", - "start": 4217, - "end": 4527, + "start": 4503, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 146, "column": 4 }, "end": { - "line": 142, + "line": 155, "column": 7 } } @@ -1334,58 +1334,58 @@ }, { "type": "ExpressionStatement", - "start": 4532, - "end": 4599, + "start": 4818, + "end": 4885, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 4532, - "end": 4598, + "start": 4818, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4532, - "end": 4559, + "start": 4818, + "end": 4845, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 31 } }, "object": { "type": "ThisExpression", - "start": 4532, - "end": 4536, + "start": 4818, + "end": 4822, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 8 } }, @@ -1393,15 +1393,15 @@ }, "property": { "type": "Identifier", - "start": 4537, - "end": 4559, + "start": 4823, + "end": 4845, "loc": { "start": { - "line": 143, + "line": 156, "column": 9 }, "end": { - "line": 143, + "line": 156, "column": 31 }, "identifierName": "serialiseToQueryString" @@ -1413,29 +1413,29 @@ }, "right": { "type": "MemberExpression", - "start": 4562, - "end": 4598, + "start": 4848, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 34 }, "end": { - "line": 143, + "line": 156, "column": 70 } }, "object": { "type": "Identifier", - "start": 4562, - "end": 4575, + "start": 4848, + "end": 4861, "loc": { "start": { - "line": 143, + "line": 156, "column": 34 }, "end": { - "line": 143, + "line": 156, "column": 47 }, "identifierName": "mergedOptions" @@ -1444,15 +1444,15 @@ }, "property": { "type": "Identifier", - "start": 4576, - "end": 4598, + "start": 4862, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 48 }, "end": { - "line": 143, + "line": 156, "column": 70 }, "identifierName": "serialiseToQueryString" @@ -1467,15 +1467,15 @@ { "type": "CommentBlock", "value": "*\n * If you need to change the behavior of the\n * query string, then you should first check\n * {@link QueryBuilder#queryStringOptions}\n *\n * For more information, see {@link SerialiseToQueryStringCallback}\n *\n * @access public\n * @type {SerialiseToQueryStringCallback}\n ", - "start": 4217, - "end": 4527, + "start": 4503, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 146, "column": 4 }, "end": { - "line": 142, + "line": 155, "column": 7 } } @@ -1490,15 +1490,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function that converts a datasource\n * into a query object (which in turn can be\n * converted to query string).\n *\n * @typedef {Function} SerialiseToQueryObjectCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 2023, - "end": 2354, + "start": 2309, + "end": 2640, "loc": { "start": { - "line": 63, + "line": 76, "column": 2 }, "end": { - "line": 72, + "line": 85, "column": 5 } } @@ -1506,15 +1506,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function which serialises the\n * query string object to the query string.\n * By default, it uses the `query-string` package\n * to convert the query string object to query\n * string.\n *\n * @typedef {Function} SerialiseToQueryStringCallback\n * @param {Object} objectToSerialise\n * The object to serialise to query string.\n * By default, it's the query object.\n * @returns {String} The query string.\n ", - "start": 2358, - "end": 2798, + "start": 2644, + "end": 3084, "loc": { "start": { - "line": 74, + "line": 87, "column": 2 }, "end": { - "line": 86, + "line": 99, "column": 5 } } @@ -1522,15 +1522,15 @@ { "type": "CommentBlock", "value": "*\n * The query string options object that\n * contains configuration and settings\n * to affect the process of converting\n * the datasource to a query string.\n *\n * For a full list of available options\n * and settings, see {@link https://www.npmjs.com/package/query-string#stringifyobject-options}\n *\n * @typedef {Object} QueryStringOptions\n ", - "start": 2802, - "end": 3166, + "start": 3088, + "end": 3452, "loc": { "start": { - "line": 88, + "line": 101, "column": 2 }, "end": { - "line": 98, + "line": 111, "column": 5 } } @@ -1538,15 +1538,15 @@ { "type": "CommentBlock", "value": "*\n * @param {Object} [options] The options object.\n * @param {SerialiseToQueryObjectCallback} [options.serialiseToQueryObject]\n * Function which converts a datasource\n * into a query object (which in turn can\n * be converted to query string).\n * @param {QueryStringOptions} [options.queryStringOptions]\n * See {@link QueryStringOptions}\n * @param {SerialiseToQueryStringCallback} [options.serialiseToQueryString]\n * The function which serialises the\n * query string object to the query string.\n ", - "start": 3170, - "end": 3691, + "start": 3456, + "end": 3977, "loc": { "start": { - "line": 100, + "line": 113, "column": 2 }, "end": { - "line": 111, + "line": 124, "column": 5 } } @@ -1556,15 +1556,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * an object and returns that object.\n * That object is passed as data as\n * part of AJAX post requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {Object} The query object.\n ", - "start": 4607, - "end": 4883, + "start": 4893, + "end": 5169, "loc": { "start": { - "line": 146, + "line": 159, "column": 2 }, "end": { - "line": 155, + "line": 168, "column": 5 } } @@ -1573,15 +1573,15 @@ }, { "type": "ClassMethod", - "start": 4886, - "end": 5127, + "start": 5172, + "end": 5413, "loc": { "start": { - "line": 156, + "line": 169, "column": 2 }, "end": { - "line": 161, + "line": 174, "column": 3 } }, @@ -1589,15 +1589,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4886, - "end": 4900, + "start": 5172, + "end": 5186, "loc": { "start": { - "line": 156, + "line": 169, "column": 2 }, "end": { - "line": 156, + "line": 169, "column": 16 }, "identifierName": "getQueryObject" @@ -1613,15 +1613,15 @@ "params": [ { "type": "Identifier", - "start": 4901, - "end": 4911, + "start": 5187, + "end": 5197, "loc": { "start": { - "line": 156, + "line": 169, "column": 17 }, "end": { - "line": 156, + "line": 169, "column": 27 }, "identifierName": "datasource" @@ -1631,44 +1631,44 @@ ], "body": { "type": "BlockStatement", - "start": 4913, - "end": 5127, + "start": 5199, + "end": 5413, "loc": { "start": { - "line": 156, + "line": 169, "column": 29 }, "end": { - "line": 161, + "line": 174, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 4919, - "end": 5060, + "start": 5205, + "end": 5346, "loc": { "start": { - "line": 157, + "line": 170, "column": 4 }, "end": { - "line": 159, + "line": 172, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 4923, - "end": 4951, + "start": 5209, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 8 }, "end": { - "line": 157, + "line": 170, "column": 36 } }, @@ -1676,44 +1676,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 4924, - "end": 4951, + "start": 5210, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 9 }, "end": { - "line": 157, + "line": 170, "column": 36 } }, "object": { "type": "ThisExpression", - "start": 4924, - "end": 4928, + "start": 5210, + "end": 5214, "loc": { "start": { - "line": 157, + "line": 170, "column": 9 }, "end": { - "line": 157, + "line": 170, "column": 13 } } }, "property": { "type": "Identifier", - "start": 4929, - "end": 4951, + "start": 5215, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 14 }, "end": { - "line": 157, + "line": 170, "column": 36 }, "identifierName": "serialiseToQueryObject" @@ -1728,58 +1728,58 @@ }, "consequent": { "type": "BlockStatement", - "start": 4953, - "end": 5060, + "start": 5239, + "end": 5346, "loc": { "start": { - "line": 157, + "line": 170, "column": 38 }, "end": { - "line": 159, + "line": 172, "column": 5 } }, "body": [ { "type": "ThrowStatement", - "start": 4961, - "end": 5054, + "start": 5247, + "end": 5340, "loc": { "start": { - "line": 158, + "line": 171, "column": 6 }, "end": { - "line": 158, + "line": 171, "column": 99 } }, "argument": { "type": "NewExpression", - "start": 4967, - "end": 5053, + "start": 5253, + "end": 5339, "loc": { "start": { - "line": 158, + "line": 171, "column": 12 }, "end": { - "line": 158, + "line": 171, "column": 98 } }, "callee": { "type": "Identifier", - "start": 4971, - "end": 4976, + "start": 5257, + "end": 5262, "loc": { "start": { - "line": 158, + "line": 171, "column": 16 }, "end": { - "line": 158, + "line": 171, "column": 21 }, "identifierName": "Error" @@ -1789,15 +1789,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 4977, - "end": 5052, + "start": 5263, + "end": 5338, "loc": { "start": { - "line": 158, + "line": 171, "column": 22 }, "end": { - "line": 158, + "line": 171, "column": 97 } }, @@ -1817,86 +1817,86 @@ }, { "type": "ReturnStatement", - "start": 5065, - "end": 5123, + "start": 5351, + "end": 5409, "loc": { "start": { - "line": 160, + "line": 173, "column": 4 }, "end": { - "line": 160, + "line": 173, "column": 62 } }, "argument": { "type": "CallExpression", - "start": 5072, - "end": 5122, + "start": 5358, + "end": 5408, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 61 } }, "callee": { "type": "MemberExpression", - "start": 5072, - "end": 5104, + "start": 5358, + "end": 5390, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 43 } }, "object": { "type": "MemberExpression", - "start": 5072, - "end": 5099, + "start": 5358, + "end": 5385, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 38 } }, "object": { "type": "ThisExpression", - "start": 5072, - "end": 5076, + "start": 5358, + "end": 5362, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 15 } } }, "property": { "type": "Identifier", - "start": 5077, - "end": 5099, + "start": 5363, + "end": 5385, "loc": { "start": { - "line": 160, + "line": 173, "column": 16 }, "end": { - "line": 160, + "line": 173, "column": 38 }, "identifierName": "serialiseToQueryObject" @@ -1907,15 +1907,15 @@ }, "property": { "type": "Identifier", - "start": 5100, - "end": 5104, + "start": 5386, + "end": 5390, "loc": { "start": { - "line": 160, + "line": 173, "column": 39 }, "end": { - "line": 160, + "line": 173, "column": 43 }, "identifierName": "call" @@ -1927,30 +1927,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 5105, - "end": 5109, + "start": 5391, + "end": 5395, "loc": { "start": { - "line": 160, + "line": 173, "column": 44 }, "end": { - "line": 160, + "line": 173, "column": 48 } } }, { "type": "Identifier", - "start": 5111, - "end": 5121, + "start": 5397, + "end": 5407, "loc": { "start": { - "line": 160, + "line": 173, "column": 50 }, "end": { - "line": 160, + "line": 173, "column": 60 }, "identifierName": "datasource" @@ -1968,15 +1968,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * an object and returns that object.\n * That object is passed as data as\n * part of AJAX post requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {Object} The query object.\n ", - "start": 4607, - "end": 4883, + "start": 4893, + "end": 5169, "loc": { "start": { - "line": 146, + "line": 159, "column": 2 }, "end": { - "line": 155, + "line": 168, "column": 5 } } @@ -1986,15 +1986,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * a query string and returns that string.\n * This string is passed as data as\n * part of AJAX get requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {String} The query string.\n ", - "start": 5131, - "end": 5411, + "start": 5417, + "end": 5697, "loc": { "start": { - "line": 163, + "line": 176, "column": 2 }, "end": { - "line": 172, + "line": 185, "column": 5 } } @@ -2003,15 +2003,15 @@ }, { "type": "ClassMethod", - "start": 5414, - "end": 5731, + "start": 5700, + "end": 6017, "loc": { "start": { - "line": 173, + "line": 186, "column": 2 }, "end": { - "line": 179, + "line": 192, "column": 3 } }, @@ -2019,15 +2019,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5414, - "end": 5428, + "start": 5700, + "end": 5714, "loc": { "start": { - "line": 173, + "line": 186, "column": 2 }, "end": { - "line": 173, + "line": 186, "column": 16 }, "identifierName": "getQueryString" @@ -2043,15 +2043,15 @@ "params": [ { "type": "Identifier", - "start": 5429, - "end": 5439, + "start": 5715, + "end": 5725, "loc": { "start": { - "line": 173, + "line": 186, "column": 17 }, "end": { - "line": 173, + "line": 186, "column": 27 }, "identifierName": "datasource" @@ -2061,59 +2061,59 @@ ], "body": { "type": "BlockStatement", - "start": 5441, - "end": 5731, + "start": 5727, + "end": 6017, "loc": { "start": { - "line": 173, + "line": 186, "column": 29 }, "end": { - "line": 179, + "line": 192, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 5447, - "end": 5512, + "start": 5733, + "end": 5798, "loc": { "start": { - "line": 174, + "line": 187, "column": 4 }, "end": { - "line": 174, + "line": 187, "column": 69 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5453, - "end": 5511, + "start": 5739, + "end": 5797, "loc": { "start": { - "line": 174, + "line": 187, "column": 10 }, "end": { - "line": 174, + "line": 187, "column": 68 } }, "id": { "type": "Identifier", - "start": 5453, - "end": 5470, + "start": 5739, + "end": 5756, "loc": { "start": { - "line": 174, + "line": 187, "column": 10 }, "end": { - "line": 174, + "line": 187, "column": 27 }, "identifierName": "objectToSerialise" @@ -2122,87 +2122,87 @@ }, "init": { "type": "ObjectExpression", - "start": 5473, - "end": 5511, + "start": 5759, + "end": 5797, "loc": { "start": { - "line": 174, + "line": 187, "column": 30 }, "end": { - "line": 174, + "line": 187, "column": 68 } }, "properties": [ { "type": "SpreadProperty", - "start": 5475, - "end": 5509, + "start": 5761, + "end": 5795, "loc": { "start": { - "line": 174, + "line": 187, "column": 32 }, "end": { - "line": 174, + "line": 187, "column": 66 } }, "argument": { "type": "CallExpression", - "start": 5478, - "end": 5509, + "start": 5764, + "end": 5795, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 66 } }, "callee": { "type": "MemberExpression", - "start": 5478, - "end": 5497, + "start": 5764, + "end": 5783, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 54 } }, "object": { "type": "ThisExpression", - "start": 5478, - "end": 5482, + "start": 5764, + "end": 5768, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 39 } } }, "property": { "type": "Identifier", - "start": 5483, - "end": 5497, + "start": 5769, + "end": 5783, "loc": { "start": { - "line": 174, + "line": 187, "column": 40 }, "end": { - "line": 174, + "line": 187, "column": 54 }, "identifierName": "getQueryObject" @@ -2214,15 +2214,15 @@ "arguments": [ { "type": "Identifier", - "start": 5498, - "end": 5508, + "start": 5784, + "end": 5794, "loc": { "start": { - "line": 174, + "line": 187, "column": 55 }, "end": { - "line": 174, + "line": 187, "column": 65 }, "identifierName": "datasource" @@ -2240,58 +2240,58 @@ }, { "type": "IfStatement", - "start": 5517, - "end": 5629, + "start": 5803, + "end": 5915, "loc": { "start": { - "line": 175, + "line": 188, "column": 4 }, "end": { - "line": 177, + "line": 190, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 5521, - "end": 5548, + "start": 5807, + "end": 5834, "loc": { "start": { - "line": 175, + "line": 188, "column": 8 }, "end": { - "line": 175, + "line": 188, "column": 35 } }, "object": { "type": "ThisExpression", - "start": 5521, - "end": 5525, + "start": 5807, + "end": 5811, "loc": { "start": { - "line": 175, + "line": 188, "column": 8 }, "end": { - "line": 175, + "line": 188, "column": 12 } } }, "property": { "type": "Identifier", - "start": 5526, - "end": 5548, + "start": 5812, + "end": 5834, "loc": { "start": { - "line": 175, + "line": 188, "column": 13 }, "end": { - "line": 175, + "line": 188, "column": 35 }, "identifierName": "serialiseToQueryString" @@ -2302,101 +2302,101 @@ }, "consequent": { "type": "BlockStatement", - "start": 5550, - "end": 5629, + "start": 5836, + "end": 5915, "loc": { "start": { - "line": 175, + "line": 188, "column": 37 }, "end": { - "line": 177, + "line": 190, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 5558, - "end": 5623, + "start": 5844, + "end": 5909, "loc": { "start": { - "line": 176, + "line": 189, "column": 6 }, "end": { - "line": 176, + "line": 189, "column": 71 } }, "argument": { "type": "CallExpression", - "start": 5565, - "end": 5622, + "start": 5851, + "end": 5908, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 70 } }, "callee": { "type": "MemberExpression", - "start": 5565, - "end": 5597, + "start": 5851, + "end": 5883, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 45 } }, "object": { "type": "MemberExpression", - "start": 5565, - "end": 5592, + "start": 5851, + "end": 5878, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 40 } }, "object": { "type": "ThisExpression", - "start": 5565, - "end": 5569, + "start": 5851, + "end": 5855, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 17 } } }, "property": { "type": "Identifier", - "start": 5570, - "end": 5592, + "start": 5856, + "end": 5878, "loc": { "start": { - "line": 176, + "line": 189, "column": 18 }, "end": { - "line": 176, + "line": 189, "column": 40 }, "identifierName": "serialiseToQueryString" @@ -2407,15 +2407,15 @@ }, "property": { "type": "Identifier", - "start": 5593, - "end": 5597, + "start": 5879, + "end": 5883, "loc": { "start": { - "line": 176, + "line": 189, "column": 41 }, "end": { - "line": 176, + "line": 189, "column": 45 }, "identifierName": "call" @@ -2427,30 +2427,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 5598, - "end": 5602, + "start": 5884, + "end": 5888, "loc": { "start": { - "line": 176, + "line": 189, "column": 46 }, "end": { - "line": 176, + "line": 189, "column": 50 } } }, { "type": "Identifier", - "start": 5604, - "end": 5621, + "start": 5890, + "end": 5907, "loc": { "start": { - "line": 176, + "line": 189, "column": 52 }, "end": { - "line": 176, + "line": 189, "column": 69 }, "identifierName": "objectToSerialise" @@ -2467,43 +2467,43 @@ }, { "type": "ThrowStatement", - "start": 5634, - "end": 5727, + "start": 5920, + "end": 6013, "loc": { "start": { - "line": 178, + "line": 191, "column": 4 }, "end": { - "line": 178, + "line": 191, "column": 97 } }, "argument": { "type": "NewExpression", - "start": 5640, - "end": 5726, + "start": 5926, + "end": 6012, "loc": { "start": { - "line": 178, + "line": 191, "column": 10 }, "end": { - "line": 178, + "line": 191, "column": 96 } }, "callee": { "type": "Identifier", - "start": 5644, - "end": 5649, + "start": 5930, + "end": 5935, "loc": { "start": { - "line": 178, + "line": 191, "column": 14 }, "end": { - "line": 178, + "line": 191, "column": 19 }, "identifierName": "Error" @@ -2513,15 +2513,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 5650, - "end": 5725, + "start": 5936, + "end": 6011, "loc": { "start": { - "line": 178, + "line": 191, "column": 20 }, "end": { - "line": 178, + "line": 191, "column": 95 } }, @@ -2541,15 +2541,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * a query string and returns that string.\n * This string is passed as data as\n * part of AJAX get requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {String} The query string.\n ", - "start": 5131, - "end": 5411, + "start": 5417, + "end": 5697, "loc": { "start": { - "line": 163, + "line": 176, "column": 2 }, "end": { - "line": 172, + "line": 185, "column": 5 } } @@ -2564,72 +2564,72 @@ }, { "type": "ExpressionStatement", - "start": 5735, - "end": 8081, + "start": 6021, + "end": 8367, "loc": { "start": { - "line": 182, + "line": 195, "column": 0 }, "end": { - "line": 245, + "line": 258, "column": 2 } }, "expression": { "type": "AssignmentExpression", - "start": 5735, - "end": 8080, + "start": 6021, + "end": 8366, "loc": { "start": { - "line": 182, + "line": 195, "column": 0 }, "end": { - "line": 245, + "line": 258, "column": 1 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 5735, - "end": 5766, + "start": 6021, + "end": 6052, "loc": { "start": { - "line": 182, + "line": 195, "column": 0 }, "end": { - "line": 182, + "line": 195, "column": 31 } }, "object": { "type": "MemberExpression", - "start": 5735, - "end": 5757, + "start": 6021, + "end": 6043, "loc": { "start": { - "line": 182, + "line": 195, "column": 0 }, "end": { - "line": 182, + "line": 195, "column": 22 } }, "object": { "type": "Identifier", - "start": 5735, - "end": 5747, + "start": 6021, + "end": 6033, "loc": { "start": { - "line": 182, + "line": 195, "column": 0 }, "end": { - "line": 182, + "line": 195, "column": 12 }, "identifierName": "QueryBuilder" @@ -2638,15 +2638,15 @@ }, "property": { "type": "Identifier", - "start": 5748, - "end": 5757, + "start": 6034, + "end": 6043, "loc": { "start": { - "line": 182, + "line": 195, "column": 13 }, "end": { - "line": 182, + "line": 195, "column": 22 }, "identifierName": "prototype" @@ -2657,15 +2657,15 @@ }, "property": { "type": "Identifier", - "start": 5758, - "end": 5766, + "start": 6044, + "end": 6052, "loc": { "start": { - "line": 182, + "line": 195, "column": 23 }, "end": { - "line": 182, + "line": 195, "column": 31 }, "identifierName": "defaults" @@ -2676,30 +2676,30 @@ }, "right": { "type": "ObjectExpression", - "start": 5769, - "end": 8080, + "start": 6055, + "end": 8366, "loc": { "start": { - "line": 182, + "line": 195, "column": 34 }, "end": { - "line": 245, + "line": 258, "column": 1 } }, "properties": [ { "type": "ObjectMethod", - "start": 6009, - "end": 7038, + "start": 6295, + "end": 7324, "loc": { "start": { - "line": 190, + "line": 203, "column": 2 }, "end": { - "line": 220, + "line": 233, "column": 3 } }, @@ -2708,15 +2708,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6009, - "end": 6031, + "start": 6295, + "end": 6317, "loc": { "start": { - "line": 190, + "line": 203, "column": 2 }, "end": { - "line": 190, + "line": 203, "column": 24 }, "identifierName": "serialiseToQueryObject" @@ -2732,15 +2732,15 @@ "params": [ { "type": "Identifier", - "start": 6032, - "end": 6042, + "start": 6318, + "end": 6328, "loc": { "start": { - "line": 190, + "line": 203, "column": 25 }, "end": { - "line": 190, + "line": 203, "column": 35 }, "identifierName": "datasource" @@ -2750,59 +2750,59 @@ ], "body": { "type": "BlockStatement", - "start": 6044, - "end": 7038, + "start": 6330, + "end": 7324, "loc": { "start": { - "line": 190, + "line": 203, "column": 37 }, "end": { - "line": 220, + "line": 233, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 6050, - "end": 6093, + "start": 6336, + "end": 6379, "loc": { "start": { - "line": 191, + "line": 204, "column": 4 }, "end": { - "line": 191, + "line": 204, "column": 47 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6056, - "end": 6092, + "start": 6342, + "end": 6378, "loc": { "start": { - "line": 191, + "line": 204, "column": 10 }, "end": { - "line": 191, + "line": 204, "column": 46 } }, "id": { "type": "Identifier", - "start": 6056, - "end": 6063, + "start": 6342, + "end": 6349, "loc": { "start": { - "line": 191, + "line": 204, "column": 10 }, "end": { - "line": 191, + "line": 204, "column": 17 }, "identifierName": "entries" @@ -2811,43 +2811,43 @@ }, "init": { "type": "CallExpression", - "start": 6066, - "end": 6092, + "start": 6352, + "end": 6378, "loc": { "start": { - "line": 191, + "line": 204, "column": 20 }, "end": { - "line": 191, + "line": 204, "column": 46 } }, "callee": { "type": "MemberExpression", - "start": 6066, - "end": 6080, + "start": 6352, + "end": 6366, "loc": { "start": { - "line": 191, + "line": 204, "column": 20 }, "end": { - "line": 191, + "line": 204, "column": 34 } }, "object": { "type": "Identifier", - "start": 6066, - "end": 6072, + "start": 6352, + "end": 6358, "loc": { "start": { - "line": 191, + "line": 204, "column": 20 }, "end": { - "line": 191, + "line": 204, "column": 26 }, "identifierName": "Object" @@ -2856,15 +2856,15 @@ }, "property": { "type": "Identifier", - "start": 6073, - "end": 6080, + "start": 6359, + "end": 6366, "loc": { "start": { - "line": 191, + "line": 204, "column": 27 }, "end": { - "line": 191, + "line": 204, "column": 34 }, "identifierName": "entries" @@ -2876,15 +2876,15 @@ "arguments": [ { "type": "Identifier", - "start": 6081, - "end": 6091, + "start": 6367, + "end": 6377, "loc": { "start": { - "line": 191, + "line": 204, "column": 35 }, "end": { - "line": 191, + "line": 204, "column": 45 }, "identifierName": "datasource" @@ -2899,44 +2899,44 @@ }, { "type": "VariableDeclaration", - "start": 6098, - "end": 6683, + "start": 6384, + "end": 6969, "loc": { "start": { - "line": 192, + "line": 205, "column": 4 }, "end": { - "line": 208, + "line": 221, "column": 7 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6104, - "end": 6682, + "start": 6390, + "end": 6968, "loc": { "start": { - "line": 192, + "line": 205, "column": 10 }, "end": { - "line": 208, + "line": 221, "column": 6 } }, "id": { "type": "Identifier", - "start": 6104, - "end": 6119, + "start": 6390, + "end": 6405, "loc": { "start": { - "line": 192, + "line": 205, "column": 10 }, "end": { - "line": 192, + "line": 205, "column": 25 }, "identifierName": "filteredEntries" @@ -2945,43 +2945,43 @@ }, "init": { "type": "CallExpression", - "start": 6122, - "end": 6682, + "start": 6408, + "end": 6968, "loc": { "start": { - "line": 192, + "line": 205, "column": 28 }, "end": { - "line": 208, + "line": 221, "column": 6 } }, "callee": { "type": "MemberExpression", - "start": 6122, - "end": 6136, + "start": 6408, + "end": 6422, "loc": { "start": { - "line": 192, + "line": 205, "column": 28 }, "end": { - "line": 192, + "line": 205, "column": 42 } }, "object": { "type": "Identifier", - "start": 6122, - "end": 6129, + "start": 6408, + "end": 6415, "loc": { "start": { - "line": 192, + "line": 205, "column": 28 }, "end": { - "line": 192, + "line": 205, "column": 35 }, "identifierName": "entries" @@ -2990,15 +2990,15 @@ }, "property": { "type": "Identifier", - "start": 6130, - "end": 6136, + "start": 6416, + "end": 6422, "loc": { "start": { - "line": 192, + "line": 205, "column": 36 }, "end": { - "line": 192, + "line": 205, "column": 42 }, "identifierName": "filter" @@ -3010,15 +3010,15 @@ "arguments": [ { "type": "ArrowFunctionExpression", - "start": 6137, - "end": 6681, + "start": 6423, + "end": 6967, "loc": { "start": { - "line": 192, + "line": 205, "column": 43 }, "end": { - "line": 208, + "line": 221, "column": 5 } }, @@ -3029,15 +3029,15 @@ "params": [ { "type": "Identifier", - "start": 6138, - "end": 6143, + "start": 6424, + "end": 6429, "loc": { "start": { - "line": 192, + "line": 205, "column": 44 }, "end": { - "line": 192, + "line": 205, "column": 49 }, "identifierName": "entry" @@ -3047,59 +3047,59 @@ ], "body": { "type": "BlockStatement", - "start": 6148, - "end": 6681, + "start": 6434, + "end": 6967, "loc": { "start": { - "line": 192, + "line": 205, "column": 54 }, "end": { - "line": 208, + "line": 221, "column": 5 } }, "body": [ { "type": "VariableDeclaration", - "start": 6156, - "end": 6177, + "start": 6442, + "end": 6463, "loc": { "start": { - "line": 193, + "line": 206, "column": 6 }, "end": { - "line": 193, + "line": 206, "column": 27 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6162, - "end": 6176, + "start": 6448, + "end": 6462, "loc": { "start": { - "line": 193, + "line": 206, "column": 12 }, "end": { - "line": 193, + "line": 206, "column": 26 } }, "id": { "type": "Identifier", - "start": 6162, - "end": 6165, + "start": 6448, + "end": 6451, "loc": { "start": { - "line": 193, + "line": 206, "column": 12 }, "end": { - "line": 193, + "line": 206, "column": 15 }, "identifierName": "key" @@ -3108,29 +3108,29 @@ }, "init": { "type": "MemberExpression", - "start": 6168, - "end": 6176, + "start": 6454, + "end": 6462, "loc": { "start": { - "line": 193, + "line": 206, "column": 18 }, "end": { - "line": 193, + "line": 206, "column": 26 } }, "object": { "type": "Identifier", - "start": 6168, - "end": 6173, + "start": 6454, + "end": 6459, "loc": { "start": { - "line": 193, + "line": 206, "column": 18 }, "end": { - "line": 193, + "line": 206, "column": 23 }, "identifierName": "entry" @@ -3139,15 +3139,15 @@ }, "property": { "type": "NumericLiteral", - "start": 6174, - "end": 6175, + "start": 6460, + "end": 6461, "loc": { "start": { - "line": 193, + "line": 206, "column": 24 }, "end": { - "line": 193, + "line": 206, "column": 25 } }, @@ -3165,85 +3165,85 @@ }, { "type": "IfStatement", - "start": 6184, - "end": 6320, + "start": 6470, + "end": 6606, "loc": { "start": { - "line": 194, + "line": 207, "column": 6 }, "end": { - "line": 196, + "line": 209, "column": 7 } }, "test": { "type": "LogicalExpression", - "start": 6188, - "end": 6231, + "start": 6474, + "end": 6517, "loc": { "start": { - "line": 194, + "line": 207, "column": 10 }, "end": { - "line": 194, + "line": 207, "column": 53 } }, "left": { "type": "BinaryExpression", - "start": 6188, - "end": 6210, + "start": 6474, + "end": 6496, "loc": { "start": { - "line": 194, + "line": 207, "column": 10 }, "end": { - "line": 194, + "line": 207, "column": 32 } }, "left": { "type": "CallExpression", - "start": 6188, - "end": 6204, + "start": 6474, + "end": 6490, "loc": { "start": { - "line": 194, + "line": 207, "column": 10 }, "end": { - "line": 194, + "line": 207, "column": 26 } }, "callee": { "type": "MemberExpression", - "start": 6188, - "end": 6199, + "start": 6474, + "end": 6485, "loc": { "start": { - "line": 194, + "line": 207, "column": 10 }, "end": { - "line": 194, + "line": 207, "column": 21 } }, "object": { "type": "Identifier", - "start": 6188, - "end": 6191, + "start": 6474, + "end": 6477, "loc": { "start": { - "line": 194, + "line": 207, "column": 10 }, "end": { - "line": 194, + "line": 207, "column": 13 }, "identifierName": "key" @@ -3252,15 +3252,15 @@ }, "property": { "type": "Identifier", - "start": 6192, - "end": 6199, + "start": 6478, + "end": 6485, "loc": { "start": { - "line": 194, + "line": 207, "column": 14 }, "end": { - "line": 194, + "line": 207, "column": 21 }, "identifierName": "indexOf" @@ -3272,15 +3272,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 6200, - "end": 6203, + "start": 6486, + "end": 6489, "loc": { "start": { - "line": 194, + "line": 207, "column": 22 }, "end": { - "line": 194, + "line": 207, "column": 25 } }, @@ -3295,15 +3295,15 @@ "operator": "===", "right": { "type": "NumericLiteral", - "start": 6209, - "end": 6210, + "start": 6495, + "end": 6496, "loc": { "start": { - "line": 194, + "line": 207, "column": 31 }, "end": { - "line": 194, + "line": 207, "column": 32 } }, @@ -3317,29 +3317,29 @@ "operator": "||", "right": { "type": "BinaryExpression", - "start": 6214, - "end": 6231, + "start": 6500, + "end": 6517, "loc": { "start": { - "line": 194, + "line": 207, "column": 36 }, "end": { - "line": 194, + "line": 207, "column": 53 } }, "left": { "type": "Identifier", - "start": 6214, - "end": 6217, + "start": 6500, + "end": 6503, "loc": { "start": { - "line": 194, + "line": 207, "column": 36 }, "end": { - "line": 194, + "line": 207, "column": 39 }, "identifierName": "key" @@ -3349,15 +3349,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 6222, - "end": 6231, + "start": 6508, + "end": 6517, "loc": { "start": { - "line": 194, + "line": 207, "column": 44 }, "end": { - "line": 194, + "line": 207, "column": 53 } }, @@ -3371,44 +3371,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 6233, - "end": 6320, + "start": 6519, + "end": 6606, "loc": { "start": { - "line": 194, + "line": 207, "column": 55 }, "end": { - "line": 196, + "line": 209, "column": 7 } }, "body": [ { "type": "ReturnStatement", - "start": 6299, - "end": 6312, + "start": 6585, + "end": 6598, "loc": { "start": { - "line": 195, + "line": 208, "column": 8 }, "end": { - "line": 195, + "line": 208, "column": 21 } }, "argument": { "type": "BooleanLiteral", - "start": 6306, - "end": 6311, + "start": 6592, + "end": 6597, "loc": { "start": { - "line": 195, + "line": 208, "column": 15 }, "end": { - "line": 195, + "line": 208, "column": 20 } }, @@ -3419,15 +3419,15 @@ { "type": "CommentLine", "value": " Ignore 'private' properties and specified properties", - "start": 6235, - "end": 6290, + "start": 6521, + "end": 6576, "loc": { "start": { - "line": 194, + "line": 207, "column": 57 }, "end": { - "line": 194, + "line": 207, "column": 112 } } @@ -3443,15 +3443,15 @@ { "type": "CommentLine", "value": " Ignore properties that shouldn't be serialised,", - "start": 6327, - "end": 6377, + "start": 6613, + "end": 6663, "loc": { "start": { - "line": 197, + "line": 210, "column": 6 }, "end": { - "line": 197, + "line": 210, "column": 56 } } @@ -3459,15 +3459,15 @@ { "type": "CommentLine", "value": " i.e. properties that configures the serialisation", - "start": 6384, - "end": 6436, + "start": 6670, + "end": 6722, "loc": { "start": { - "line": 198, + "line": 211, "column": 6 }, "end": { - "line": 198, + "line": 211, "column": 58 } } @@ -3475,15 +3475,15 @@ { "type": "CommentLine", "value": " itself.", - "start": 6443, - "end": 6453, + "start": 6729, + "end": 6739, "loc": { "start": { - "line": 199, + "line": 212, "column": 6 }, "end": { - "line": 199, + "line": 212, "column": 16 } } @@ -3492,44 +3492,44 @@ }, { "type": "VariableDeclaration", - "start": 6460, - "end": 6483, + "start": 6746, + "end": 6769, "loc": { "start": { - "line": 200, + "line": 213, "column": 6 }, "end": { - "line": 200, + "line": 213, "column": 29 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6466, - "end": 6482, + "start": 6752, + "end": 6768, "loc": { "start": { - "line": 200, + "line": 213, "column": 12 }, "end": { - "line": 200, + "line": 213, "column": 28 } }, "id": { "type": "Identifier", - "start": 6466, - "end": 6471, + "start": 6752, + "end": 6757, "loc": { "start": { - "line": 200, + "line": 213, "column": 12 }, "end": { - "line": 200, + "line": 213, "column": 17 }, "identifierName": "value" @@ -3539,29 +3539,29 @@ }, "init": { "type": "MemberExpression", - "start": 6474, - "end": 6482, + "start": 6760, + "end": 6768, "loc": { "start": { - "line": 200, + "line": 213, "column": 20 }, "end": { - "line": 200, + "line": 213, "column": 28 } }, "object": { "type": "Identifier", - "start": 6474, - "end": 6479, + "start": 6760, + "end": 6765, "loc": { "start": { - "line": 200, + "line": 213, "column": 20 }, "end": { - "line": 200, + "line": 213, "column": 25 }, "identifierName": "entry" @@ -3570,15 +3570,15 @@ }, "property": { "type": "NumericLiteral", - "start": 6480, - "end": 6481, + "start": 6766, + "end": 6767, "loc": { "start": { - "line": 200, + "line": 213, "column": 26 }, "end": { - "line": 200, + "line": 213, "column": 27 } }, @@ -3598,15 +3598,15 @@ { "type": "CommentLine", "value": " Ignore properties that shouldn't be serialised,", - "start": 6327, - "end": 6377, + "start": 6613, + "end": 6663, "loc": { "start": { - "line": 197, + "line": 210, "column": 6 }, "end": { - "line": 197, + "line": 210, "column": 56 } } @@ -3614,15 +3614,15 @@ { "type": "CommentLine", "value": " i.e. properties that configures the serialisation", - "start": 6384, - "end": 6436, + "start": 6670, + "end": 6722, "loc": { "start": { - "line": 198, + "line": 211, "column": 6 }, "end": { - "line": 198, + "line": 211, "column": 58 } } @@ -3630,15 +3630,15 @@ { "type": "CommentLine", "value": " itself.", - "start": 6443, - "end": 6453, + "start": 6729, + "end": 6739, "loc": { "start": { - "line": 199, + "line": 212, "column": 6 }, "end": { - "line": 199, + "line": 212, "column": 16 } } @@ -3647,43 +3647,43 @@ }, { "type": "IfStatement", - "start": 6490, - "end": 6572, + "start": 6776, + "end": 6858, "loc": { "start": { - "line": 201, + "line": 214, "column": 6 }, "end": { - "line": 203, + "line": 216, "column": 7 } }, "test": { "type": "BinaryExpression", - "start": 6494, - "end": 6508, + "start": 6780, + "end": 6794, "loc": { "start": { - "line": 201, + "line": 214, "column": 10 }, "end": { - "line": 201, + "line": 214, "column": 24 } }, "left": { "type": "Identifier", - "start": 6494, - "end": 6499, + "start": 6780, + "end": 6785, "loc": { "start": { - "line": 201, + "line": 214, "column": 10 }, "end": { - "line": 201, + "line": 214, "column": 15 }, "identifierName": "value" @@ -3693,15 +3693,15 @@ "operator": "===", "right": { "type": "NullLiteral", - "start": 6504, - "end": 6508, + "start": 6790, + "end": 6794, "loc": { "start": { - "line": 201, + "line": 214, "column": 20 }, "end": { - "line": 201, + "line": 214, "column": 24 } } @@ -3709,44 +3709,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 6510, - "end": 6572, + "start": 6796, + "end": 6858, "loc": { "start": { - "line": 201, + "line": 214, "column": 26 }, "end": { - "line": 203, + "line": 216, "column": 7 } }, "body": [ { "type": "ReturnStatement", - "start": 6551, - "end": 6564, + "start": 6837, + "end": 6850, "loc": { "start": { - "line": 202, + "line": 215, "column": 8 }, "end": { - "line": 202, + "line": 215, "column": 21 } }, "argument": { "type": "BooleanLiteral", - "start": 6558, - "end": 6563, + "start": 6844, + "end": 6849, "loc": { "start": { - "line": 202, + "line": 215, "column": 15 }, "end": { - "line": 202, + "line": 215, "column": 20 } }, @@ -3757,15 +3757,15 @@ { "type": "CommentLine", "value": " Don't serialise null values", - "start": 6512, - "end": 6542, + "start": 6798, + "end": 6828, "loc": { "start": { - "line": 201, + "line": 214, "column": 28 }, "end": { - "line": 201, + "line": 214, "column": 58 } } @@ -3779,57 +3779,57 @@ }, { "type": "IfStatement", - "start": 6579, - "end": 6656, + "start": 6865, + "end": 6942, "loc": { "start": { - "line": 204, + "line": 217, "column": 6 }, "end": { - "line": 206, + "line": 219, "column": 7 } }, "test": { "type": "LogicalExpression", - "start": 6583, - "end": 6623, + "start": 6869, + "end": 6909, "loc": { "start": { - "line": 204, + "line": 217, "column": 10 }, "end": { - "line": 204, + "line": 217, "column": 50 } }, "left": { "type": "BinaryExpression", - "start": 6583, - "end": 6605, + "start": 6869, + "end": 6891, "loc": { "start": { - "line": 204, + "line": 217, "column": 10 }, "end": { - "line": 204, + "line": 217, "column": 32 } }, "left": { "type": "Identifier", - "start": 6583, - "end": 6586, + "start": 6869, + "end": 6872, "loc": { "start": { - "line": 204, + "line": 217, "column": 10 }, "end": { - "line": 204, + "line": 217, "column": 13 }, "identifierName": "key" @@ -3839,15 +3839,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 6591, - "end": 6605, + "start": 6877, + "end": 6891, "loc": { "start": { - "line": 204, + "line": 217, "column": 18 }, "end": { - "line": 204, + "line": 217, "column": 32 } }, @@ -3861,29 +3861,29 @@ "operator": "||", "right": { "type": "BinaryExpression", - "start": 6609, - "end": 6623, + "start": 6895, + "end": 6909, "loc": { "start": { - "line": 204, + "line": 217, "column": 36 }, "end": { - "line": 204, + "line": 217, "column": 50 } }, "left": { "type": "Identifier", - "start": 6609, - "end": 6612, + "start": 6895, + "end": 6898, "loc": { "start": { - "line": 204, + "line": 217, "column": 36 }, "end": { - "line": 204, + "line": 217, "column": 39 }, "identifierName": "key" @@ -3893,15 +3893,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 6617, - "end": 6623, + "start": 6903, + "end": 6909, "loc": { "start": { - "line": 204, + "line": 217, "column": 44 }, "end": { - "line": 204, + "line": 217, "column": 50 } }, @@ -3915,44 +3915,44 @@ }, "consequent": { "type": "BlockStatement", - "start": 6625, - "end": 6656, + "start": 6911, + "end": 6942, "loc": { "start": { - "line": 204, + "line": 217, "column": 52 }, "end": { - "line": 206, + "line": 219, "column": 7 } }, "body": [ { "type": "ReturnStatement", - "start": 6635, - "end": 6648, + "start": 6921, + "end": 6934, "loc": { "start": { - "line": 205, + "line": 218, "column": 8 }, "end": { - "line": 205, + "line": 218, "column": 21 } }, "argument": { "type": "BooleanLiteral", - "start": 6642, - "end": 6647, + "start": 6928, + "end": 6933, "loc": { "start": { - "line": 205, + "line": 218, "column": 15 }, "end": { - "line": 205, + "line": 218, "column": 20 } }, @@ -3966,29 +3966,29 @@ }, { "type": "ReturnStatement", - "start": 6663, - "end": 6675, + "start": 6949, + "end": 6961, "loc": { "start": { - "line": 207, + "line": 220, "column": 6 }, "end": { - "line": 207, + "line": 220, "column": 18 } }, "argument": { "type": "BooleanLiteral", - "start": 6670, - "end": 6674, + "start": 6956, + "end": 6960, "loc": { "start": { - "line": 207, + "line": 220, "column": 13 }, "end": { - "line": 207, + "line": 220, "column": 17 } }, @@ -4007,44 +4007,44 @@ }, { "type": "VariableDeclaration", - "start": 6688, - "end": 6871, + "start": 6974, + "end": 7157, "loc": { "start": { - "line": 209, + "line": 222, "column": 4 }, "end": { - "line": 213, + "line": 226, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6694, - "end": 6870, + "start": 6980, + "end": 7156, "loc": { "start": { - "line": 209, + "line": 222, "column": 10 }, "end": { - "line": 213, + "line": 226, "column": 5 } }, "id": { "type": "Identifier", - "start": 6694, - "end": 6705, + "start": 6980, + "end": 6991, "loc": { "start": { - "line": 209, + "line": 222, "column": 10 }, "end": { - "line": 209, + "line": 222, "column": 21 }, "identifierName": "queryObject" @@ -4053,30 +4053,30 @@ }, "init": { "type": "ObjectExpression", - "start": 6708, - "end": 6870, + "start": 6994, + "end": 7156, "loc": { "start": { - "line": 209, + "line": 222, "column": 24 }, "end": { - "line": 213, + "line": 226, "column": 5 } }, "properties": [ { "type": "ObjectProperty", - "start": 6842, - "end": 6863, + "start": 7128, + "end": 7149, "loc": { "start": { - "line": 212, + "line": 225, "column": 6 }, "end": { - "line": 212, + "line": 225, "column": 27 } }, @@ -4085,15 +4085,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 6842, - "end": 6846, + "start": 7128, + "end": 7132, "loc": { "start": { - "line": 212, + "line": 225, "column": 6 }, "end": { - "line": 212, + "line": 225, "column": 10 }, "identifierName": "page" @@ -4103,29 +4103,29 @@ }, "value": { "type": "MemberExpression", - "start": 6848, - "end": 6863, + "start": 7134, + "end": 7149, "loc": { "start": { - "line": 212, + "line": 225, "column": 12 }, "end": { - "line": 212, + "line": 225, "column": 27 } }, "object": { "type": "Identifier", - "start": 6848, - "end": 6858, + "start": 7134, + "end": 7144, "loc": { "start": { - "line": 212, + "line": 225, "column": 12 }, "end": { - "line": 212, + "line": 225, "column": 22 }, "identifierName": "datasource" @@ -4134,15 +4134,15 @@ }, "property": { "type": "Identifier", - "start": 6859, - "end": 6863, + "start": 7145, + "end": 7149, "loc": { "start": { - "line": 212, + "line": 225, "column": 23 }, "end": { - "line": 212, + "line": 225, "column": 27 }, "identifierName": "page" @@ -4155,15 +4155,15 @@ { "type": "CommentLine", "value": " Computed getters doesn't get included in ES6 spread syntax,", - "start": 6716, - "end": 6778, + "start": 7002, + "end": 7064, "loc": { "start": { - "line": 210, + "line": 223, "column": 6 }, "end": { - "line": 210, + "line": 223, "column": 68 } } @@ -4171,15 +4171,15 @@ { "type": "CommentLine", "value": " so we manually include the necessary one below.", - "start": 6785, - "end": 6835, + "start": 7071, + "end": 7121, "loc": { "start": { - "line": 211, + "line": 224, "column": 6 }, "end": { - "line": 211, + "line": 224, "column": 56 } } @@ -4194,57 +4194,57 @@ }, { "type": "ExpressionStatement", - "start": 6876, - "end": 7010, + "start": 7162, + "end": 7296, "loc": { "start": { - "line": 214, + "line": 227, "column": 4 }, "end": { - "line": 218, + "line": 231, "column": 7 } }, "expression": { "type": "CallExpression", - "start": 6876, - "end": 7009, + "start": 7162, + "end": 7295, "loc": { "start": { - "line": 214, + "line": 227, "column": 4 }, "end": { - "line": 218, + "line": 231, "column": 6 } }, "callee": { "type": "MemberExpression", - "start": 6876, - "end": 6899, + "start": 7162, + "end": 7185, "loc": { "start": { - "line": 214, + "line": 227, "column": 4 }, "end": { - "line": 214, + "line": 227, "column": 27 } }, "object": { "type": "Identifier", - "start": 6876, - "end": 6891, + "start": 7162, + "end": 7177, "loc": { "start": { - "line": 214, + "line": 227, "column": 4 }, "end": { - "line": 214, + "line": 227, "column": 19 }, "identifierName": "filteredEntries" @@ -4253,15 +4253,15 @@ }, "property": { "type": "Identifier", - "start": 6892, - "end": 6899, + "start": 7178, + "end": 7185, "loc": { "start": { - "line": 214, + "line": 227, "column": 20 }, "end": { - "line": 214, + "line": 227, "column": 27 }, "identifierName": "forEach" @@ -4273,15 +4273,15 @@ "arguments": [ { "type": "ArrowFunctionExpression", - "start": 6900, - "end": 7008, + "start": 7186, + "end": 7294, "loc": { "start": { - "line": 214, + "line": 227, "column": 28 }, "end": { - "line": 218, + "line": 231, "column": 5 } }, @@ -4292,15 +4292,15 @@ "params": [ { "type": "Identifier", - "start": 6901, - "end": 6906, + "start": 7187, + "end": 7192, "loc": { "start": { - "line": 214, + "line": 227, "column": 29 }, "end": { - "line": 214, + "line": 227, "column": 34 }, "identifierName": "entry" @@ -4310,59 +4310,59 @@ ], "body": { "type": "BlockStatement", - "start": 6911, - "end": 7008, + "start": 7197, + "end": 7294, "loc": { "start": { - "line": 214, + "line": 227, "column": 39 }, "end": { - "line": 218, + "line": 231, "column": 5 } }, "body": [ { "type": "VariableDeclaration", - "start": 6919, - "end": 6940, + "start": 7205, + "end": 7226, "loc": { "start": { - "line": 215, + "line": 228, "column": 6 }, "end": { - "line": 215, + "line": 228, "column": 27 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6925, - "end": 6939, + "start": 7211, + "end": 7225, "loc": { "start": { - "line": 215, + "line": 228, "column": 12 }, "end": { - "line": 215, + "line": 228, "column": 26 } }, "id": { "type": "Identifier", - "start": 6925, - "end": 6928, + "start": 7211, + "end": 7214, "loc": { "start": { - "line": 215, + "line": 228, "column": 12 }, "end": { - "line": 215, + "line": 228, "column": 15 }, "identifierName": "key" @@ -4371,29 +4371,29 @@ }, "init": { "type": "MemberExpression", - "start": 6931, - "end": 6939, + "start": 7217, + "end": 7225, "loc": { "start": { - "line": 215, + "line": 228, "column": 18 }, "end": { - "line": 215, + "line": 228, "column": 26 } }, "object": { "type": "Identifier", - "start": 6931, - "end": 6936, + "start": 7217, + "end": 7222, "loc": { "start": { - "line": 215, + "line": 228, "column": 18 }, "end": { - "line": 215, + "line": 228, "column": 23 }, "identifierName": "entry" @@ -4402,15 +4402,15 @@ }, "property": { "type": "NumericLiteral", - "start": 6937, - "end": 6938, + "start": 7223, + "end": 7224, "loc": { "start": { - "line": 215, + "line": 228, "column": 24 }, "end": { - "line": 215, + "line": 228, "column": 25 } }, @@ -4428,44 +4428,44 @@ }, { "type": "VariableDeclaration", - "start": 6947, - "end": 6970, + "start": 7233, + "end": 7256, "loc": { "start": { - "line": 216, + "line": 229, "column": 6 }, "end": { - "line": 216, + "line": 229, "column": 29 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 6953, - "end": 6969, + "start": 7239, + "end": 7255, "loc": { "start": { - "line": 216, + "line": 229, "column": 12 }, "end": { - "line": 216, + "line": 229, "column": 28 } }, "id": { "type": "Identifier", - "start": 6953, - "end": 6958, + "start": 7239, + "end": 7244, "loc": { "start": { - "line": 216, + "line": 229, "column": 12 }, "end": { - "line": 216, + "line": 229, "column": 17 }, "identifierName": "value" @@ -4474,29 +4474,29 @@ }, "init": { "type": "MemberExpression", - "start": 6961, - "end": 6969, + "start": 7247, + "end": 7255, "loc": { "start": { - "line": 216, + "line": 229, "column": 20 }, "end": { - "line": 216, + "line": 229, "column": 28 } }, "object": { "type": "Identifier", - "start": 6961, - "end": 6966, + "start": 7247, + "end": 7252, "loc": { "start": { - "line": 216, + "line": 229, "column": 20 }, "end": { - "line": 216, + "line": 229, "column": 25 }, "identifierName": "entry" @@ -4505,15 +4505,15 @@ }, "property": { "type": "NumericLiteral", - "start": 6967, - "end": 6968, + "start": 7253, + "end": 7254, "loc": { "start": { - "line": 216, + "line": 229, "column": 26 }, "end": { - "line": 216, + "line": 229, "column": 27 } }, @@ -4531,58 +4531,58 @@ }, { "type": "ExpressionStatement", - "start": 6977, - "end": 7002, + "start": 7263, + "end": 7288, "loc": { "start": { - "line": 217, + "line": 230, "column": 6 }, "end": { - "line": 217, + "line": 230, "column": 31 } }, "expression": { "type": "AssignmentExpression", - "start": 6977, - "end": 7001, + "start": 7263, + "end": 7287, "loc": { "start": { - "line": 217, + "line": 230, "column": 6 }, "end": { - "line": 217, + "line": 230, "column": 30 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 6977, - "end": 6993, + "start": 7263, + "end": 7279, "loc": { "start": { - "line": 217, + "line": 230, "column": 6 }, "end": { - "line": 217, + "line": 230, "column": 22 } }, "object": { "type": "Identifier", - "start": 6977, - "end": 6988, + "start": 7263, + "end": 7274, "loc": { "start": { - "line": 217, + "line": 230, "column": 6 }, "end": { - "line": 217, + "line": 230, "column": 17 }, "identifierName": "queryObject" @@ -4591,15 +4591,15 @@ }, "property": { "type": "Identifier", - "start": 6989, - "end": 6992, + "start": 7275, + "end": 7278, "loc": { "start": { - "line": 217, + "line": 230, "column": 18 }, "end": { - "line": 217, + "line": 230, "column": 21 }, "identifierName": "key" @@ -4610,15 +4610,15 @@ }, "right": { "type": "Identifier", - "start": 6996, - "end": 7001, + "start": 7282, + "end": 7287, "loc": { "start": { - "line": 217, + "line": 230, "column": 25 }, "end": { - "line": 217, + "line": 230, "column": 30 }, "identifierName": "value" @@ -4636,29 +4636,29 @@ }, { "type": "ReturnStatement", - "start": 7015, - "end": 7034, + "start": 7301, + "end": 7320, "loc": { "start": { - "line": 219, + "line": 232, "column": 4 }, "end": { - "line": 219, + "line": 232, "column": 23 } }, "argument": { "type": "Identifier", - "start": 7022, - "end": 7033, + "start": 7308, + "end": 7319, "loc": { "start": { - "line": 219, + "line": 232, "column": 11 }, "end": { - "line": 219, + "line": 232, "column": 22 }, "identifierName": "queryObject" @@ -4673,15 +4673,15 @@ { "type": "CommentLine", "value": " Properties to include in the", - "start": 5773, - "end": 5804, + "start": 6059, + "end": 6090, "loc": { "start": { - "line": 183, + "line": 196, "column": 2 }, "end": { - "line": 183, + "line": 196, "column": 33 } } @@ -4689,15 +4689,15 @@ { "type": "CommentLine", "value": " serialisation to GET query string,", - "start": 5807, - "end": 5844, + "start": 6093, + "end": 6130, "loc": { "start": { - "line": 184, + "line": 197, "column": 2 }, "end": { - "line": 184, + "line": 197, "column": 39 } } @@ -4705,15 +4705,15 @@ { "type": "CommentLine", "value": " or when constructing the", - "start": 5847, - "end": 5874, + "start": 6133, + "end": 6160, "loc": { "start": { - "line": 185, + "line": 198, "column": 2 }, "end": { - "line": 185, + "line": 198, "column": 29 } } @@ -4721,15 +4721,15 @@ { "type": "CommentLine", "value": " data object.", - "start": 5877, - "end": 5892, + "start": 6163, + "end": 6178, "loc": { "start": { - "line": 186, + "line": 199, "column": 2 }, "end": { - "line": 186, + "line": 199, "column": 17 } } @@ -4737,15 +4737,15 @@ { "type": "CommentLine", "value": " By default, it only include", - "start": 5895, - "end": 5925, + "start": 6181, + "end": 6211, "loc": { "start": { - "line": 187, + "line": 200, "column": 2 }, "end": { - "line": 187, + "line": 200, "column": 32 } } @@ -4753,15 +4753,15 @@ { "type": "CommentLine", "value": " primitive properties, ignoring", - "start": 5928, - "end": 5961, + "start": 6214, + "end": 6247, "loc": { "start": { - "line": 188, + "line": 201, "column": 2 }, "end": { - "line": 188, + "line": 201, "column": 35 } } @@ -4769,15 +4769,15 @@ { "type": "CommentLine", "value": " objects, arrays and certain properties.", - "start": 5964, - "end": 6006, + "start": 6250, + "end": 6292, "loc": { "start": { - "line": 189, + "line": 202, "column": 2 }, "end": { - "line": 189, + "line": 202, "column": 44 } } @@ -4786,15 +4786,15 @@ }, { "type": "ObjectMethod", - "start": 7083, - "end": 7678, + "start": 7369, + "end": 7964, "loc": { "start": { - "line": 222, + "line": 235, "column": 2 }, "end": { - "line": 233, + "line": 246, "column": 3 } }, @@ -4803,15 +4803,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 7083, - "end": 7105, + "start": 7369, + "end": 7391, "loc": { "start": { - "line": 222, + "line": 235, "column": 2 }, "end": { - "line": 222, + "line": 235, "column": 24 }, "identifierName": "serialiseToQueryString" @@ -4827,15 +4827,15 @@ "params": [ { "type": "Identifier", - "start": 7106, - "end": 7123, + "start": 7392, + "end": 7409, "loc": { "start": { - "line": 222, + "line": 235, "column": 25 }, "end": { - "line": 222, + "line": 235, "column": 42 }, "identifierName": "objectToSerialise" @@ -4845,100 +4845,100 @@ ], "body": { "type": "BlockStatement", - "start": 7125, - "end": 7678, + "start": 7411, + "end": 7964, "loc": { "start": { - "line": 222, + "line": 235, "column": 44 }, "end": { - "line": 233, + "line": 246, "column": 3 } }, "body": [ { "type": "ExpressionStatement", - "start": 7131, - "end": 7596, + "start": 7417, + "end": 7882, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 231, + "line": 244, "column": 7 } }, "expression": { "type": "CallExpression", - "start": 7131, - "end": 7595, + "start": 7417, + "end": 7881, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 231, + "line": 244, "column": 6 } }, "callee": { "type": "MemberExpression", - "start": 7131, - "end": 7169, + "start": 7417, + "end": 7455, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 223, + "line": 236, "column": 42 } }, "object": { "type": "CallExpression", - "start": 7131, - "end": 7161, + "start": 7417, + "end": 7447, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 223, + "line": 236, "column": 34 } }, "callee": { "type": "MemberExpression", - "start": 7131, - "end": 7142, + "start": 7417, + "end": 7428, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 223, + "line": 236, "column": 15 } }, "object": { "type": "Identifier", - "start": 7131, - "end": 7137, + "start": 7417, + "end": 7423, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 223, + "line": 236, "column": 10 }, "identifierName": "Object" @@ -4947,15 +4947,15 @@ }, "property": { "type": "Identifier", - "start": 7138, - "end": 7142, + "start": 7424, + "end": 7428, "loc": { "start": { - "line": 223, + "line": 236, "column": 11 }, "end": { - "line": 223, + "line": 236, "column": 15 }, "identifierName": "keys" @@ -4967,15 +4967,15 @@ "arguments": [ { "type": "Identifier", - "start": 7143, - "end": 7160, + "start": 7429, + "end": 7446, "loc": { "start": { - "line": 223, + "line": 236, "column": 16 }, "end": { - "line": 223, + "line": 236, "column": 33 }, "identifierName": "objectToSerialise" @@ -4986,15 +4986,15 @@ }, "property": { "type": "Identifier", - "start": 7162, - "end": 7169, + "start": 7448, + "end": 7455, "loc": { "start": { - "line": 223, + "line": 236, "column": 35 }, "end": { - "line": 223, + "line": 236, "column": 42 }, "identifierName": "forEach" @@ -5006,15 +5006,15 @@ "arguments": [ { "type": "ArrowFunctionExpression", - "start": 7170, - "end": 7594, + "start": 7456, + "end": 7880, "loc": { "start": { - "line": 223, + "line": 236, "column": 43 }, "end": { - "line": 231, + "line": 244, "column": 5 } }, @@ -5025,15 +5025,15 @@ "params": [ { "type": "Identifier", - "start": 7171, - "end": 7175, + "start": 7457, + "end": 7461, "loc": { "start": { - "line": 223, + "line": 236, "column": 44 }, "end": { - "line": 223, + "line": 236, "column": 48 }, "identifierName": "prop" @@ -5043,86 +5043,86 @@ ], "body": { "type": "BlockStatement", - "start": 7180, - "end": 7594, + "start": 7466, + "end": 7880, "loc": { "start": { - "line": 223, + "line": 236, "column": 53 }, "end": { - "line": 231, + "line": 244, "column": 5 } }, "body": [ { "type": "IfStatement", - "start": 7188, - "end": 7588, + "start": 7474, + "end": 7874, "loc": { "start": { - "line": 224, + "line": 237, "column": 6 }, "end": { - "line": 230, + "line": 243, "column": 7 } }, "test": { "type": "LogicalExpression", - "start": 7192, - "end": 7275, + "start": 7478, + "end": 7561, "loc": { "start": { - "line": 224, + "line": 237, "column": 10 }, "end": { - "line": 224, + "line": 237, "column": 93 } }, "left": { "type": "CallExpression", - "start": 7192, - "end": 7230, + "start": 7478, + "end": 7516, "loc": { "start": { - "line": 224, + "line": 237, "column": 10 }, "end": { - "line": 224, + "line": 237, "column": 48 } }, "callee": { "type": "MemberExpression", - "start": 7192, - "end": 7205, + "start": 7478, + "end": 7491, "loc": { "start": { - "line": 224, + "line": 237, "column": 10 }, "end": { - "line": 224, + "line": 237, "column": 23 } }, "object": { "type": "Identifier", - "start": 7192, - "end": 7197, + "start": 7478, + "end": 7483, "loc": { "start": { - "line": 224, + "line": 237, "column": 10 }, "end": { - "line": 224, + "line": 237, "column": 15 }, "identifierName": "Array" @@ -5131,15 +5131,15 @@ }, "property": { "type": "Identifier", - "start": 7198, - "end": 7205, + "start": 7484, + "end": 7491, "loc": { "start": { - "line": 224, + "line": 237, "column": 16 }, "end": { - "line": 224, + "line": 237, "column": 23 }, "identifierName": "isArray" @@ -5151,29 +5151,29 @@ "arguments": [ { "type": "MemberExpression", - "start": 7206, - "end": 7229, + "start": 7492, + "end": 7515, "loc": { "start": { - "line": 224, + "line": 237, "column": 24 }, "end": { - "line": 224, + "line": 237, "column": 47 } }, "object": { "type": "Identifier", - "start": 7206, - "end": 7223, + "start": 7492, + "end": 7509, "loc": { "start": { - "line": 224, + "line": 237, "column": 24 }, "end": { - "line": 224, + "line": 237, "column": 41 }, "identifierName": "objectToSerialise" @@ -5182,15 +5182,15 @@ }, "property": { "type": "Identifier", - "start": 7224, - "end": 7228, + "start": 7510, + "end": 7514, "loc": { "start": { - "line": 224, + "line": 237, "column": 42 }, "end": { - "line": 224, + "line": 237, "column": 46 }, "identifierName": "prop" @@ -5204,29 +5204,29 @@ "operator": "&&", "right": { "type": "CallExpression", - "start": 7234, - "end": 7275, + "start": 7520, + "end": 7561, "loc": { "start": { - "line": 224, + "line": 237, "column": 52 }, "end": { - "line": 224, + "line": 237, "column": 93 } }, "callee": { "type": "Identifier", - "start": 7234, - "end": 7250, + "start": 7520, + "end": 7536, "loc": { "start": { - "line": 224, + "line": 237, "column": 52 }, "end": { - "line": 224, + "line": 237, "column": 68 }, "identifierName": "hasObjectInArray" @@ -5236,29 +5236,29 @@ "arguments": [ { "type": "MemberExpression", - "start": 7251, - "end": 7274, + "start": 7537, + "end": 7560, "loc": { "start": { - "line": 224, + "line": 237, "column": 69 }, "end": { - "line": 224, + "line": 237, "column": 92 } }, "object": { "type": "Identifier", - "start": 7251, - "end": 7268, + "start": 7537, + "end": 7554, "loc": { "start": { - "line": 224, + "line": 237, "column": 69 }, "end": { - "line": 224, + "line": 237, "column": 86 }, "identifierName": "objectToSerialise" @@ -5267,15 +5267,15 @@ }, "property": { "type": "Identifier", - "start": 7269, - "end": 7273, + "start": 7555, + "end": 7559, "loc": { "start": { - "line": 224, + "line": 237, "column": 87 }, "end": { - "line": 224, + "line": 237, "column": 91 }, "identifierName": "prop" @@ -5289,73 +5289,73 @@ }, "consequent": { "type": "BlockStatement", - "start": 7277, - "end": 7449, + "start": 7563, + "end": 7735, "loc": { "start": { - "line": 224, + "line": 237, "column": 95 }, "end": { - "line": 228, + "line": 241, "column": 7 } }, "body": [ { "type": "ForStatement", - "start": 7287, - "end": 7441, + "start": 7573, + "end": 7727, "loc": { "start": { - "line": 225, + "line": 238, "column": 8 }, "end": { - "line": 227, + "line": 240, "column": 9 } }, "init": { "type": "VariableDeclaration", - "start": 7292, - "end": 7301, + "start": 7578, + "end": 7587, "loc": { "start": { - "line": 225, + "line": 238, "column": 13 }, "end": { - "line": 225, + "line": 238, "column": 22 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 7296, - "end": 7301, + "start": 7582, + "end": 7587, "loc": { "start": { - "line": 225, + "line": 238, "column": 17 }, "end": { - "line": 225, + "line": 238, "column": 22 } }, "id": { "type": "Identifier", - "start": 7296, - "end": 7297, + "start": 7582, + "end": 7583, "loc": { "start": { - "line": 225, + "line": 238, "column": 17 }, "end": { - "line": 225, + "line": 238, "column": 18 }, "identifierName": "i" @@ -5364,15 +5364,15 @@ }, "init": { "type": "NumericLiteral", - "start": 7300, - "end": 7301, + "start": 7586, + "end": 7587, "loc": { "start": { - "line": 225, + "line": 238, "column": 21 }, "end": { - "line": 225, + "line": 238, "column": 22 } }, @@ -5388,29 +5388,29 @@ }, "test": { "type": "BinaryExpression", - "start": 7303, - "end": 7337, + "start": 7589, + "end": 7623, "loc": { "start": { - "line": 225, + "line": 238, "column": 24 }, "end": { - "line": 225, + "line": 238, "column": 58 } }, "left": { "type": "Identifier", - "start": 7303, - "end": 7304, + "start": 7589, + "end": 7590, "loc": { "start": { - "line": 225, + "line": 238, "column": 24 }, "end": { - "line": 225, + "line": 238, "column": 25 }, "identifierName": "i" @@ -5420,43 +5420,43 @@ "operator": "<", "right": { "type": "MemberExpression", - "start": 7307, - "end": 7337, + "start": 7593, + "end": 7623, "loc": { "start": { - "line": 225, + "line": 238, "column": 28 }, "end": { - "line": 225, + "line": 238, "column": 58 } }, "object": { "type": "MemberExpression", - "start": 7307, - "end": 7330, + "start": 7593, + "end": 7616, "loc": { "start": { - "line": 225, + "line": 238, "column": 28 }, "end": { - "line": 225, + "line": 238, "column": 51 } }, "object": { "type": "Identifier", - "start": 7307, - "end": 7324, + "start": 7593, + "end": 7610, "loc": { "start": { - "line": 225, + "line": 238, "column": 28 }, "end": { - "line": 225, + "line": 238, "column": 45 }, "identifierName": "objectToSerialise" @@ -5465,15 +5465,15 @@ }, "property": { "type": "Identifier", - "start": 7325, - "end": 7329, + "start": 7611, + "end": 7615, "loc": { "start": { - "line": 225, + "line": 238, "column": 46 }, "end": { - "line": 225, + "line": 238, "column": 50 }, "identifierName": "prop" @@ -5484,15 +5484,15 @@ }, "property": { "type": "Identifier", - "start": 7331, - "end": 7337, + "start": 7617, + "end": 7623, "loc": { "start": { - "line": 225, + "line": 238, "column": 52 }, "end": { - "line": 225, + "line": 238, "column": 58 }, "identifierName": "length" @@ -5504,30 +5504,30 @@ }, "update": { "type": "AssignmentExpression", - "start": 7339, - "end": 7345, + "start": 7625, + "end": 7631, "loc": { "start": { - "line": 225, + "line": 238, "column": 60 }, "end": { - "line": 225, + "line": 238, "column": 66 } }, "operator": "+=", "left": { "type": "Identifier", - "start": 7339, - "end": 7340, + "start": 7625, + "end": 7626, "loc": { "start": { - "line": 225, + "line": 238, "column": 60 }, "end": { - "line": 225, + "line": 238, "column": 61 }, "identifierName": "i" @@ -5536,15 +5536,15 @@ }, "right": { "type": "NumericLiteral", - "start": 7344, - "end": 7345, + "start": 7630, + "end": 7631, "loc": { "start": { - "line": 225, + "line": 238, "column": 65 }, "end": { - "line": 225, + "line": 238, "column": 66 } }, @@ -5557,87 +5557,87 @@ }, "body": { "type": "BlockStatement", - "start": 7347, - "end": 7441, + "start": 7633, + "end": 7727, "loc": { "start": { - "line": 225, + "line": 238, "column": 68 }, "end": { - "line": 227, + "line": 240, "column": 9 } }, "body": [ { "type": "ExpressionStatement", - "start": 7359, - "end": 7431, + "start": 7645, + "end": 7717, "loc": { "start": { - "line": 226, + "line": 239, "column": 10 }, "end": { - "line": 226, + "line": 239, "column": 82 } }, "expression": { "type": "AssignmentExpression", - "start": 7359, - "end": 7430, + "start": 7645, + "end": 7716, "loc": { "start": { - "line": 226, + "line": 239, "column": 10 }, "end": { - "line": 226, + "line": 239, "column": 81 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 7359, - "end": 7385, + "start": 7645, + "end": 7671, "loc": { "start": { - "line": 226, + "line": 239, "column": 10 }, "end": { - "line": 226, + "line": 239, "column": 36 } }, "object": { "type": "MemberExpression", - "start": 7359, - "end": 7382, + "start": 7645, + "end": 7668, "loc": { "start": { - "line": 226, + "line": 239, "column": 10 }, "end": { - "line": 226, + "line": 239, "column": 33 } }, "object": { "type": "Identifier", - "start": 7359, - "end": 7376, + "start": 7645, + "end": 7662, "loc": { "start": { - "line": 226, + "line": 239, "column": 10 }, "end": { - "line": 226, + "line": 239, "column": 27 }, "identifierName": "objectToSerialise" @@ -5646,15 +5646,15 @@ }, "property": { "type": "Identifier", - "start": 7377, - "end": 7381, + "start": 7663, + "end": 7667, "loc": { "start": { - "line": 226, + "line": 239, "column": 28 }, "end": { - "line": 226, + "line": 239, "column": 32 }, "identifierName": "prop" @@ -5665,15 +5665,15 @@ }, "property": { "type": "Identifier", - "start": 7383, - "end": 7384, + "start": 7669, + "end": 7670, "loc": { "start": { - "line": 226, + "line": 239, "column": 34 }, "end": { - "line": 226, + "line": 239, "column": 35 }, "identifierName": "i" @@ -5684,43 +5684,43 @@ }, "right": { "type": "CallExpression", - "start": 7388, - "end": 7430, + "start": 7674, + "end": 7716, "loc": { "start": { - "line": 226, + "line": 239, "column": 39 }, "end": { - "line": 226, + "line": 239, "column": 81 } }, "callee": { "type": "MemberExpression", - "start": 7388, - "end": 7402, + "start": 7674, + "end": 7688, "loc": { "start": { - "line": 226, + "line": 239, "column": 39 }, "end": { - "line": 226, + "line": 239, "column": 53 } }, "object": { "type": "Identifier", - "start": 7388, - "end": 7392, + "start": 7674, + "end": 7678, "loc": { "start": { - "line": 226, + "line": 239, "column": 39 }, "end": { - "line": 226, + "line": 239, "column": 43 }, "identifierName": "JSON" @@ -5729,15 +5729,15 @@ }, "property": { "type": "Identifier", - "start": 7393, - "end": 7402, + "start": 7679, + "end": 7688, "loc": { "start": { - "line": 226, + "line": 239, "column": 44 }, "end": { - "line": 226, + "line": 239, "column": 53 }, "identifierName": "stringify" @@ -5749,43 +5749,43 @@ "arguments": [ { "type": "MemberExpression", - "start": 7403, - "end": 7429, + "start": 7689, + "end": 7715, "loc": { "start": { - "line": 226, + "line": 239, "column": 54 }, "end": { - "line": 226, + "line": 239, "column": 80 } }, "object": { "type": "MemberExpression", - "start": 7403, - "end": 7426, + "start": 7689, + "end": 7712, "loc": { "start": { - "line": 226, + "line": 239, "column": 54 }, "end": { - "line": 226, + "line": 239, "column": 77 } }, "object": { "type": "Identifier", - "start": 7403, - "end": 7420, + "start": 7689, + "end": 7706, "loc": { "start": { - "line": 226, + "line": 239, "column": 54 }, "end": { - "line": 226, + "line": 239, "column": 71 }, "identifierName": "objectToSerialise" @@ -5794,15 +5794,15 @@ }, "property": { "type": "Identifier", - "start": 7421, - "end": 7425, + "start": 7707, + "end": 7711, "loc": { "start": { - "line": 226, + "line": 239, "column": 72 }, "end": { - "line": 226, + "line": 239, "column": 76 }, "identifierName": "prop" @@ -5813,15 +5813,15 @@ }, "property": { "type": "Identifier", - "start": 7427, - "end": 7428, + "start": 7713, + "end": 7714, "loc": { "start": { - "line": 226, + "line": 239, "column": 78 }, "end": { - "line": 226, + "line": 239, "column": 79 }, "identifierName": "i" @@ -5843,43 +5843,43 @@ }, "alternate": { "type": "IfStatement", - "start": 7455, - "end": 7588, + "start": 7741, + "end": 7874, "loc": { "start": { - "line": 228, + "line": 241, "column": 13 }, "end": { - "line": 230, + "line": 243, "column": 7 } }, "test": { "type": "BinaryExpression", - "start": 7459, - "end": 7502, + "start": 7745, + "end": 7788, "loc": { "start": { - "line": 228, + "line": 241, "column": 17 }, "end": { - "line": 228, + "line": 241, "column": 60 } }, "left": { "type": "UnaryExpression", - "start": 7459, - "end": 7489, + "start": 7745, + "end": 7775, "loc": { "start": { - "line": 228, + "line": 241, "column": 17 }, "end": { - "line": 228, + "line": 241, "column": 47 } }, @@ -5887,29 +5887,29 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 7466, - "end": 7489, + "start": 7752, + "end": 7775, "loc": { "start": { - "line": 228, + "line": 241, "column": 24 }, "end": { - "line": 228, + "line": 241, "column": 47 } }, "object": { "type": "Identifier", - "start": 7466, - "end": 7483, + "start": 7752, + "end": 7769, "loc": { "start": { - "line": 228, + "line": 241, "column": 24 }, "end": { - "line": 228, + "line": 241, "column": 41 }, "identifierName": "objectToSerialise" @@ -5918,15 +5918,15 @@ }, "property": { "type": "Identifier", - "start": 7484, - "end": 7488, + "start": 7770, + "end": 7774, "loc": { "start": { - "line": 228, + "line": 241, "column": 42 }, "end": { - "line": 228, + "line": 241, "column": 46 }, "identifierName": "prop" @@ -5942,15 +5942,15 @@ "operator": "===", "right": { "type": "StringLiteral", - "start": 7494, - "end": 7502, + "start": 7780, + "end": 7788, "loc": { "start": { - "line": 228, + "line": 241, "column": 52 }, "end": { - "line": 228, + "line": 241, "column": 60 } }, @@ -5963,73 +5963,73 @@ }, "consequent": { "type": "BlockStatement", - "start": 7504, - "end": 7588, + "start": 7790, + "end": 7874, "loc": { "start": { - "line": 228, + "line": 241, "column": 62 }, "end": { - "line": 230, + "line": 243, "column": 7 } }, "body": [ { "type": "ExpressionStatement", - "start": 7514, - "end": 7580, + "start": 7800, + "end": 7866, "loc": { "start": { - "line": 229, + "line": 242, "column": 8 }, "end": { - "line": 229, + "line": 242, "column": 74 } }, "expression": { "type": "AssignmentExpression", - "start": 7514, - "end": 7579, + "start": 7800, + "end": 7865, "loc": { "start": { - "line": 229, + "line": 242, "column": 8 }, "end": { - "line": 229, + "line": 242, "column": 73 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 7514, - "end": 7537, + "start": 7800, + "end": 7823, "loc": { "start": { - "line": 229, + "line": 242, "column": 8 }, "end": { - "line": 229, + "line": 242, "column": 31 } }, "object": { "type": "Identifier", - "start": 7514, - "end": 7531, + "start": 7800, + "end": 7817, "loc": { "start": { - "line": 229, + "line": 242, "column": 8 }, "end": { - "line": 229, + "line": 242, "column": 25 }, "identifierName": "objectToSerialise" @@ -6038,15 +6038,15 @@ }, "property": { "type": "Identifier", - "start": 7532, - "end": 7536, + "start": 7818, + "end": 7822, "loc": { "start": { - "line": 229, + "line": 242, "column": 26 }, "end": { - "line": 229, + "line": 242, "column": 30 }, "identifierName": "prop" @@ -6057,43 +6057,43 @@ }, "right": { "type": "CallExpression", - "start": 7540, - "end": 7579, + "start": 7826, + "end": 7865, "loc": { "start": { - "line": 229, + "line": 242, "column": 34 }, "end": { - "line": 229, + "line": 242, "column": 73 } }, "callee": { "type": "MemberExpression", - "start": 7540, - "end": 7554, + "start": 7826, + "end": 7840, "loc": { "start": { - "line": 229, + "line": 242, "column": 34 }, "end": { - "line": 229, + "line": 242, "column": 48 } }, "object": { "type": "Identifier", - "start": 7540, - "end": 7544, + "start": 7826, + "end": 7830, "loc": { "start": { - "line": 229, + "line": 242, "column": 34 }, "end": { - "line": 229, + "line": 242, "column": 38 }, "identifierName": "JSON" @@ -6102,15 +6102,15 @@ }, "property": { "type": "Identifier", - "start": 7545, - "end": 7554, + "start": 7831, + "end": 7840, "loc": { "start": { - "line": 229, + "line": 242, "column": 39 }, "end": { - "line": 229, + "line": 242, "column": 48 }, "identifierName": "stringify" @@ -6122,29 +6122,29 @@ "arguments": [ { "type": "MemberExpression", - "start": 7555, - "end": 7578, + "start": 7841, + "end": 7864, "loc": { "start": { - "line": 229, + "line": 242, "column": 49 }, "end": { - "line": 229, + "line": 242, "column": 72 } }, "object": { "type": "Identifier", - "start": 7555, - "end": 7572, + "start": 7841, + "end": 7858, "loc": { "start": { - "line": 229, + "line": 242, "column": 49 }, "end": { - "line": 229, + "line": 242, "column": 66 }, "identifierName": "objectToSerialise" @@ -6153,15 +6153,15 @@ }, "property": { "type": "Identifier", - "start": 7573, - "end": 7577, + "start": 7859, + "end": 7863, "loc": { "start": { - "line": 229, + "line": 242, "column": 67 }, "end": { - "line": 229, + "line": 242, "column": 71 }, "identifierName": "prop" @@ -6189,57 +6189,57 @@ }, { "type": "ReturnStatement", - "start": 7601, - "end": 7674, + "start": 7887, + "end": 7960, "loc": { "start": { - "line": 232, + "line": 245, "column": 4 }, "end": { - "line": 232, + "line": 245, "column": 77 } }, "argument": { "type": "CallExpression", - "start": 7608, - "end": 7673, + "start": 7894, + "end": 7959, "loc": { "start": { - "line": 232, + "line": 245, "column": 11 }, "end": { - "line": 232, + "line": 245, "column": 76 } }, "callee": { "type": "MemberExpression", - "start": 7608, - "end": 7629, + "start": 7894, + "end": 7915, "loc": { "start": { - "line": 232, + "line": 245, "column": 11 }, "end": { - "line": 232, + "line": 245, "column": 32 } }, "object": { "type": "Identifier", - "start": 7608, - "end": 7619, + "start": 7894, + "end": 7905, "loc": { "start": { - "line": 232, + "line": 245, "column": 11 }, "end": { - "line": 232, + "line": 245, "column": 22 }, "identifierName": "queryString" @@ -6248,15 +6248,15 @@ }, "property": { "type": "Identifier", - "start": 7620, - "end": 7629, + "start": 7906, + "end": 7915, "loc": { "start": { - "line": 232, + "line": 245, "column": 23 }, "end": { - "line": 232, + "line": 245, "column": 32 }, "identifierName": "stringify" @@ -6268,15 +6268,15 @@ "arguments": [ { "type": "Identifier", - "start": 7630, - "end": 7647, + "start": 7916, + "end": 7933, "loc": { "start": { - "line": 232, + "line": 245, "column": 33 }, "end": { - "line": 232, + "line": 245, "column": 50 }, "identifierName": "objectToSerialise" @@ -6285,44 +6285,44 @@ }, { "type": "MemberExpression", - "start": 7649, - "end": 7672, + "start": 7935, + "end": 7958, "loc": { "start": { - "line": 232, + "line": 245, "column": 52 }, "end": { - "line": 232, + "line": 245, "column": 75 } }, "object": { "type": "ThisExpression", - "start": 7649, - "end": 7653, + "start": 7935, + "end": 7939, "loc": { "start": { - "line": 232, + "line": 245, "column": 52 }, "end": { - "line": 232, + "line": 245, "column": 56 } } }, "property": { "type": "Identifier", - "start": 7654, - "end": 7672, + "start": 7940, + "end": 7958, "loc": { "start": { - "line": 232, + "line": 245, "column": 57 }, "end": { - "line": 232, + "line": 245, "column": 75 }, "identifierName": "queryStringOptions" @@ -6341,15 +6341,15 @@ { "type": "CommentBlock", "value": " eslint-disable no-param-reassign ", - "start": 7042, - "end": 7080, + "start": 7328, + "end": 7366, "loc": { "start": { - "line": 221, + "line": 234, "column": 2 }, "end": { - "line": 221, + "line": 234, "column": 40 } } @@ -6358,15 +6358,15 @@ }, { "type": "ObjectProperty", - "start": 7722, - "end": 8077, + "start": 8008, + "end": 8363, "loc": { "start": { - "line": 235, + "line": 248, "column": 2 }, "end": { - "line": 244, + "line": 257, "column": 3 } }, @@ -6375,15 +6375,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 7722, - "end": 7740, + "start": 8008, + "end": 8026, "loc": { "start": { - "line": 235, + "line": 248, "column": 2 }, "end": { - "line": 235, + "line": 248, "column": 20 }, "identifierName": "queryStringOptions" @@ -6393,30 +6393,30 @@ }, "value": { "type": "ObjectExpression", - "start": 7742, - "end": 8077, + "start": 8028, + "end": 8363, "loc": { "start": { - "line": 235, + "line": 248, "column": 22 }, "end": { - "line": 244, + "line": 257, "column": 3 } }, "properties": [ { "type": "ObjectProperty", - "start": 8050, - "end": 8072, + "start": 8336, + "end": 8358, "loc": { "start": { - "line": 243, + "line": 256, "column": 4 }, "end": { - "line": 243, + "line": 256, "column": 26 } }, @@ -6425,15 +6425,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 8050, - "end": 8061, + "start": 8336, + "end": 8347, "loc": { "start": { - "line": 243, + "line": 256, "column": 4 }, "end": { - "line": 243, + "line": 256, "column": 15 }, "identifierName": "arrayFormat" @@ -6443,15 +6443,15 @@ }, "value": { "type": "StringLiteral", - "start": 8063, - "end": 8072, + "start": 8349, + "end": 8358, "loc": { "start": { - "line": 243, + "line": 256, "column": 17 }, "end": { - "line": 243, + "line": 256, "column": 26 } }, @@ -6465,15 +6465,15 @@ { "type": "CommentLine", "value": " By default, uses NPM query", - "start": 7748, - "end": 7777, + "start": 8034, + "end": 8063, "loc": { "start": { - "line": 236, + "line": 249, "column": 4 }, "end": { - "line": 236, + "line": 249, "column": 33 } } @@ -6481,15 +6481,15 @@ { "type": "CommentLine", "value": " string package to serialise", - "start": 7782, - "end": 7812, + "start": 8068, + "end": 8098, "loc": { "start": { - "line": 237, + "line": 250, "column": 4 }, "end": { - "line": 237, + "line": 250, "column": 34 } } @@ -6497,15 +6497,15 @@ { "type": "CommentLine", "value": " to query string. For full list", - "start": 7817, - "end": 7850, + "start": 8103, + "end": 8136, "loc": { "start": { - "line": 238, + "line": 251, "column": 4 }, "end": { - "line": 238, + "line": 251, "column": 37 } } @@ -6513,15 +6513,15 @@ { "type": "CommentLine", "value": " of options, see:", - "start": 7855, - "end": 7874, + "start": 8141, + "end": 8160, "loc": { "start": { - "line": 239, + "line": 252, "column": 4 }, "end": { - "line": 239, + "line": 252, "column": 23 } } @@ -6529,15 +6529,15 @@ { "type": "CommentLine", "value": " https://www.npmjs.com/package/query-string#stringifyobject-options", - "start": 7879, - "end": 7950, + "start": 8165, + "end": 8236, "loc": { "start": { - "line": 240, + "line": 253, "column": 4 }, "end": { - "line": 240, + "line": 253, "column": 75 } } @@ -6545,15 +6545,15 @@ { "type": "CommentLine", "value": " If you specified a query string serialiser,", - "start": 7955, - "end": 8001, + "start": 8241, + "end": 8287, "loc": { "start": { - "line": 241, + "line": 254, "column": 4 }, "end": { - "line": 241, + "line": 254, "column": 50 } } @@ -6561,15 +6561,15 @@ { "type": "CommentLine", "value": " this options can optionally be used.", - "start": 8006, - "end": 8045, + "start": 8292, + "end": 8331, "loc": { "start": { - "line": 242, + "line": 255, "column": 4 }, "end": { - "line": 242, + "line": 255, "column": 43 } } @@ -6582,15 +6582,15 @@ { "type": "CommentBlock", "value": " eslint-enable no-param-reassign ", - "start": 7682, - "end": 7719, + "start": 7968, + "end": 8005, "loc": { "start": { - "line": 234, + "line": 247, "column": 2 }, "end": { - "line": 234, + "line": 247, "column": 39 } } @@ -6603,29 +6603,29 @@ }, { "type": "Identifier", - "start": 8083, - "end": 8111, + "start": 8369, + "end": 8397, "loc": { "start": { - "line": 247, + "line": 260, "column": 0 }, "end": { - "line": 247, + "line": 260, "column": 28 } }, "declaration": { "type": "Identifier", - "start": 8098, - "end": 8110, + "start": 8384, + "end": 8396, "loc": { "start": { - "line": 247, + "line": 260, "column": 15 }, "end": { - "line": 247, + "line": 260, "column": 27 }, "identifierName": "QueryBuilder" @@ -6638,43 +6638,43 @@ }, { "type": "ExportDefaultDeclaration", - "start": 8083, - "end": 8111, + "start": 8369, + "end": 8397, "loc": { "start": { - "line": 247, + "line": 260, "column": 0 }, "end": { - "line": 247, + "line": 260, "column": 28 } }, "declaration": { "type": "ClassDeclaration", - "start": 2000, - "end": 5733, + "start": 2286, + "end": 6019, "loc": { "start": { - "line": 62, + "line": 75, "column": 0 }, "end": { - "line": 180, + "line": 193, "column": 1 } }, "id": { "type": "Identifier", - "start": 2006, - "end": 2018, + "start": 2292, + "end": 2304, "loc": { "start": { - "line": 62, + "line": 75, "column": 6 }, "end": { - "line": 62, + "line": 75, "column": 18 }, "identifierName": "QueryBuilder" @@ -6685,30 +6685,30 @@ "superClass": null, "body": { "type": "ClassBody", - "start": 2019, - "end": 5733, + "start": 2305, + "end": 6019, "loc": { "start": { - "line": 62, + "line": 75, "column": 19 }, "end": { - "line": 180, + "line": 193, "column": 1 } }, "body": [ { "type": "ClassMethod", - "start": 3694, - "end": 4603, + "start": 3980, + "end": 4889, "loc": { "start": { - "line": 112, + "line": 125, "column": 2 }, "end": { - "line": 144, + "line": 157, "column": 3 } }, @@ -6716,15 +6716,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 3694, - "end": 3705, + "start": 3980, + "end": 3991, "loc": { "start": { - "line": 112, + "line": 125, "column": 2 }, "end": { - "line": 112, + "line": 125, "column": 13 }, "identifierName": "constructor" @@ -6740,29 +6740,29 @@ "params": [ { "type": "AssignmentPattern", - "start": 3706, - "end": 3718, + "start": 3992, + "end": 4004, "loc": { "start": { - "line": 112, + "line": 125, "column": 14 }, "end": { - "line": 112, + "line": 125, "column": 26 } }, "left": { "type": "Identifier", - "start": 3706, - "end": 3713, + "start": 3992, + "end": 3999, "loc": { "start": { - "line": 112, + "line": 125, "column": 14 }, "end": { - "line": 112, + "line": 125, "column": 21 }, "identifierName": "options" @@ -6771,15 +6771,15 @@ }, "right": { "type": "ObjectExpression", - "start": 3716, - "end": 3718, + "start": 4002, + "end": 4004, "loc": { "start": { - "line": 112, + "line": 125, "column": 24 }, "end": { - "line": 112, + "line": 125, "column": 26 } }, @@ -6789,59 +6789,59 @@ ], "body": { "type": "BlockStatement", - "start": 3720, - "end": 4603, + "start": 4006, + "end": 4889, "loc": { "start": { - "line": 112, + "line": 125, "column": 28 }, "end": { - "line": 144, + "line": 157, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 3726, - "end": 3816, + "start": 4012, + "end": 4102, "loc": { "start": { - "line": 113, + "line": 126, "column": 4 }, "end": { - "line": 116, + "line": 129, "column": 6 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 3732, - "end": 3815, + "start": 4018, + "end": 4101, "loc": { "start": { - "line": 113, + "line": 126, "column": 10 }, "end": { - "line": 116, + "line": 129, "column": 5 } }, "id": { "type": "Identifier", - "start": 3732, - "end": 3745, + "start": 4018, + "end": 4031, "loc": { "start": { - "line": 113, + "line": 126, "column": 10 }, "end": { - "line": 113, + "line": 126, "column": 23 }, "identifierName": "mergedOptions" @@ -6850,72 +6850,72 @@ }, "init": { "type": "ObjectExpression", - "start": 3748, - "end": 3815, + "start": 4034, + "end": 4101, "loc": { "start": { - "line": 113, + "line": 126, "column": 26 }, "end": { - "line": 116, + "line": 129, "column": 5 } }, "properties": [ { "type": "SpreadProperty", - "start": 3756, - "end": 3790, + "start": 4042, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 6 }, "end": { - "line": 114, + "line": 127, "column": 40 } }, "argument": { "type": "MemberExpression", - "start": 3759, - "end": 3790, + "start": 4045, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 40 } }, "object": { "type": "MemberExpression", - "start": 3759, - "end": 3781, + "start": 4045, + "end": 4067, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 31 } }, "object": { "type": "Identifier", - "start": 3759, - "end": 3771, + "start": 4045, + "end": 4057, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 21 }, "identifierName": "QueryBuilder" @@ -6924,15 +6924,15 @@ }, "property": { "type": "Identifier", - "start": 3772, - "end": 3781, + "start": 4058, + "end": 4067, "loc": { "start": { - "line": 114, + "line": 127, "column": 22 }, "end": { - "line": 114, + "line": 127, "column": 31 }, "identifierName": "prototype" @@ -6943,15 +6943,15 @@ }, "property": { "type": "Identifier", - "start": 3782, - "end": 3790, + "start": 4068, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 32 }, "end": { - "line": 114, + "line": 127, "column": 40 }, "identifierName": "defaults" @@ -6963,29 +6963,29 @@ }, { "type": "SpreadProperty", - "start": 3798, - "end": 3808, + "start": 4084, + "end": 4094, "loc": { "start": { - "line": 115, + "line": 128, "column": 6 }, "end": { - "line": 115, + "line": 128, "column": 16 } }, "argument": { "type": "Identifier", - "start": 3801, - "end": 3808, + "start": 4087, + "end": 4094, "loc": { "start": { - "line": 115, + "line": 128, "column": 9 }, "end": { - "line": 115, + "line": 128, "column": 16 }, "identifierName": "options" @@ -7002,15 +7002,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link SerialiseToQueryObjectCallback}\n *\n * @access public\n * @type {SerialiseToQueryObjectCallback}\n ", - "start": 3821, - "end": 3957, + "start": 4107, + "end": 4243, "loc": { "start": { - "line": 117, + "line": 130, "column": 4 }, "end": { - "line": 122, + "line": 135, "column": 7 } } @@ -7019,58 +7019,58 @@ }, { "type": "ExpressionStatement", - "start": 3962, - "end": 4029, + "start": 4248, + "end": 4315, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 3962, - "end": 4028, + "start": 4248, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 3962, - "end": 3989, + "start": 4248, + "end": 4275, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 31 } }, "object": { "type": "ThisExpression", - "start": 3962, - "end": 3966, + "start": 4248, + "end": 4252, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 8 } }, @@ -7078,15 +7078,15 @@ }, "property": { "type": "Identifier", - "start": 3967, - "end": 3989, + "start": 4253, + "end": 4275, "loc": { "start": { - "line": 123, + "line": 136, "column": 9 }, "end": { - "line": 123, + "line": 136, "column": 31 }, "identifierName": "serialiseToQueryObject" @@ -7098,29 +7098,29 @@ }, "right": { "type": "MemberExpression", - "start": 3992, - "end": 4028, + "start": 4278, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 34 }, "end": { - "line": 123, + "line": 136, "column": 70 } }, "object": { "type": "Identifier", - "start": 3992, - "end": 4005, + "start": 4278, + "end": 4291, "loc": { "start": { - "line": 123, + "line": 136, "column": 34 }, "end": { - "line": 123, + "line": 136, "column": 47 }, "identifierName": "mergedOptions" @@ -7129,15 +7129,15 @@ }, "property": { "type": "Identifier", - "start": 4006, - "end": 4028, + "start": 4292, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 48 }, "end": { - "line": 123, + "line": 136, "column": 70 }, "identifierName": "serialiseToQueryObject" @@ -7152,15 +7152,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link SerialiseToQueryObjectCallback}\n *\n * @access public\n * @type {SerialiseToQueryObjectCallback}\n ", - "start": 3821, - "end": 3957, + "start": 4107, + "end": 4243, "loc": { "start": { - "line": 117, + "line": 130, "column": 4 }, "end": { - "line": 122, + "line": 135, "column": 7 } } @@ -7170,15 +7170,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link QueryStringOptions}\n *\n * @access public\n * @type {QueryStringOptions}\n ", - "start": 4035, - "end": 4147, + "start": 4321, + "end": 4433, "loc": { "start": { - "line": 125, + "line": 138, "column": 4 }, "end": { - "line": 130, + "line": 143, "column": 7 } } @@ -7187,58 +7187,58 @@ }, { "type": "ExpressionStatement", - "start": 4152, - "end": 4211, + "start": 4438, + "end": 4497, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 63 } }, "expression": { "type": "AssignmentExpression", - "start": 4152, - "end": 4210, + "start": 4438, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 62 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4152, - "end": 4175, + "start": 4438, + "end": 4461, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 27 } }, "object": { "type": "ThisExpression", - "start": 4152, - "end": 4156, + "start": 4438, + "end": 4442, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 8 } }, @@ -7246,15 +7246,15 @@ }, "property": { "type": "Identifier", - "start": 4157, - "end": 4175, + "start": 4443, + "end": 4461, "loc": { "start": { - "line": 131, + "line": 144, "column": 9 }, "end": { - "line": 131, + "line": 144, "column": 27 }, "identifierName": "queryStringOptions" @@ -7266,29 +7266,29 @@ }, "right": { "type": "MemberExpression", - "start": 4178, - "end": 4210, + "start": 4464, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 30 }, "end": { - "line": 131, + "line": 144, "column": 62 } }, "object": { "type": "Identifier", - "start": 4178, - "end": 4191, + "start": 4464, + "end": 4477, "loc": { "start": { - "line": 131, + "line": 144, "column": 30 }, "end": { - "line": 131, + "line": 144, "column": 43 }, "identifierName": "mergedOptions" @@ -7297,15 +7297,15 @@ }, "property": { "type": "Identifier", - "start": 4192, - "end": 4210, + "start": 4478, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 44 }, "end": { - "line": 131, + "line": 144, "column": 62 }, "identifierName": "queryStringOptions" @@ -7320,15 +7320,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link QueryStringOptions}\n *\n * @access public\n * @type {QueryStringOptions}\n ", - "start": 4035, - "end": 4147, + "start": 4321, + "end": 4433, "loc": { "start": { - "line": 125, + "line": 138, "column": 4 }, "end": { - "line": 130, + "line": 143, "column": 7 } } @@ -7338,15 +7338,15 @@ { "type": "CommentBlock", "value": "*\n * If you need to change the behavior of the\n * query string, then you should first check\n * {@link QueryBuilder#queryStringOptions}\n *\n * For more information, see {@link SerialiseToQueryStringCallback}\n *\n * @access public\n * @type {SerialiseToQueryStringCallback}\n ", - "start": 4217, - "end": 4527, + "start": 4503, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 146, "column": 4 }, "end": { - "line": 142, + "line": 155, "column": 7 } } @@ -7355,58 +7355,58 @@ }, { "type": "ExpressionStatement", - "start": 4532, - "end": 4599, + "start": 4818, + "end": 4885, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 71 } }, "expression": { "type": "AssignmentExpression", - "start": 4532, - "end": 4598, + "start": 4818, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 70 } }, "operator": "=", "left": { "type": "MemberExpression", - "start": 4532, - "end": 4559, + "start": 4818, + "end": 4845, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 31 } }, "object": { "type": "ThisExpression", - "start": 4532, - "end": 4536, + "start": 4818, + "end": 4822, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 8 } }, @@ -7414,15 +7414,15 @@ }, "property": { "type": "Identifier", - "start": 4537, - "end": 4559, + "start": 4823, + "end": 4845, "loc": { "start": { - "line": 143, + "line": 156, "column": 9 }, "end": { - "line": 143, + "line": 156, "column": 31 }, "identifierName": "serialiseToQueryString" @@ -7434,29 +7434,29 @@ }, "right": { "type": "MemberExpression", - "start": 4562, - "end": 4598, + "start": 4848, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 34 }, "end": { - "line": 143, + "line": 156, "column": 70 } }, "object": { "type": "Identifier", - "start": 4562, - "end": 4575, + "start": 4848, + "end": 4861, "loc": { "start": { - "line": 143, + "line": 156, "column": 34 }, "end": { - "line": 143, + "line": 156, "column": 47 }, "identifierName": "mergedOptions" @@ -7465,15 +7465,15 @@ }, "property": { "type": "Identifier", - "start": 4576, - "end": 4598, + "start": 4862, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 48 }, "end": { - "line": 143, + "line": 156, "column": 70 }, "identifierName": "serialiseToQueryString" @@ -7488,15 +7488,15 @@ { "type": "CommentBlock", "value": "*\n * If you need to change the behavior of the\n * query string, then you should first check\n * {@link QueryBuilder#queryStringOptions}\n *\n * For more information, see {@link SerialiseToQueryStringCallback}\n *\n * @access public\n * @type {SerialiseToQueryStringCallback}\n ", - "start": 4217, - "end": 4527, + "start": 4503, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 146, "column": 4 }, "end": { - "line": 142, + "line": 155, "column": 7 } } @@ -7511,15 +7511,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function that converts a datasource\n * into a query object (which in turn can be\n * converted to query string).\n *\n * @typedef {Function} SerialiseToQueryObjectCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 2023, - "end": 2354, + "start": 2309, + "end": 2640, "loc": { "start": { - "line": 63, + "line": 76, "column": 2 }, "end": { - "line": 72, + "line": 85, "column": 5 } } @@ -7527,15 +7527,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function which serialises the\n * query string object to the query string.\n * By default, it uses the `query-string` package\n * to convert the query string object to query\n * string.\n *\n * @typedef {Function} SerialiseToQueryStringCallback\n * @param {Object} objectToSerialise\n * The object to serialise to query string.\n * By default, it's the query object.\n * @returns {String} The query string.\n ", - "start": 2358, - "end": 2798, + "start": 2644, + "end": 3084, "loc": { "start": { - "line": 74, + "line": 87, "column": 2 }, "end": { - "line": 86, + "line": 99, "column": 5 } } @@ -7543,15 +7543,15 @@ { "type": "CommentBlock", "value": "*\n * The query string options object that\n * contains configuration and settings\n * to affect the process of converting\n * the datasource to a query string.\n *\n * For a full list of available options\n * and settings, see {@link https://www.npmjs.com/package/query-string#stringifyobject-options}\n *\n * @typedef {Object} QueryStringOptions\n ", - "start": 2802, - "end": 3166, + "start": 3088, + "end": 3452, "loc": { "start": { - "line": 88, + "line": 101, "column": 2 }, "end": { - "line": 98, + "line": 111, "column": 5 } } @@ -7559,15 +7559,15 @@ { "type": "CommentBlock", "value": "*\n * @param {Object} [options] The options object.\n * @param {SerialiseToQueryObjectCallback} [options.serialiseToQueryObject]\n * Function which converts a datasource\n * into a query object (which in turn can\n * be converted to query string).\n * @param {QueryStringOptions} [options.queryStringOptions]\n * See {@link QueryStringOptions}\n * @param {SerialiseToQueryStringCallback} [options.serialiseToQueryString]\n * The function which serialises the\n * query string object to the query string.\n ", - "start": 3170, - "end": 3691, + "start": 3456, + "end": 3977, "loc": { "start": { - "line": 100, + "line": 113, "column": 2 }, "end": { - "line": 111, + "line": 124, "column": 5 } } @@ -7577,15 +7577,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * an object and returns that object.\n * That object is passed as data as\n * part of AJAX post requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {Object} The query object.\n ", - "start": 4607, - "end": 4883, + "start": 4893, + "end": 5169, "loc": { "start": { - "line": 146, + "line": 159, "column": 2 }, "end": { - "line": 155, + "line": 168, "column": 5 } } @@ -7594,15 +7594,15 @@ }, { "type": "ClassMethod", - "start": 4886, - "end": 5127, + "start": 5172, + "end": 5413, "loc": { "start": { - "line": 156, + "line": 169, "column": 2 }, "end": { - "line": 161, + "line": 174, "column": 3 } }, @@ -7610,15 +7610,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 4886, - "end": 4900, + "start": 5172, + "end": 5186, "loc": { "start": { - "line": 156, + "line": 169, "column": 2 }, "end": { - "line": 156, + "line": 169, "column": 16 }, "identifierName": "getQueryObject" @@ -7634,15 +7634,15 @@ "params": [ { "type": "Identifier", - "start": 4901, - "end": 4911, + "start": 5187, + "end": 5197, "loc": { "start": { - "line": 156, + "line": 169, "column": 17 }, "end": { - "line": 156, + "line": 169, "column": 27 }, "identifierName": "datasource" @@ -7652,44 +7652,44 @@ ], "body": { "type": "BlockStatement", - "start": 4913, - "end": 5127, + "start": 5199, + "end": 5413, "loc": { "start": { - "line": 156, + "line": 169, "column": 29 }, "end": { - "line": 161, + "line": 174, "column": 3 } }, "body": [ { "type": "IfStatement", - "start": 4919, - "end": 5060, + "start": 5205, + "end": 5346, "loc": { "start": { - "line": 157, + "line": 170, "column": 4 }, "end": { - "line": 159, + "line": 172, "column": 5 } }, "test": { "type": "UnaryExpression", - "start": 4923, - "end": 4951, + "start": 5209, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 8 }, "end": { - "line": 157, + "line": 170, "column": 36 } }, @@ -7697,44 +7697,44 @@ "prefix": true, "argument": { "type": "MemberExpression", - "start": 4924, - "end": 4951, + "start": 5210, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 9 }, "end": { - "line": 157, + "line": 170, "column": 36 } }, "object": { "type": "ThisExpression", - "start": 4924, - "end": 4928, + "start": 5210, + "end": 5214, "loc": { "start": { - "line": 157, + "line": 170, "column": 9 }, "end": { - "line": 157, + "line": 170, "column": 13 } } }, "property": { "type": "Identifier", - "start": 4929, - "end": 4951, + "start": 5215, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 14 }, "end": { - "line": 157, + "line": 170, "column": 36 }, "identifierName": "serialiseToQueryObject" @@ -7749,58 +7749,58 @@ }, "consequent": { "type": "BlockStatement", - "start": 4953, - "end": 5060, + "start": 5239, + "end": 5346, "loc": { "start": { - "line": 157, + "line": 170, "column": 38 }, "end": { - "line": 159, + "line": 172, "column": 5 } }, "body": [ { "type": "ThrowStatement", - "start": 4961, - "end": 5054, + "start": 5247, + "end": 5340, "loc": { "start": { - "line": 158, + "line": 171, "column": 6 }, "end": { - "line": 158, + "line": 171, "column": 99 } }, "argument": { "type": "NewExpression", - "start": 4967, - "end": 5053, + "start": 5253, + "end": 5339, "loc": { "start": { - "line": 158, + "line": 171, "column": 12 }, "end": { - "line": 158, + "line": 171, "column": 98 } }, "callee": { "type": "Identifier", - "start": 4971, - "end": 4976, + "start": 5257, + "end": 5262, "loc": { "start": { - "line": 158, + "line": 171, "column": 16 }, "end": { - "line": 158, + "line": 171, "column": 21 }, "identifierName": "Error" @@ -7810,15 +7810,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 4977, - "end": 5052, + "start": 5263, + "end": 5338, "loc": { "start": { - "line": 158, + "line": 171, "column": 22 }, "end": { - "line": 158, + "line": 171, "column": 97 } }, @@ -7838,86 +7838,86 @@ }, { "type": "ReturnStatement", - "start": 5065, - "end": 5123, + "start": 5351, + "end": 5409, "loc": { "start": { - "line": 160, + "line": 173, "column": 4 }, "end": { - "line": 160, + "line": 173, "column": 62 } }, "argument": { "type": "CallExpression", - "start": 5072, - "end": 5122, + "start": 5358, + "end": 5408, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 61 } }, "callee": { "type": "MemberExpression", - "start": 5072, - "end": 5104, + "start": 5358, + "end": 5390, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 43 } }, "object": { "type": "MemberExpression", - "start": 5072, - "end": 5099, + "start": 5358, + "end": 5385, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 38 } }, "object": { "type": "ThisExpression", - "start": 5072, - "end": 5076, + "start": 5358, + "end": 5362, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 15 } } }, "property": { "type": "Identifier", - "start": 5077, - "end": 5099, + "start": 5363, + "end": 5385, "loc": { "start": { - "line": 160, + "line": 173, "column": 16 }, "end": { - "line": 160, + "line": 173, "column": 38 }, "identifierName": "serialiseToQueryObject" @@ -7928,15 +7928,15 @@ }, "property": { "type": "Identifier", - "start": 5100, - "end": 5104, + "start": 5386, + "end": 5390, "loc": { "start": { - "line": 160, + "line": 173, "column": 39 }, "end": { - "line": 160, + "line": 173, "column": 43 }, "identifierName": "call" @@ -7948,30 +7948,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 5105, - "end": 5109, + "start": 5391, + "end": 5395, "loc": { "start": { - "line": 160, + "line": 173, "column": 44 }, "end": { - "line": 160, + "line": 173, "column": 48 } } }, { "type": "Identifier", - "start": 5111, - "end": 5121, + "start": 5397, + "end": 5407, "loc": { "start": { - "line": 160, + "line": 173, "column": 50 }, "end": { - "line": 160, + "line": 173, "column": 60 }, "identifierName": "datasource" @@ -7989,15 +7989,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * an object and returns that object.\n * That object is passed as data as\n * part of AJAX post requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {Object} The query object.\n ", - "start": 4607, - "end": 4883, + "start": 4893, + "end": 5169, "loc": { "start": { - "line": 146, + "line": 159, "column": 2 }, "end": { - "line": 155, + "line": 168, "column": 5 } } @@ -8007,15 +8007,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * a query string and returns that string.\n * This string is passed as data as\n * part of AJAX get requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {String} The query string.\n ", - "start": 5131, - "end": 5411, + "start": 5417, + "end": 5697, "loc": { "start": { - "line": 163, + "line": 176, "column": 2 }, "end": { - "line": 172, + "line": 185, "column": 5 } } @@ -8024,15 +8024,15 @@ }, { "type": "ClassMethod", - "start": 5414, - "end": 5731, + "start": 5700, + "end": 6017, "loc": { "start": { - "line": 173, + "line": 186, "column": 2 }, "end": { - "line": 179, + "line": 192, "column": 3 } }, @@ -8040,15 +8040,15 @@ "computed": false, "key": { "type": "Identifier", - "start": 5414, - "end": 5428, + "start": 5700, + "end": 5714, "loc": { "start": { - "line": 173, + "line": 186, "column": 2 }, "end": { - "line": 173, + "line": 186, "column": 16 }, "identifierName": "getQueryString" @@ -8064,15 +8064,15 @@ "params": [ { "type": "Identifier", - "start": 5429, - "end": 5439, + "start": 5715, + "end": 5725, "loc": { "start": { - "line": 173, + "line": 186, "column": 17 }, "end": { - "line": 173, + "line": 186, "column": 27 }, "identifierName": "datasource" @@ -8082,59 +8082,59 @@ ], "body": { "type": "BlockStatement", - "start": 5441, - "end": 5731, + "start": 5727, + "end": 6017, "loc": { "start": { - "line": 173, + "line": 186, "column": 29 }, "end": { - "line": 179, + "line": 192, "column": 3 } }, "body": [ { "type": "VariableDeclaration", - "start": 5447, - "end": 5512, + "start": 5733, + "end": 5798, "loc": { "start": { - "line": 174, + "line": 187, "column": 4 }, "end": { - "line": 174, + "line": 187, "column": 69 } }, "declarations": [ { "type": "VariableDeclarator", - "start": 5453, - "end": 5511, + "start": 5739, + "end": 5797, "loc": { "start": { - "line": 174, + "line": 187, "column": 10 }, "end": { - "line": 174, + "line": 187, "column": 68 } }, "id": { "type": "Identifier", - "start": 5453, - "end": 5470, + "start": 5739, + "end": 5756, "loc": { "start": { - "line": 174, + "line": 187, "column": 10 }, "end": { - "line": 174, + "line": 187, "column": 27 }, "identifierName": "objectToSerialise" @@ -8143,87 +8143,87 @@ }, "init": { "type": "ObjectExpression", - "start": 5473, - "end": 5511, + "start": 5759, + "end": 5797, "loc": { "start": { - "line": 174, + "line": 187, "column": 30 }, "end": { - "line": 174, + "line": 187, "column": 68 } }, "properties": [ { "type": "SpreadProperty", - "start": 5475, - "end": 5509, + "start": 5761, + "end": 5795, "loc": { "start": { - "line": 174, + "line": 187, "column": 32 }, "end": { - "line": 174, + "line": 187, "column": 66 } }, "argument": { "type": "CallExpression", - "start": 5478, - "end": 5509, + "start": 5764, + "end": 5795, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 66 } }, "callee": { "type": "MemberExpression", - "start": 5478, - "end": 5497, + "start": 5764, + "end": 5783, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 54 } }, "object": { "type": "ThisExpression", - "start": 5478, - "end": 5482, + "start": 5764, + "end": 5768, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 39 } } }, "property": { "type": "Identifier", - "start": 5483, - "end": 5497, + "start": 5769, + "end": 5783, "loc": { "start": { - "line": 174, + "line": 187, "column": 40 }, "end": { - "line": 174, + "line": 187, "column": 54 }, "identifierName": "getQueryObject" @@ -8235,15 +8235,15 @@ "arguments": [ { "type": "Identifier", - "start": 5498, - "end": 5508, + "start": 5784, + "end": 5794, "loc": { "start": { - "line": 174, + "line": 187, "column": 55 }, "end": { - "line": 174, + "line": 187, "column": 65 }, "identifierName": "datasource" @@ -8261,58 +8261,58 @@ }, { "type": "IfStatement", - "start": 5517, - "end": 5629, + "start": 5803, + "end": 5915, "loc": { "start": { - "line": 175, + "line": 188, "column": 4 }, "end": { - "line": 177, + "line": 190, "column": 5 } }, "test": { "type": "MemberExpression", - "start": 5521, - "end": 5548, + "start": 5807, + "end": 5834, "loc": { "start": { - "line": 175, + "line": 188, "column": 8 }, "end": { - "line": 175, + "line": 188, "column": 35 } }, "object": { "type": "ThisExpression", - "start": 5521, - "end": 5525, + "start": 5807, + "end": 5811, "loc": { "start": { - "line": 175, + "line": 188, "column": 8 }, "end": { - "line": 175, + "line": 188, "column": 12 } } }, "property": { "type": "Identifier", - "start": 5526, - "end": 5548, + "start": 5812, + "end": 5834, "loc": { "start": { - "line": 175, + "line": 188, "column": 13 }, "end": { - "line": 175, + "line": 188, "column": 35 }, "identifierName": "serialiseToQueryString" @@ -8323,101 +8323,101 @@ }, "consequent": { "type": "BlockStatement", - "start": 5550, - "end": 5629, + "start": 5836, + "end": 5915, "loc": { "start": { - "line": 175, + "line": 188, "column": 37 }, "end": { - "line": 177, + "line": 190, "column": 5 } }, "body": [ { "type": "ReturnStatement", - "start": 5558, - "end": 5623, + "start": 5844, + "end": 5909, "loc": { "start": { - "line": 176, + "line": 189, "column": 6 }, "end": { - "line": 176, + "line": 189, "column": 71 } }, "argument": { "type": "CallExpression", - "start": 5565, - "end": 5622, + "start": 5851, + "end": 5908, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 70 } }, "callee": { "type": "MemberExpression", - "start": 5565, - "end": 5597, + "start": 5851, + "end": 5883, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 45 } }, "object": { "type": "MemberExpression", - "start": 5565, - "end": 5592, + "start": 5851, + "end": 5878, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 40 } }, "object": { "type": "ThisExpression", - "start": 5565, - "end": 5569, + "start": 5851, + "end": 5855, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 17 } } }, "property": { "type": "Identifier", - "start": 5570, - "end": 5592, + "start": 5856, + "end": 5878, "loc": { "start": { - "line": 176, + "line": 189, "column": 18 }, "end": { - "line": 176, + "line": 189, "column": 40 }, "identifierName": "serialiseToQueryString" @@ -8428,15 +8428,15 @@ }, "property": { "type": "Identifier", - "start": 5593, - "end": 5597, + "start": 5879, + "end": 5883, "loc": { "start": { - "line": 176, + "line": 189, "column": 41 }, "end": { - "line": 176, + "line": 189, "column": 45 }, "identifierName": "call" @@ -8448,30 +8448,30 @@ "arguments": [ { "type": "ThisExpression", - "start": 5598, - "end": 5602, + "start": 5884, + "end": 5888, "loc": { "start": { - "line": 176, + "line": 189, "column": 46 }, "end": { - "line": 176, + "line": 189, "column": 50 } } }, { "type": "Identifier", - "start": 5604, - "end": 5621, + "start": 5890, + "end": 5907, "loc": { "start": { - "line": 176, + "line": 189, "column": 52 }, "end": { - "line": 176, + "line": 189, "column": 69 }, "identifierName": "objectToSerialise" @@ -8488,43 +8488,43 @@ }, { "type": "ThrowStatement", - "start": 5634, - "end": 5727, + "start": 5920, + "end": 6013, "loc": { "start": { - "line": 178, + "line": 191, "column": 4 }, "end": { - "line": 178, + "line": 191, "column": 97 } }, "argument": { "type": "NewExpression", - "start": 5640, - "end": 5726, + "start": 5926, + "end": 6012, "loc": { "start": { - "line": 178, + "line": 191, "column": 10 }, "end": { - "line": 178, + "line": 191, "column": 96 } }, "callee": { "type": "Identifier", - "start": 5644, - "end": 5649, + "start": 5930, + "end": 5935, "loc": { "start": { - "line": 178, + "line": 191, "column": 14 }, "end": { - "line": 178, + "line": 191, "column": 19 }, "identifierName": "Error" @@ -8534,15 +8534,15 @@ "arguments": [ { "type": "StringLiteral", - "start": 5650, - "end": 5725, + "start": 5936, + "end": 6011, "loc": { "start": { - "line": 178, + "line": 191, "column": 20 }, "end": { - "line": 178, + "line": 191, "column": 95 } }, @@ -8562,15 +8562,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * a query string and returns that string.\n * This string is passed as data as\n * part of AJAX get requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {String} The query string.\n ", - "start": 5131, - "end": 5411, + "start": 5417, + "end": 5697, "loc": { "start": { - "line": 163, + "line": 176, "column": 2 }, "end": { - "line": 172, + "line": 185, "column": 5 } } @@ -8582,16 +8582,16 @@ "leadingComments": [ { "type": "CommentBlock", - "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n * @example With Adding to Defaults\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n * @example With Extra Parameter for GET/POST Request\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", + "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n *\n * @example With Adding to Defaults\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * return queryObject;\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * return queryString;\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n *\n * @example With Extra Parameter for GET/POST Request\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", "start": 204, - "end": 1999, + "end": 2285, "loc": { "start": { "line": 12, "column": 0 }, "end": { - "line": 61, + "line": 74, "column": 3 } } @@ -8608,16 +8608,16 @@ "comments": [ { "type": "CommentBlock", - "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n * @example With Adding to Defaults\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n * @example With Extra Parameter for GET/POST Request\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", + "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n *\n * @example With Adding to Defaults\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * return queryObject;\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * return queryString;\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n *\n * @example With Extra Parameter for GET/POST Request\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", "start": 204, - "end": 1999, + "end": 2285, "loc": { "start": { "line": 12, "column": 0 }, "end": { - "line": 61, + "line": 74, "column": 3 } } @@ -8625,15 +8625,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function that converts a datasource\n * into a query object (which in turn can be\n * converted to query string).\n *\n * @typedef {Function} SerialiseToQueryObjectCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 2023, - "end": 2354, + "start": 2309, + "end": 2640, "loc": { "start": { - "line": 63, + "line": 76, "column": 2 }, "end": { - "line": 72, + "line": 85, "column": 5 } } @@ -8641,15 +8641,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function which serialises the\n * query string object to the query string.\n * By default, it uses the `query-string` package\n * to convert the query string object to query\n * string.\n *\n * @typedef {Function} SerialiseToQueryStringCallback\n * @param {Object} objectToSerialise\n * The object to serialise to query string.\n * By default, it's the query object.\n * @returns {String} The query string.\n ", - "start": 2358, - "end": 2798, + "start": 2644, + "end": 3084, "loc": { "start": { - "line": 74, + "line": 87, "column": 2 }, "end": { - "line": 86, + "line": 99, "column": 5 } } @@ -8657,15 +8657,15 @@ { "type": "CommentBlock", "value": "*\n * The query string options object that\n * contains configuration and settings\n * to affect the process of converting\n * the datasource to a query string.\n *\n * For a full list of available options\n * and settings, see {@link https://www.npmjs.com/package/query-string#stringifyobject-options}\n *\n * @typedef {Object} QueryStringOptions\n ", - "start": 2802, - "end": 3166, + "start": 3088, + "end": 3452, "loc": { "start": { - "line": 88, + "line": 101, "column": 2 }, "end": { - "line": 98, + "line": 111, "column": 5 } } @@ -8673,15 +8673,15 @@ { "type": "CommentBlock", "value": "*\n * @param {Object} [options] The options object.\n * @param {SerialiseToQueryObjectCallback} [options.serialiseToQueryObject]\n * Function which converts a datasource\n * into a query object (which in turn can\n * be converted to query string).\n * @param {QueryStringOptions} [options.queryStringOptions]\n * See {@link QueryStringOptions}\n * @param {SerialiseToQueryStringCallback} [options.serialiseToQueryString]\n * The function which serialises the\n * query string object to the query string.\n ", - "start": 3170, - "end": 3691, + "start": 3456, + "end": 3977, "loc": { "start": { - "line": 100, + "line": 113, "column": 2 }, "end": { - "line": 111, + "line": 124, "column": 5 } } @@ -8689,15 +8689,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link SerialiseToQueryObjectCallback}\n *\n * @access public\n * @type {SerialiseToQueryObjectCallback}\n ", - "start": 3821, - "end": 3957, + "start": 4107, + "end": 4243, "loc": { "start": { - "line": 117, + "line": 130, "column": 4 }, "end": { - "line": 122, + "line": 135, "column": 7 } } @@ -8705,15 +8705,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link QueryStringOptions}\n *\n * @access public\n * @type {QueryStringOptions}\n ", - "start": 4035, - "end": 4147, + "start": 4321, + "end": 4433, "loc": { "start": { - "line": 125, + "line": 138, "column": 4 }, "end": { - "line": 130, + "line": 143, "column": 7 } } @@ -8721,15 +8721,15 @@ { "type": "CommentBlock", "value": "*\n * If you need to change the behavior of the\n * query string, then you should first check\n * {@link QueryBuilder#queryStringOptions}\n *\n * For more information, see {@link SerialiseToQueryStringCallback}\n *\n * @access public\n * @type {SerialiseToQueryStringCallback}\n ", - "start": 4217, - "end": 4527, + "start": 4503, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 146, "column": 4 }, "end": { - "line": 142, + "line": 155, "column": 7 } } @@ -8737,15 +8737,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * an object and returns that object.\n * That object is passed as data as\n * part of AJAX post requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {Object} The query object.\n ", - "start": 4607, - "end": 4883, + "start": 4893, + "end": 5169, "loc": { "start": { - "line": 146, + "line": 159, "column": 2 }, "end": { - "line": 155, + "line": 168, "column": 5 } } @@ -8753,15 +8753,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * a query string and returns that string.\n * This string is passed as data as\n * part of AJAX get requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {String} The query string.\n ", - "start": 5131, - "end": 5411, + "start": 5417, + "end": 5697, "loc": { "start": { - "line": 163, + "line": 176, "column": 2 }, "end": { - "line": 172, + "line": 185, "column": 5 } } @@ -8769,15 +8769,15 @@ { "type": "CommentLine", "value": " Properties to include in the", - "start": 5773, - "end": 5804, + "start": 6059, + "end": 6090, "loc": { "start": { - "line": 183, + "line": 196, "column": 2 }, "end": { - "line": 183, + "line": 196, "column": 33 } } @@ -8785,15 +8785,15 @@ { "type": "CommentLine", "value": " serialisation to GET query string,", - "start": 5807, - "end": 5844, + "start": 6093, + "end": 6130, "loc": { "start": { - "line": 184, + "line": 197, "column": 2 }, "end": { - "line": 184, + "line": 197, "column": 39 } } @@ -8801,15 +8801,15 @@ { "type": "CommentLine", "value": " or when constructing the", - "start": 5847, - "end": 5874, + "start": 6133, + "end": 6160, "loc": { "start": { - "line": 185, + "line": 198, "column": 2 }, "end": { - "line": 185, + "line": 198, "column": 29 } } @@ -8817,15 +8817,15 @@ { "type": "CommentLine", "value": " data object.", - "start": 5877, - "end": 5892, + "start": 6163, + "end": 6178, "loc": { "start": { - "line": 186, + "line": 199, "column": 2 }, "end": { - "line": 186, + "line": 199, "column": 17 } } @@ -8833,15 +8833,15 @@ { "type": "CommentLine", "value": " By default, it only include", - "start": 5895, - "end": 5925, + "start": 6181, + "end": 6211, "loc": { "start": { - "line": 187, + "line": 200, "column": 2 }, "end": { - "line": 187, + "line": 200, "column": 32 } } @@ -8849,15 +8849,15 @@ { "type": "CommentLine", "value": " primitive properties, ignoring", - "start": 5928, - "end": 5961, + "start": 6214, + "end": 6247, "loc": { "start": { - "line": 188, + "line": 201, "column": 2 }, "end": { - "line": 188, + "line": 201, "column": 35 } } @@ -8865,15 +8865,15 @@ { "type": "CommentLine", "value": " objects, arrays and certain properties.", - "start": 5964, - "end": 6006, + "start": 6250, + "end": 6292, "loc": { "start": { - "line": 189, + "line": 202, "column": 2 }, "end": { - "line": 189, + "line": 202, "column": 44 } } @@ -8881,15 +8881,15 @@ { "type": "CommentLine", "value": " Ignore 'private' properties and specified properties", - "start": 6235, - "end": 6290, + "start": 6521, + "end": 6576, "loc": { "start": { - "line": 194, + "line": 207, "column": 57 }, "end": { - "line": 194, + "line": 207, "column": 112 } } @@ -8897,15 +8897,15 @@ { "type": "CommentLine", "value": " Ignore properties that shouldn't be serialised,", - "start": 6327, - "end": 6377, + "start": 6613, + "end": 6663, "loc": { "start": { - "line": 197, + "line": 210, "column": 6 }, "end": { - "line": 197, + "line": 210, "column": 56 } } @@ -8913,15 +8913,15 @@ { "type": "CommentLine", "value": " i.e. properties that configures the serialisation", - "start": 6384, - "end": 6436, + "start": 6670, + "end": 6722, "loc": { "start": { - "line": 198, + "line": 211, "column": 6 }, "end": { - "line": 198, + "line": 211, "column": 58 } } @@ -8929,15 +8929,15 @@ { "type": "CommentLine", "value": " itself.", - "start": 6443, - "end": 6453, + "start": 6729, + "end": 6739, "loc": { "start": { - "line": 199, + "line": 212, "column": 6 }, "end": { - "line": 199, + "line": 212, "column": 16 } } @@ -8945,15 +8945,15 @@ { "type": "CommentLine", "value": " Don't serialise null values", - "start": 6512, - "end": 6542, + "start": 6798, + "end": 6828, "loc": { "start": { - "line": 201, + "line": 214, "column": 28 }, "end": { - "line": 201, + "line": 214, "column": 58 } } @@ -8961,15 +8961,15 @@ { "type": "CommentLine", "value": " Computed getters doesn't get included in ES6 spread syntax,", - "start": 6716, - "end": 6778, + "start": 7002, + "end": 7064, "loc": { "start": { - "line": 210, + "line": 223, "column": 6 }, "end": { - "line": 210, + "line": 223, "column": 68 } } @@ -8977,15 +8977,15 @@ { "type": "CommentLine", "value": " so we manually include the necessary one below.", - "start": 6785, - "end": 6835, + "start": 7071, + "end": 7121, "loc": { "start": { - "line": 211, + "line": 224, "column": 6 }, "end": { - "line": 211, + "line": 224, "column": 56 } } @@ -8993,15 +8993,15 @@ { "type": "CommentBlock", "value": " eslint-disable no-param-reassign ", - "start": 7042, - "end": 7080, + "start": 7328, + "end": 7366, "loc": { "start": { - "line": 221, + "line": 234, "column": 2 }, "end": { - "line": 221, + "line": 234, "column": 40 } } @@ -9009,15 +9009,15 @@ { "type": "CommentBlock", "value": " eslint-enable no-param-reassign ", - "start": 7682, - "end": 7719, + "start": 7968, + "end": 8005, "loc": { "start": { - "line": 234, + "line": 247, "column": 2 }, "end": { - "line": 234, + "line": 247, "column": 39 } } @@ -9025,15 +9025,15 @@ { "type": "CommentLine", "value": " By default, uses NPM query", - "start": 7748, - "end": 7777, + "start": 8034, + "end": 8063, "loc": { "start": { - "line": 236, + "line": 249, "column": 4 }, "end": { - "line": 236, + "line": 249, "column": 33 } } @@ -9041,15 +9041,15 @@ { "type": "CommentLine", "value": " string package to serialise", - "start": 7782, - "end": 7812, + "start": 8068, + "end": 8098, "loc": { "start": { - "line": 237, + "line": 250, "column": 4 }, "end": { - "line": 237, + "line": 250, "column": 34 } } @@ -9057,15 +9057,15 @@ { "type": "CommentLine", "value": " to query string. For full list", - "start": 7817, - "end": 7850, + "start": 8103, + "end": 8136, "loc": { "start": { - "line": 238, + "line": 251, "column": 4 }, "end": { - "line": 238, + "line": 251, "column": 37 } } @@ -9073,15 +9073,15 @@ { "type": "CommentLine", "value": " of options, see:", - "start": 7855, - "end": 7874, + "start": 8141, + "end": 8160, "loc": { "start": { - "line": 239, + "line": 252, "column": 4 }, "end": { - "line": 239, + "line": 252, "column": 23 } } @@ -9089,15 +9089,15 @@ { "type": "CommentLine", "value": " https://www.npmjs.com/package/query-string#stringifyobject-options", - "start": 7879, - "end": 7950, + "start": 8165, + "end": 8236, "loc": { "start": { - "line": 240, + "line": 253, "column": 4 }, "end": { - "line": 240, + "line": 253, "column": 75 } } @@ -9105,15 +9105,15 @@ { "type": "CommentLine", "value": " If you specified a query string serialiser,", - "start": 7955, - "end": 8001, + "start": 8241, + "end": 8287, "loc": { "start": { - "line": 241, + "line": 254, "column": 4 }, "end": { - "line": 241, + "line": 254, "column": 50 } } @@ -9121,15 +9121,15 @@ { "type": "CommentLine", "value": " this options can optionally be used.", - "start": 8006, - "end": 8045, + "start": 8292, + "end": 8331, "loc": { "start": { - "line": 242, + "line": 255, "column": 4 }, "end": { - "line": 242, + "line": 255, "column": 43 } } @@ -10427,16 +10427,16 @@ }, { "type": "CommentBlock", - "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n * @example With Adding to Defaults\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n * @example With Extra Parameter for GET/POST Request\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", + "value": "*\n * Using a datasource object, it builds\n * the data object for AJAX post requests,\n * or the query string for AJAX get requests\n *\n * @example With AJAX Datasource\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * })\n * });\n *\n * @example With Adding to Defaults\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * // ...\n * serialiseToQueryObject(datasource) {\n * // Calls the original default serialiser\n * let queryObject = QueryBuilder.prototype\n * .defaults.serialiseToQueryObject(datasource);\n * // ... Do your additional operations\n * return queryObject;\n * },\n * serialiseToQueryString(objectToSerialise) {\n * // Calls the original default serialiser\n * let queryString = QueryBuilder.prototype\n * .defaults.serialiseToQueryString(objectToSerialise);\n * // ... Do your additional operations\n * return queryString;\n * },\n * queryStringOptions: {\n * // Keep the default options\n * ...QueryBuilder.prototype.defaults.queryStringOptions,\n * // ... Put additional options here. It'll override default options\n * // For available options, check the docs for QueryBuilder constructor\n * }\n * })\n * });\n *\n * @example With Extra Parameter for GET/POST Request\n *\n * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';\n *\n * let datasource = new AjaxDatasource({\n * // ...\n * queryBuilder: new QueryBuilder({\n * serialiseToQueryObject(datasource) {\n * // Calls the original converter\n * let queryObject = QueryBuilder.prototype.defaults.serialiseToQueryObject(datasource);\n * queryObject['extraGreetingData'] = 'HelloWorld';\n * return queryObject;\n * },\n * })\n * });\n ", "start": 204, - "end": 1999, + "end": 2285, "loc": { "start": { "line": 12, "column": 0 }, "end": { - "line": 61, + "line": 74, "column": 3 } } @@ -10456,15 +10456,15 @@ "updateContext": null }, "value": "class", - "start": 2000, - "end": 2005, + "start": 2286, + "end": 2291, "loc": { "start": { - "line": 62, + "line": 75, "column": 0 }, "end": { - "line": 62, + "line": 75, "column": 5 } } @@ -10482,15 +10482,15 @@ "binop": null }, "value": "QueryBuilder", - "start": 2006, - "end": 2018, + "start": 2292, + "end": 2304, "loc": { "start": { - "line": 62, + "line": 75, "column": 6 }, "end": { - "line": 62, + "line": 75, "column": 18 } } @@ -10507,15 +10507,15 @@ "postfix": false, "binop": null }, - "start": 2019, - "end": 2020, + "start": 2305, + "end": 2306, "loc": { "start": { - "line": 62, + "line": 75, "column": 19 }, "end": { - "line": 62, + "line": 75, "column": 20 } } @@ -10523,15 +10523,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function that converts a datasource\n * into a query object (which in turn can be\n * converted to query string).\n *\n * @typedef {Function} SerialiseToQueryObjectCallback\n * @param {DatasourceBase} datasource\n * The datasource to convert to a query object.\n * @returns {Object} The query object.\n ", - "start": 2023, - "end": 2354, + "start": 2309, + "end": 2640, "loc": { "start": { - "line": 63, + "line": 76, "column": 2 }, "end": { - "line": 72, + "line": 85, "column": 5 } } @@ -10539,15 +10539,15 @@ { "type": "CommentBlock", "value": "*\n * Callback function which serialises the\n * query string object to the query string.\n * By default, it uses the `query-string` package\n * to convert the query string object to query\n * string.\n *\n * @typedef {Function} SerialiseToQueryStringCallback\n * @param {Object} objectToSerialise\n * The object to serialise to query string.\n * By default, it's the query object.\n * @returns {String} The query string.\n ", - "start": 2358, - "end": 2798, + "start": 2644, + "end": 3084, "loc": { "start": { - "line": 74, + "line": 87, "column": 2 }, "end": { - "line": 86, + "line": 99, "column": 5 } } @@ -10555,15 +10555,15 @@ { "type": "CommentBlock", "value": "*\n * The query string options object that\n * contains configuration and settings\n * to affect the process of converting\n * the datasource to a query string.\n *\n * For a full list of available options\n * and settings, see {@link https://www.npmjs.com/package/query-string#stringifyobject-options}\n *\n * @typedef {Object} QueryStringOptions\n ", - "start": 2802, - "end": 3166, + "start": 3088, + "end": 3452, "loc": { "start": { - "line": 88, + "line": 101, "column": 2 }, "end": { - "line": 98, + "line": 111, "column": 5 } } @@ -10571,15 +10571,15 @@ { "type": "CommentBlock", "value": "*\n * @param {Object} [options] The options object.\n * @param {SerialiseToQueryObjectCallback} [options.serialiseToQueryObject]\n * Function which converts a datasource\n * into a query object (which in turn can\n * be converted to query string).\n * @param {QueryStringOptions} [options.queryStringOptions]\n * See {@link QueryStringOptions}\n * @param {SerialiseToQueryStringCallback} [options.serialiseToQueryString]\n * The function which serialises the\n * query string object to the query string.\n ", - "start": 3170, - "end": 3691, + "start": 3456, + "end": 3977, "loc": { "start": { - "line": 100, + "line": 113, "column": 2 }, "end": { - "line": 111, + "line": 124, "column": 5 } } @@ -10597,15 +10597,15 @@ "binop": null }, "value": "constructor", - "start": 3694, - "end": 3705, + "start": 3980, + "end": 3991, "loc": { "start": { - "line": 112, + "line": 125, "column": 2 }, "end": { - "line": 112, + "line": 125, "column": 13 } } @@ -10622,15 +10622,15 @@ "postfix": false, "binop": null }, - "start": 3705, - "end": 3706, + "start": 3991, + "end": 3992, "loc": { "start": { - "line": 112, + "line": 125, "column": 13 }, "end": { - "line": 112, + "line": 125, "column": 14 } } @@ -10648,15 +10648,15 @@ "binop": null }, "value": "options", - "start": 3706, - "end": 3713, + "start": 3992, + "end": 3999, "loc": { "start": { - "line": 112, + "line": 125, "column": 14 }, "end": { - "line": 112, + "line": 125, "column": 21 } } @@ -10675,15 +10675,15 @@ "updateContext": null }, "value": "=", - "start": 3714, - "end": 3715, + "start": 4000, + "end": 4001, "loc": { "start": { - "line": 112, + "line": 125, "column": 22 }, "end": { - "line": 112, + "line": 125, "column": 23 } } @@ -10700,15 +10700,15 @@ "postfix": false, "binop": null }, - "start": 3716, - "end": 3717, + "start": 4002, + "end": 4003, "loc": { "start": { - "line": 112, + "line": 125, "column": 24 }, "end": { - "line": 112, + "line": 125, "column": 25 } } @@ -10725,15 +10725,15 @@ "postfix": false, "binop": null }, - "start": 3717, - "end": 3718, + "start": 4003, + "end": 4004, "loc": { "start": { - "line": 112, + "line": 125, "column": 25 }, "end": { - "line": 112, + "line": 125, "column": 26 } } @@ -10750,15 +10750,15 @@ "postfix": false, "binop": null }, - "start": 3718, - "end": 3719, + "start": 4004, + "end": 4005, "loc": { "start": { - "line": 112, + "line": 125, "column": 26 }, "end": { - "line": 112, + "line": 125, "column": 27 } } @@ -10775,15 +10775,15 @@ "postfix": false, "binop": null }, - "start": 3720, - "end": 3721, + "start": 4006, + "end": 4007, "loc": { "start": { - "line": 112, + "line": 125, "column": 28 }, "end": { - "line": 112, + "line": 125, "column": 29 } } @@ -10803,15 +10803,15 @@ "updateContext": null }, "value": "const", - "start": 3726, - "end": 3731, + "start": 4012, + "end": 4017, "loc": { "start": { - "line": 113, + "line": 126, "column": 4 }, "end": { - "line": 113, + "line": 126, "column": 9 } } @@ -10829,15 +10829,15 @@ "binop": null }, "value": "mergedOptions", - "start": 3732, - "end": 3745, + "start": 4018, + "end": 4031, "loc": { "start": { - "line": 113, + "line": 126, "column": 10 }, "end": { - "line": 113, + "line": 126, "column": 23 } } @@ -10856,15 +10856,15 @@ "updateContext": null }, "value": "=", - "start": 3746, - "end": 3747, + "start": 4032, + "end": 4033, "loc": { "start": { - "line": 113, + "line": 126, "column": 24 }, "end": { - "line": 113, + "line": 126, "column": 25 } } @@ -10881,15 +10881,15 @@ "postfix": false, "binop": null }, - "start": 3748, - "end": 3749, + "start": 4034, + "end": 4035, "loc": { "start": { - "line": 113, + "line": 126, "column": 26 }, "end": { - "line": 113, + "line": 126, "column": 27 } } @@ -10907,15 +10907,15 @@ "binop": null, "updateContext": null }, - "start": 3756, - "end": 3759, + "start": 4042, + "end": 4045, "loc": { "start": { - "line": 114, + "line": 127, "column": 6 }, "end": { - "line": 114, + "line": 127, "column": 9 } } @@ -10933,15 +10933,15 @@ "binop": null }, "value": "QueryBuilder", - "start": 3759, - "end": 3771, + "start": 4045, + "end": 4057, "loc": { "start": { - "line": 114, + "line": 127, "column": 9 }, "end": { - "line": 114, + "line": 127, "column": 21 } } @@ -10959,15 +10959,15 @@ "binop": null, "updateContext": null }, - "start": 3771, - "end": 3772, + "start": 4057, + "end": 4058, "loc": { "start": { - "line": 114, + "line": 127, "column": 21 }, "end": { - "line": 114, + "line": 127, "column": 22 } } @@ -10985,15 +10985,15 @@ "binop": null }, "value": "prototype", - "start": 3772, - "end": 3781, + "start": 4058, + "end": 4067, "loc": { "start": { - "line": 114, + "line": 127, "column": 22 }, "end": { - "line": 114, + "line": 127, "column": 31 } } @@ -11011,15 +11011,15 @@ "binop": null, "updateContext": null }, - "start": 3781, - "end": 3782, + "start": 4067, + "end": 4068, "loc": { "start": { - "line": 114, + "line": 127, "column": 31 }, "end": { - "line": 114, + "line": 127, "column": 32 } } @@ -11037,15 +11037,15 @@ "binop": null }, "value": "defaults", - "start": 3782, - "end": 3790, + "start": 4068, + "end": 4076, "loc": { "start": { - "line": 114, + "line": 127, "column": 32 }, "end": { - "line": 114, + "line": 127, "column": 40 } } @@ -11063,15 +11063,15 @@ "binop": null, "updateContext": null }, - "start": 3790, - "end": 3791, + "start": 4076, + "end": 4077, "loc": { "start": { - "line": 114, + "line": 127, "column": 40 }, "end": { - "line": 114, + "line": 127, "column": 41 } } @@ -11089,15 +11089,15 @@ "binop": null, "updateContext": null }, - "start": 3798, - "end": 3801, + "start": 4084, + "end": 4087, "loc": { "start": { - "line": 115, + "line": 128, "column": 6 }, "end": { - "line": 115, + "line": 128, "column": 9 } } @@ -11115,15 +11115,15 @@ "binop": null }, "value": "options", - "start": 3801, - "end": 3808, + "start": 4087, + "end": 4094, "loc": { "start": { - "line": 115, + "line": 128, "column": 9 }, "end": { - "line": 115, + "line": 128, "column": 16 } } @@ -11141,15 +11141,15 @@ "binop": null, "updateContext": null }, - "start": 3808, - "end": 3809, + "start": 4094, + "end": 4095, "loc": { "start": { - "line": 115, + "line": 128, "column": 16 }, "end": { - "line": 115, + "line": 128, "column": 17 } } @@ -11166,15 +11166,15 @@ "postfix": false, "binop": null }, - "start": 3814, - "end": 3815, + "start": 4100, + "end": 4101, "loc": { "start": { - "line": 116, + "line": 129, "column": 4 }, "end": { - "line": 116, + "line": 129, "column": 5 } } @@ -11192,15 +11192,15 @@ "binop": null, "updateContext": null }, - "start": 3815, - "end": 3816, + "start": 4101, + "end": 4102, "loc": { "start": { - "line": 116, + "line": 129, "column": 5 }, "end": { - "line": 116, + "line": 129, "column": 6 } } @@ -11208,15 +11208,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link SerialiseToQueryObjectCallback}\n *\n * @access public\n * @type {SerialiseToQueryObjectCallback}\n ", - "start": 3821, - "end": 3957, + "start": 4107, + "end": 4243, "loc": { "start": { - "line": 117, + "line": 130, "column": 4 }, "end": { - "line": 122, + "line": 135, "column": 7 } } @@ -11236,15 +11236,15 @@ "updateContext": null }, "value": "this", - "start": 3962, - "end": 3966, + "start": 4248, + "end": 4252, "loc": { "start": { - "line": 123, + "line": 136, "column": 4 }, "end": { - "line": 123, + "line": 136, "column": 8 } } @@ -11262,15 +11262,15 @@ "binop": null, "updateContext": null }, - "start": 3966, - "end": 3967, + "start": 4252, + "end": 4253, "loc": { "start": { - "line": 123, + "line": 136, "column": 8 }, "end": { - "line": 123, + "line": 136, "column": 9 } } @@ -11288,15 +11288,15 @@ "binop": null }, "value": "serialiseToQueryObject", - "start": 3967, - "end": 3989, + "start": 4253, + "end": 4275, "loc": { "start": { - "line": 123, + "line": 136, "column": 9 }, "end": { - "line": 123, + "line": 136, "column": 31 } } @@ -11315,15 +11315,15 @@ "updateContext": null }, "value": "=", - "start": 3990, - "end": 3991, + "start": 4276, + "end": 4277, "loc": { "start": { - "line": 123, + "line": 136, "column": 32 }, "end": { - "line": 123, + "line": 136, "column": 33 } } @@ -11341,15 +11341,15 @@ "binop": null }, "value": "mergedOptions", - "start": 3992, - "end": 4005, + "start": 4278, + "end": 4291, "loc": { "start": { - "line": 123, + "line": 136, "column": 34 }, "end": { - "line": 123, + "line": 136, "column": 47 } } @@ -11367,15 +11367,15 @@ "binop": null, "updateContext": null }, - "start": 4005, - "end": 4006, + "start": 4291, + "end": 4292, "loc": { "start": { - "line": 123, + "line": 136, "column": 47 }, "end": { - "line": 123, + "line": 136, "column": 48 } } @@ -11393,15 +11393,15 @@ "binop": null }, "value": "serialiseToQueryObject", - "start": 4006, - "end": 4028, + "start": 4292, + "end": 4314, "loc": { "start": { - "line": 123, + "line": 136, "column": 48 }, "end": { - "line": 123, + "line": 136, "column": 70 } } @@ -11419,15 +11419,15 @@ "binop": null, "updateContext": null }, - "start": 4028, - "end": 4029, + "start": 4314, + "end": 4315, "loc": { "start": { - "line": 123, + "line": 136, "column": 70 }, "end": { - "line": 123, + "line": 136, "column": 71 } } @@ -11435,15 +11435,15 @@ { "type": "CommentBlock", "value": "*\n * See {@link QueryStringOptions}\n *\n * @access public\n * @type {QueryStringOptions}\n ", - "start": 4035, - "end": 4147, + "start": 4321, + "end": 4433, "loc": { "start": { - "line": 125, + "line": 138, "column": 4 }, "end": { - "line": 130, + "line": 143, "column": 7 } } @@ -11463,15 +11463,15 @@ "updateContext": null }, "value": "this", - "start": 4152, - "end": 4156, + "start": 4438, + "end": 4442, "loc": { "start": { - "line": 131, + "line": 144, "column": 4 }, "end": { - "line": 131, + "line": 144, "column": 8 } } @@ -11489,15 +11489,15 @@ "binop": null, "updateContext": null }, - "start": 4156, - "end": 4157, + "start": 4442, + "end": 4443, "loc": { "start": { - "line": 131, + "line": 144, "column": 8 }, "end": { - "line": 131, + "line": 144, "column": 9 } } @@ -11515,15 +11515,15 @@ "binop": null }, "value": "queryStringOptions", - "start": 4157, - "end": 4175, + "start": 4443, + "end": 4461, "loc": { "start": { - "line": 131, + "line": 144, "column": 9 }, "end": { - "line": 131, + "line": 144, "column": 27 } } @@ -11542,15 +11542,15 @@ "updateContext": null }, "value": "=", - "start": 4176, - "end": 4177, + "start": 4462, + "end": 4463, "loc": { "start": { - "line": 131, + "line": 144, "column": 28 }, "end": { - "line": 131, + "line": 144, "column": 29 } } @@ -11568,15 +11568,15 @@ "binop": null }, "value": "mergedOptions", - "start": 4178, - "end": 4191, + "start": 4464, + "end": 4477, "loc": { "start": { - "line": 131, + "line": 144, "column": 30 }, "end": { - "line": 131, + "line": 144, "column": 43 } } @@ -11594,15 +11594,15 @@ "binop": null, "updateContext": null }, - "start": 4191, - "end": 4192, + "start": 4477, + "end": 4478, "loc": { "start": { - "line": 131, + "line": 144, "column": 43 }, "end": { - "line": 131, + "line": 144, "column": 44 } } @@ -11620,15 +11620,15 @@ "binop": null }, "value": "queryStringOptions", - "start": 4192, - "end": 4210, + "start": 4478, + "end": 4496, "loc": { "start": { - "line": 131, + "line": 144, "column": 44 }, "end": { - "line": 131, + "line": 144, "column": 62 } } @@ -11646,15 +11646,15 @@ "binop": null, "updateContext": null }, - "start": 4210, - "end": 4211, + "start": 4496, + "end": 4497, "loc": { "start": { - "line": 131, + "line": 144, "column": 62 }, "end": { - "line": 131, + "line": 144, "column": 63 } } @@ -11662,15 +11662,15 @@ { "type": "CommentBlock", "value": "*\n * If you need to change the behavior of the\n * query string, then you should first check\n * {@link QueryBuilder#queryStringOptions}\n *\n * For more information, see {@link SerialiseToQueryStringCallback}\n *\n * @access public\n * @type {SerialiseToQueryStringCallback}\n ", - "start": 4217, - "end": 4527, + "start": 4503, + "end": 4813, "loc": { "start": { - "line": 133, + "line": 146, "column": 4 }, "end": { - "line": 142, + "line": 155, "column": 7 } } @@ -11690,15 +11690,15 @@ "updateContext": null }, "value": "this", - "start": 4532, - "end": 4536, + "start": 4818, + "end": 4822, "loc": { "start": { - "line": 143, + "line": 156, "column": 4 }, "end": { - "line": 143, + "line": 156, "column": 8 } } @@ -11716,15 +11716,15 @@ "binop": null, "updateContext": null }, - "start": 4536, - "end": 4537, + "start": 4822, + "end": 4823, "loc": { "start": { - "line": 143, + "line": 156, "column": 8 }, "end": { - "line": 143, + "line": 156, "column": 9 } } @@ -11742,15 +11742,15 @@ "binop": null }, "value": "serialiseToQueryString", - "start": 4537, - "end": 4559, + "start": 4823, + "end": 4845, "loc": { "start": { - "line": 143, + "line": 156, "column": 9 }, "end": { - "line": 143, + "line": 156, "column": 31 } } @@ -11769,15 +11769,15 @@ "updateContext": null }, "value": "=", - "start": 4560, - "end": 4561, + "start": 4846, + "end": 4847, "loc": { "start": { - "line": 143, + "line": 156, "column": 32 }, "end": { - "line": 143, + "line": 156, "column": 33 } } @@ -11795,15 +11795,15 @@ "binop": null }, "value": "mergedOptions", - "start": 4562, - "end": 4575, + "start": 4848, + "end": 4861, "loc": { "start": { - "line": 143, + "line": 156, "column": 34 }, "end": { - "line": 143, + "line": 156, "column": 47 } } @@ -11821,15 +11821,15 @@ "binop": null, "updateContext": null }, - "start": 4575, - "end": 4576, + "start": 4861, + "end": 4862, "loc": { "start": { - "line": 143, + "line": 156, "column": 47 }, "end": { - "line": 143, + "line": 156, "column": 48 } } @@ -11847,15 +11847,15 @@ "binop": null }, "value": "serialiseToQueryString", - "start": 4576, - "end": 4598, + "start": 4862, + "end": 4884, "loc": { "start": { - "line": 143, + "line": 156, "column": 48 }, "end": { - "line": 143, + "line": 156, "column": 70 } } @@ -11873,15 +11873,15 @@ "binop": null, "updateContext": null }, - "start": 4598, - "end": 4599, + "start": 4884, + "end": 4885, "loc": { "start": { - "line": 143, + "line": 156, "column": 70 }, "end": { - "line": 143, + "line": 156, "column": 71 } } @@ -11898,15 +11898,15 @@ "postfix": false, "binop": null }, - "start": 4602, - "end": 4603, + "start": 4888, + "end": 4889, "loc": { "start": { - "line": 144, + "line": 157, "column": 2 }, "end": { - "line": 144, + "line": 157, "column": 3 } } @@ -11914,15 +11914,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * an object and returns that object.\n * That object is passed as data as\n * part of AJAX post requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {Object} The query object.\n ", - "start": 4607, - "end": 4883, + "start": 4893, + "end": 5169, "loc": { "start": { - "line": 146, + "line": 159, "column": 2 }, "end": { - "line": 155, + "line": 168, "column": 5 } } @@ -11940,15 +11940,15 @@ "binop": null }, "value": "getQueryObject", - "start": 4886, - "end": 4900, + "start": 5172, + "end": 5186, "loc": { "start": { - "line": 156, + "line": 169, "column": 2 }, "end": { - "line": 156, + "line": 169, "column": 16 } } @@ -11965,15 +11965,15 @@ "postfix": false, "binop": null }, - "start": 4900, - "end": 4901, + "start": 5186, + "end": 5187, "loc": { "start": { - "line": 156, + "line": 169, "column": 16 }, "end": { - "line": 156, + "line": 169, "column": 17 } } @@ -11991,15 +11991,15 @@ "binop": null }, "value": "datasource", - "start": 4901, - "end": 4911, + "start": 5187, + "end": 5197, "loc": { "start": { - "line": 156, + "line": 169, "column": 17 }, "end": { - "line": 156, + "line": 169, "column": 27 } } @@ -12016,15 +12016,15 @@ "postfix": false, "binop": null }, - "start": 4911, - "end": 4912, + "start": 5197, + "end": 5198, "loc": { "start": { - "line": 156, + "line": 169, "column": 27 }, "end": { - "line": 156, + "line": 169, "column": 28 } } @@ -12041,15 +12041,15 @@ "postfix": false, "binop": null }, - "start": 4913, - "end": 4914, + "start": 5199, + "end": 5200, "loc": { "start": { - "line": 156, + "line": 169, "column": 29 }, "end": { - "line": 156, + "line": 169, "column": 30 } } @@ -12069,15 +12069,15 @@ "updateContext": null }, "value": "if", - "start": 4919, - "end": 4921, + "start": 5205, + "end": 5207, "loc": { "start": { - "line": 157, + "line": 170, "column": 4 }, "end": { - "line": 157, + "line": 170, "column": 6 } } @@ -12094,15 +12094,15 @@ "postfix": false, "binop": null }, - "start": 4922, - "end": 4923, + "start": 5208, + "end": 5209, "loc": { "start": { - "line": 157, + "line": 170, "column": 7 }, "end": { - "line": 157, + "line": 170, "column": 8 } } @@ -12121,15 +12121,15 @@ "updateContext": null }, "value": "!", - "start": 4923, - "end": 4924, + "start": 5209, + "end": 5210, "loc": { "start": { - "line": 157, + "line": 170, "column": 8 }, "end": { - "line": 157, + "line": 170, "column": 9 } } @@ -12149,15 +12149,15 @@ "updateContext": null }, "value": "this", - "start": 4924, - "end": 4928, + "start": 5210, + "end": 5214, "loc": { "start": { - "line": 157, + "line": 170, "column": 9 }, "end": { - "line": 157, + "line": 170, "column": 13 } } @@ -12175,15 +12175,15 @@ "binop": null, "updateContext": null }, - "start": 4928, - "end": 4929, + "start": 5214, + "end": 5215, "loc": { "start": { - "line": 157, + "line": 170, "column": 13 }, "end": { - "line": 157, + "line": 170, "column": 14 } } @@ -12201,15 +12201,15 @@ "binop": null }, "value": "serialiseToQueryObject", - "start": 4929, - "end": 4951, + "start": 5215, + "end": 5237, "loc": { "start": { - "line": 157, + "line": 170, "column": 14 }, "end": { - "line": 157, + "line": 170, "column": 36 } } @@ -12226,15 +12226,15 @@ "postfix": false, "binop": null }, - "start": 4951, - "end": 4952, + "start": 5237, + "end": 5238, "loc": { "start": { - "line": 157, + "line": 170, "column": 36 }, "end": { - "line": 157, + "line": 170, "column": 37 } } @@ -12251,15 +12251,15 @@ "postfix": false, "binop": null }, - "start": 4953, - "end": 4954, + "start": 5239, + "end": 5240, "loc": { "start": { - "line": 157, + "line": 170, "column": 38 }, "end": { - "line": 157, + "line": 170, "column": 39 } } @@ -12279,15 +12279,15 @@ "updateContext": null }, "value": "throw", - "start": 4961, - "end": 4966, + "start": 5247, + "end": 5252, "loc": { "start": { - "line": 158, + "line": 171, "column": 6 }, "end": { - "line": 158, + "line": 171, "column": 11 } } @@ -12307,15 +12307,15 @@ "updateContext": null }, "value": "new", - "start": 4967, - "end": 4970, + "start": 5253, + "end": 5256, "loc": { "start": { - "line": 158, + "line": 171, "column": 12 }, "end": { - "line": 158, + "line": 171, "column": 15 } } @@ -12333,15 +12333,15 @@ "binop": null }, "value": "Error", - "start": 4971, - "end": 4976, + "start": 5257, + "end": 5262, "loc": { "start": { - "line": 158, + "line": 171, "column": 16 }, "end": { - "line": 158, + "line": 171, "column": 21 } } @@ -12358,15 +12358,15 @@ "postfix": false, "binop": null }, - "start": 4976, - "end": 4977, + "start": 5262, + "end": 5263, "loc": { "start": { - "line": 158, + "line": 171, "column": 21 }, "end": { - "line": 158, + "line": 171, "column": 22 } } @@ -12385,15 +12385,15 @@ "updateContext": null }, "value": "serialiseToQueryObject must be specified and cannot be undefined or null.", - "start": 4977, - "end": 5052, + "start": 5263, + "end": 5338, "loc": { "start": { - "line": 158, + "line": 171, "column": 22 }, "end": { - "line": 158, + "line": 171, "column": 97 } } @@ -12410,15 +12410,15 @@ "postfix": false, "binop": null }, - "start": 5052, - "end": 5053, + "start": 5338, + "end": 5339, "loc": { "start": { - "line": 158, + "line": 171, "column": 97 }, "end": { - "line": 158, + "line": 171, "column": 98 } } @@ -12436,15 +12436,15 @@ "binop": null, "updateContext": null }, - "start": 5053, - "end": 5054, + "start": 5339, + "end": 5340, "loc": { "start": { - "line": 158, + "line": 171, "column": 98 }, "end": { - "line": 158, + "line": 171, "column": 99 } } @@ -12461,15 +12461,15 @@ "postfix": false, "binop": null }, - "start": 5059, - "end": 5060, + "start": 5345, + "end": 5346, "loc": { "start": { - "line": 159, + "line": 172, "column": 4 }, "end": { - "line": 159, + "line": 172, "column": 5 } } @@ -12489,15 +12489,15 @@ "updateContext": null }, "value": "return", - "start": 5065, - "end": 5071, + "start": 5351, + "end": 5357, "loc": { "start": { - "line": 160, + "line": 173, "column": 4 }, "end": { - "line": 160, + "line": 173, "column": 10 } } @@ -12517,15 +12517,15 @@ "updateContext": null }, "value": "this", - "start": 5072, - "end": 5076, + "start": 5358, + "end": 5362, "loc": { "start": { - "line": 160, + "line": 173, "column": 11 }, "end": { - "line": 160, + "line": 173, "column": 15 } } @@ -12543,15 +12543,15 @@ "binop": null, "updateContext": null }, - "start": 5076, - "end": 5077, + "start": 5362, + "end": 5363, "loc": { "start": { - "line": 160, + "line": 173, "column": 15 }, "end": { - "line": 160, + "line": 173, "column": 16 } } @@ -12569,15 +12569,15 @@ "binop": null }, "value": "serialiseToQueryObject", - "start": 5077, - "end": 5099, + "start": 5363, + "end": 5385, "loc": { "start": { - "line": 160, + "line": 173, "column": 16 }, "end": { - "line": 160, + "line": 173, "column": 38 } } @@ -12595,15 +12595,15 @@ "binop": null, "updateContext": null }, - "start": 5099, - "end": 5100, + "start": 5385, + "end": 5386, "loc": { "start": { - "line": 160, + "line": 173, "column": 38 }, "end": { - "line": 160, + "line": 173, "column": 39 } } @@ -12621,15 +12621,15 @@ "binop": null }, "value": "call", - "start": 5100, - "end": 5104, + "start": 5386, + "end": 5390, "loc": { "start": { - "line": 160, + "line": 173, "column": 39 }, "end": { - "line": 160, + "line": 173, "column": 43 } } @@ -12646,15 +12646,15 @@ "postfix": false, "binop": null }, - "start": 5104, - "end": 5105, + "start": 5390, + "end": 5391, "loc": { "start": { - "line": 160, + "line": 173, "column": 43 }, "end": { - "line": 160, + "line": 173, "column": 44 } } @@ -12674,15 +12674,15 @@ "updateContext": null }, "value": "this", - "start": 5105, - "end": 5109, + "start": 5391, + "end": 5395, "loc": { "start": { - "line": 160, + "line": 173, "column": 44 }, "end": { - "line": 160, + "line": 173, "column": 48 } } @@ -12700,15 +12700,15 @@ "binop": null, "updateContext": null }, - "start": 5109, - "end": 5110, + "start": 5395, + "end": 5396, "loc": { "start": { - "line": 160, + "line": 173, "column": 48 }, "end": { - "line": 160, + "line": 173, "column": 49 } } @@ -12726,15 +12726,15 @@ "binop": null }, "value": "datasource", - "start": 5111, - "end": 5121, + "start": 5397, + "end": 5407, "loc": { "start": { - "line": 160, + "line": 173, "column": 50 }, "end": { - "line": 160, + "line": 173, "column": 60 } } @@ -12751,15 +12751,15 @@ "postfix": false, "binop": null }, - "start": 5121, - "end": 5122, + "start": 5407, + "end": 5408, "loc": { "start": { - "line": 160, + "line": 173, "column": 60 }, "end": { - "line": 160, + "line": 173, "column": 61 } } @@ -12777,15 +12777,15 @@ "binop": null, "updateContext": null }, - "start": 5122, - "end": 5123, + "start": 5408, + "end": 5409, "loc": { "start": { - "line": 160, + "line": 173, "column": 61 }, "end": { - "line": 160, + "line": 173, "column": 62 } } @@ -12802,15 +12802,15 @@ "postfix": false, "binop": null }, - "start": 5126, - "end": 5127, + "start": 5412, + "end": 5413, "loc": { "start": { - "line": 161, + "line": 174, "column": 2 }, "end": { - "line": 161, + "line": 174, "column": 3 } } @@ -12818,15 +12818,15 @@ { "type": "CommentBlock", "value": "*\n * Serialises a datasource into\n * a query string and returns that string.\n * This string is passed as data as\n * part of AJAX get requests.\n *\n * @param {DatasourceBase} datasource The datasource.\n * @access public\n * @returns {String} The query string.\n ", - "start": 5131, - "end": 5411, + "start": 5417, + "end": 5697, "loc": { "start": { - "line": 163, + "line": 176, "column": 2 }, "end": { - "line": 172, + "line": 185, "column": 5 } } @@ -12844,15 +12844,15 @@ "binop": null }, "value": "getQueryString", - "start": 5414, - "end": 5428, + "start": 5700, + "end": 5714, "loc": { "start": { - "line": 173, + "line": 186, "column": 2 }, "end": { - "line": 173, + "line": 186, "column": 16 } } @@ -12869,15 +12869,15 @@ "postfix": false, "binop": null }, - "start": 5428, - "end": 5429, + "start": 5714, + "end": 5715, "loc": { "start": { - "line": 173, + "line": 186, "column": 16 }, "end": { - "line": 173, + "line": 186, "column": 17 } } @@ -12895,15 +12895,15 @@ "binop": null }, "value": "datasource", - "start": 5429, - "end": 5439, + "start": 5715, + "end": 5725, "loc": { "start": { - "line": 173, + "line": 186, "column": 17 }, "end": { - "line": 173, + "line": 186, "column": 27 } } @@ -12920,15 +12920,15 @@ "postfix": false, "binop": null }, - "start": 5439, - "end": 5440, + "start": 5725, + "end": 5726, "loc": { "start": { - "line": 173, + "line": 186, "column": 27 }, "end": { - "line": 173, + "line": 186, "column": 28 } } @@ -12945,15 +12945,15 @@ "postfix": false, "binop": null }, - "start": 5441, - "end": 5442, + "start": 5727, + "end": 5728, "loc": { "start": { - "line": 173, + "line": 186, "column": 29 }, "end": { - "line": 173, + "line": 186, "column": 30 } } @@ -12973,15 +12973,15 @@ "updateContext": null }, "value": "const", - "start": 5447, - "end": 5452, + "start": 5733, + "end": 5738, "loc": { "start": { - "line": 174, + "line": 187, "column": 4 }, "end": { - "line": 174, + "line": 187, "column": 9 } } @@ -12999,15 +12999,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 5453, - "end": 5470, + "start": 5739, + "end": 5756, "loc": { "start": { - "line": 174, + "line": 187, "column": 10 }, "end": { - "line": 174, + "line": 187, "column": 27 } } @@ -13026,15 +13026,15 @@ "updateContext": null }, "value": "=", - "start": 5471, - "end": 5472, + "start": 5757, + "end": 5758, "loc": { "start": { - "line": 174, + "line": 187, "column": 28 }, "end": { - "line": 174, + "line": 187, "column": 29 } } @@ -13051,15 +13051,15 @@ "postfix": false, "binop": null }, - "start": 5473, - "end": 5474, + "start": 5759, + "end": 5760, "loc": { "start": { - "line": 174, + "line": 187, "column": 30 }, "end": { - "line": 174, + "line": 187, "column": 31 } } @@ -13077,15 +13077,15 @@ "binop": null, "updateContext": null }, - "start": 5475, - "end": 5478, + "start": 5761, + "end": 5764, "loc": { "start": { - "line": 174, + "line": 187, "column": 32 }, "end": { - "line": 174, + "line": 187, "column": 35 } } @@ -13105,15 +13105,15 @@ "updateContext": null }, "value": "this", - "start": 5478, - "end": 5482, + "start": 5764, + "end": 5768, "loc": { "start": { - "line": 174, + "line": 187, "column": 35 }, "end": { - "line": 174, + "line": 187, "column": 39 } } @@ -13131,15 +13131,15 @@ "binop": null, "updateContext": null }, - "start": 5482, - "end": 5483, + "start": 5768, + "end": 5769, "loc": { "start": { - "line": 174, + "line": 187, "column": 39 }, "end": { - "line": 174, + "line": 187, "column": 40 } } @@ -13157,15 +13157,15 @@ "binop": null }, "value": "getQueryObject", - "start": 5483, - "end": 5497, + "start": 5769, + "end": 5783, "loc": { "start": { - "line": 174, + "line": 187, "column": 40 }, "end": { - "line": 174, + "line": 187, "column": 54 } } @@ -13182,15 +13182,15 @@ "postfix": false, "binop": null }, - "start": 5497, - "end": 5498, + "start": 5783, + "end": 5784, "loc": { "start": { - "line": 174, + "line": 187, "column": 54 }, "end": { - "line": 174, + "line": 187, "column": 55 } } @@ -13208,15 +13208,15 @@ "binop": null }, "value": "datasource", - "start": 5498, - "end": 5508, + "start": 5784, + "end": 5794, "loc": { "start": { - "line": 174, + "line": 187, "column": 55 }, "end": { - "line": 174, + "line": 187, "column": 65 } } @@ -13233,15 +13233,15 @@ "postfix": false, "binop": null }, - "start": 5508, - "end": 5509, + "start": 5794, + "end": 5795, "loc": { "start": { - "line": 174, + "line": 187, "column": 65 }, "end": { - "line": 174, + "line": 187, "column": 66 } } @@ -13258,15 +13258,15 @@ "postfix": false, "binop": null }, - "start": 5510, - "end": 5511, + "start": 5796, + "end": 5797, "loc": { "start": { - "line": 174, + "line": 187, "column": 67 }, "end": { - "line": 174, + "line": 187, "column": 68 } } @@ -13284,15 +13284,15 @@ "binop": null, "updateContext": null }, - "start": 5511, - "end": 5512, + "start": 5797, + "end": 5798, "loc": { "start": { - "line": 174, + "line": 187, "column": 68 }, "end": { - "line": 174, + "line": 187, "column": 69 } } @@ -13312,15 +13312,15 @@ "updateContext": null }, "value": "if", - "start": 5517, - "end": 5519, + "start": 5803, + "end": 5805, "loc": { "start": { - "line": 175, + "line": 188, "column": 4 }, "end": { - "line": 175, + "line": 188, "column": 6 } } @@ -13337,15 +13337,15 @@ "postfix": false, "binop": null }, - "start": 5520, - "end": 5521, + "start": 5806, + "end": 5807, "loc": { "start": { - "line": 175, + "line": 188, "column": 7 }, "end": { - "line": 175, + "line": 188, "column": 8 } } @@ -13365,15 +13365,15 @@ "updateContext": null }, "value": "this", - "start": 5521, - "end": 5525, + "start": 5807, + "end": 5811, "loc": { "start": { - "line": 175, + "line": 188, "column": 8 }, "end": { - "line": 175, + "line": 188, "column": 12 } } @@ -13391,15 +13391,15 @@ "binop": null, "updateContext": null }, - "start": 5525, - "end": 5526, + "start": 5811, + "end": 5812, "loc": { "start": { - "line": 175, + "line": 188, "column": 12 }, "end": { - "line": 175, + "line": 188, "column": 13 } } @@ -13417,15 +13417,15 @@ "binop": null }, "value": "serialiseToQueryString", - "start": 5526, - "end": 5548, + "start": 5812, + "end": 5834, "loc": { "start": { - "line": 175, + "line": 188, "column": 13 }, "end": { - "line": 175, + "line": 188, "column": 35 } } @@ -13442,15 +13442,15 @@ "postfix": false, "binop": null }, - "start": 5548, - "end": 5549, + "start": 5834, + "end": 5835, "loc": { "start": { - "line": 175, + "line": 188, "column": 35 }, "end": { - "line": 175, + "line": 188, "column": 36 } } @@ -13467,15 +13467,15 @@ "postfix": false, "binop": null }, - "start": 5550, - "end": 5551, + "start": 5836, + "end": 5837, "loc": { "start": { - "line": 175, + "line": 188, "column": 37 }, "end": { - "line": 175, + "line": 188, "column": 38 } } @@ -13495,15 +13495,15 @@ "updateContext": null }, "value": "return", - "start": 5558, - "end": 5564, + "start": 5844, + "end": 5850, "loc": { "start": { - "line": 176, + "line": 189, "column": 6 }, "end": { - "line": 176, + "line": 189, "column": 12 } } @@ -13523,15 +13523,15 @@ "updateContext": null }, "value": "this", - "start": 5565, - "end": 5569, + "start": 5851, + "end": 5855, "loc": { "start": { - "line": 176, + "line": 189, "column": 13 }, "end": { - "line": 176, + "line": 189, "column": 17 } } @@ -13549,15 +13549,15 @@ "binop": null, "updateContext": null }, - "start": 5569, - "end": 5570, + "start": 5855, + "end": 5856, "loc": { "start": { - "line": 176, + "line": 189, "column": 17 }, "end": { - "line": 176, + "line": 189, "column": 18 } } @@ -13575,15 +13575,15 @@ "binop": null }, "value": "serialiseToQueryString", - "start": 5570, - "end": 5592, + "start": 5856, + "end": 5878, "loc": { "start": { - "line": 176, + "line": 189, "column": 18 }, "end": { - "line": 176, + "line": 189, "column": 40 } } @@ -13601,15 +13601,15 @@ "binop": null, "updateContext": null }, - "start": 5592, - "end": 5593, + "start": 5878, + "end": 5879, "loc": { "start": { - "line": 176, + "line": 189, "column": 40 }, "end": { - "line": 176, + "line": 189, "column": 41 } } @@ -13627,15 +13627,15 @@ "binop": null }, "value": "call", - "start": 5593, - "end": 5597, + "start": 5879, + "end": 5883, "loc": { "start": { - "line": 176, + "line": 189, "column": 41 }, "end": { - "line": 176, + "line": 189, "column": 45 } } @@ -13652,15 +13652,15 @@ "postfix": false, "binop": null }, - "start": 5597, - "end": 5598, + "start": 5883, + "end": 5884, "loc": { "start": { - "line": 176, + "line": 189, "column": 45 }, "end": { - "line": 176, + "line": 189, "column": 46 } } @@ -13680,15 +13680,15 @@ "updateContext": null }, "value": "this", - "start": 5598, - "end": 5602, + "start": 5884, + "end": 5888, "loc": { "start": { - "line": 176, + "line": 189, "column": 46 }, "end": { - "line": 176, + "line": 189, "column": 50 } } @@ -13706,15 +13706,15 @@ "binop": null, "updateContext": null }, - "start": 5602, - "end": 5603, + "start": 5888, + "end": 5889, "loc": { "start": { - "line": 176, + "line": 189, "column": 50 }, "end": { - "line": 176, + "line": 189, "column": 51 } } @@ -13732,15 +13732,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 5604, - "end": 5621, + "start": 5890, + "end": 5907, "loc": { "start": { - "line": 176, + "line": 189, "column": 52 }, "end": { - "line": 176, + "line": 189, "column": 69 } } @@ -13757,15 +13757,15 @@ "postfix": false, "binop": null }, - "start": 5621, - "end": 5622, + "start": 5907, + "end": 5908, "loc": { "start": { - "line": 176, + "line": 189, "column": 69 }, "end": { - "line": 176, + "line": 189, "column": 70 } } @@ -13783,15 +13783,15 @@ "binop": null, "updateContext": null }, - "start": 5622, - "end": 5623, + "start": 5908, + "end": 5909, "loc": { "start": { - "line": 176, + "line": 189, "column": 70 }, "end": { - "line": 176, + "line": 189, "column": 71 } } @@ -13808,15 +13808,15 @@ "postfix": false, "binop": null }, - "start": 5628, - "end": 5629, + "start": 5914, + "end": 5915, "loc": { "start": { - "line": 177, + "line": 190, "column": 4 }, "end": { - "line": 177, + "line": 190, "column": 5 } } @@ -13836,15 +13836,15 @@ "updateContext": null }, "value": "throw", - "start": 5634, - "end": 5639, + "start": 5920, + "end": 5925, "loc": { "start": { - "line": 178, + "line": 191, "column": 4 }, "end": { - "line": 178, + "line": 191, "column": 9 } } @@ -13864,15 +13864,15 @@ "updateContext": null }, "value": "new", - "start": 5640, - "end": 5643, + "start": 5926, + "end": 5929, "loc": { "start": { - "line": 178, + "line": 191, "column": 10 }, "end": { - "line": 178, + "line": 191, "column": 13 } } @@ -13890,15 +13890,15 @@ "binop": null }, "value": "Error", - "start": 5644, - "end": 5649, + "start": 5930, + "end": 5935, "loc": { "start": { - "line": 178, + "line": 191, "column": 14 }, "end": { - "line": 178, + "line": 191, "column": 19 } } @@ -13915,15 +13915,15 @@ "postfix": false, "binop": null }, - "start": 5649, - "end": 5650, + "start": 5935, + "end": 5936, "loc": { "start": { - "line": 178, + "line": 191, "column": 19 }, "end": { - "line": 178, + "line": 191, "column": 20 } } @@ -13942,15 +13942,15 @@ "updateContext": null }, "value": "Query string serialiser is specified as null or undefined in the options.", - "start": 5650, - "end": 5725, + "start": 5936, + "end": 6011, "loc": { "start": { - "line": 178, + "line": 191, "column": 20 }, "end": { - "line": 178, + "line": 191, "column": 95 } } @@ -13967,15 +13967,15 @@ "postfix": false, "binop": null }, - "start": 5725, - "end": 5726, + "start": 6011, + "end": 6012, "loc": { "start": { - "line": 178, + "line": 191, "column": 95 }, "end": { - "line": 178, + "line": 191, "column": 96 } } @@ -13993,15 +13993,15 @@ "binop": null, "updateContext": null }, - "start": 5726, - "end": 5727, + "start": 6012, + "end": 6013, "loc": { "start": { - "line": 178, + "line": 191, "column": 96 }, "end": { - "line": 178, + "line": 191, "column": 97 } } @@ -14018,15 +14018,15 @@ "postfix": false, "binop": null }, - "start": 5730, - "end": 5731, + "start": 6016, + "end": 6017, "loc": { "start": { - "line": 179, + "line": 192, "column": 2 }, "end": { - "line": 179, + "line": 192, "column": 3 } } @@ -14043,15 +14043,15 @@ "postfix": false, "binop": null }, - "start": 5732, - "end": 5733, + "start": 6018, + "end": 6019, "loc": { "start": { - "line": 180, + "line": 193, "column": 0 }, "end": { - "line": 180, + "line": 193, "column": 1 } } @@ -14069,15 +14069,15 @@ "binop": null }, "value": "QueryBuilder", - "start": 5735, - "end": 5747, + "start": 6021, + "end": 6033, "loc": { "start": { - "line": 182, + "line": 195, "column": 0 }, "end": { - "line": 182, + "line": 195, "column": 12 } } @@ -14095,15 +14095,15 @@ "binop": null, "updateContext": null }, - "start": 5747, - "end": 5748, + "start": 6033, + "end": 6034, "loc": { "start": { - "line": 182, + "line": 195, "column": 12 }, "end": { - "line": 182, + "line": 195, "column": 13 } } @@ -14121,15 +14121,15 @@ "binop": null }, "value": "prototype", - "start": 5748, - "end": 5757, + "start": 6034, + "end": 6043, "loc": { "start": { - "line": 182, + "line": 195, "column": 13 }, "end": { - "line": 182, + "line": 195, "column": 22 } } @@ -14147,15 +14147,15 @@ "binop": null, "updateContext": null }, - "start": 5757, - "end": 5758, + "start": 6043, + "end": 6044, "loc": { "start": { - "line": 182, + "line": 195, "column": 22 }, "end": { - "line": 182, + "line": 195, "column": 23 } } @@ -14173,15 +14173,15 @@ "binop": null }, "value": "defaults", - "start": 5758, - "end": 5766, + "start": 6044, + "end": 6052, "loc": { "start": { - "line": 182, + "line": 195, "column": 23 }, "end": { - "line": 182, + "line": 195, "column": 31 } } @@ -14200,15 +14200,15 @@ "updateContext": null }, "value": "=", - "start": 5767, - "end": 5768, + "start": 6053, + "end": 6054, "loc": { "start": { - "line": 182, + "line": 195, "column": 32 }, "end": { - "line": 182, + "line": 195, "column": 33 } } @@ -14225,15 +14225,15 @@ "postfix": false, "binop": null }, - "start": 5769, - "end": 5770, + "start": 6055, + "end": 6056, "loc": { "start": { - "line": 182, + "line": 195, "column": 34 }, "end": { - "line": 182, + "line": 195, "column": 35 } } @@ -14241,15 +14241,15 @@ { "type": "CommentLine", "value": " Properties to include in the", - "start": 5773, - "end": 5804, + "start": 6059, + "end": 6090, "loc": { "start": { - "line": 183, + "line": 196, "column": 2 }, "end": { - "line": 183, + "line": 196, "column": 33 } } @@ -14257,15 +14257,15 @@ { "type": "CommentLine", "value": " serialisation to GET query string,", - "start": 5807, - "end": 5844, + "start": 6093, + "end": 6130, "loc": { "start": { - "line": 184, + "line": 197, "column": 2 }, "end": { - "line": 184, + "line": 197, "column": 39 } } @@ -14273,15 +14273,15 @@ { "type": "CommentLine", "value": " or when constructing the", - "start": 5847, - "end": 5874, + "start": 6133, + "end": 6160, "loc": { "start": { - "line": 185, + "line": 198, "column": 2 }, "end": { - "line": 185, + "line": 198, "column": 29 } } @@ -14289,15 +14289,15 @@ { "type": "CommentLine", "value": " data object.", - "start": 5877, - "end": 5892, + "start": 6163, + "end": 6178, "loc": { "start": { - "line": 186, + "line": 199, "column": 2 }, "end": { - "line": 186, + "line": 199, "column": 17 } } @@ -14305,15 +14305,15 @@ { "type": "CommentLine", "value": " By default, it only include", - "start": 5895, - "end": 5925, + "start": 6181, + "end": 6211, "loc": { "start": { - "line": 187, + "line": 200, "column": 2 }, "end": { - "line": 187, + "line": 200, "column": 32 } } @@ -14321,15 +14321,15 @@ { "type": "CommentLine", "value": " primitive properties, ignoring", - "start": 5928, - "end": 5961, + "start": 6214, + "end": 6247, "loc": { "start": { - "line": 188, + "line": 201, "column": 2 }, "end": { - "line": 188, + "line": 201, "column": 35 } } @@ -14337,15 +14337,15 @@ { "type": "CommentLine", "value": " objects, arrays and certain properties.", - "start": 5964, - "end": 6006, + "start": 6250, + "end": 6292, "loc": { "start": { - "line": 189, + "line": 202, "column": 2 }, "end": { - "line": 189, + "line": 202, "column": 44 } } @@ -14363,15 +14363,15 @@ "binop": null }, "value": "serialiseToQueryObject", - "start": 6009, - "end": 6031, + "start": 6295, + "end": 6317, "loc": { "start": { - "line": 190, + "line": 203, "column": 2 }, "end": { - "line": 190, + "line": 203, "column": 24 } } @@ -14388,15 +14388,15 @@ "postfix": false, "binop": null }, - "start": 6031, - "end": 6032, + "start": 6317, + "end": 6318, "loc": { "start": { - "line": 190, + "line": 203, "column": 24 }, "end": { - "line": 190, + "line": 203, "column": 25 } } @@ -14414,15 +14414,15 @@ "binop": null }, "value": "datasource", - "start": 6032, - "end": 6042, + "start": 6318, + "end": 6328, "loc": { "start": { - "line": 190, + "line": 203, "column": 25 }, "end": { - "line": 190, + "line": 203, "column": 35 } } @@ -14439,15 +14439,15 @@ "postfix": false, "binop": null }, - "start": 6042, - "end": 6043, + "start": 6328, + "end": 6329, "loc": { "start": { - "line": 190, + "line": 203, "column": 35 }, "end": { - "line": 190, + "line": 203, "column": 36 } } @@ -14464,15 +14464,15 @@ "postfix": false, "binop": null }, - "start": 6044, - "end": 6045, + "start": 6330, + "end": 6331, "loc": { "start": { - "line": 190, + "line": 203, "column": 37 }, "end": { - "line": 190, + "line": 203, "column": 38 } } @@ -14492,15 +14492,15 @@ "updateContext": null }, "value": "const", - "start": 6050, - "end": 6055, + "start": 6336, + "end": 6341, "loc": { "start": { - "line": 191, + "line": 204, "column": 4 }, "end": { - "line": 191, + "line": 204, "column": 9 } } @@ -14518,15 +14518,15 @@ "binop": null }, "value": "entries", - "start": 6056, - "end": 6063, + "start": 6342, + "end": 6349, "loc": { "start": { - "line": 191, + "line": 204, "column": 10 }, "end": { - "line": 191, + "line": 204, "column": 17 } } @@ -14545,15 +14545,15 @@ "updateContext": null }, "value": "=", - "start": 6064, - "end": 6065, + "start": 6350, + "end": 6351, "loc": { "start": { - "line": 191, + "line": 204, "column": 18 }, "end": { - "line": 191, + "line": 204, "column": 19 } } @@ -14571,15 +14571,15 @@ "binop": null }, "value": "Object", - "start": 6066, - "end": 6072, + "start": 6352, + "end": 6358, "loc": { "start": { - "line": 191, + "line": 204, "column": 20 }, "end": { - "line": 191, + "line": 204, "column": 26 } } @@ -14597,15 +14597,15 @@ "binop": null, "updateContext": null }, - "start": 6072, - "end": 6073, + "start": 6358, + "end": 6359, "loc": { "start": { - "line": 191, + "line": 204, "column": 26 }, "end": { - "line": 191, + "line": 204, "column": 27 } } @@ -14623,15 +14623,15 @@ "binop": null }, "value": "entries", - "start": 6073, - "end": 6080, + "start": 6359, + "end": 6366, "loc": { "start": { - "line": 191, + "line": 204, "column": 27 }, "end": { - "line": 191, + "line": 204, "column": 34 } } @@ -14648,15 +14648,15 @@ "postfix": false, "binop": null }, - "start": 6080, - "end": 6081, + "start": 6366, + "end": 6367, "loc": { "start": { - "line": 191, + "line": 204, "column": 34 }, "end": { - "line": 191, + "line": 204, "column": 35 } } @@ -14674,15 +14674,15 @@ "binop": null }, "value": "datasource", - "start": 6081, - "end": 6091, + "start": 6367, + "end": 6377, "loc": { "start": { - "line": 191, + "line": 204, "column": 35 }, "end": { - "line": 191, + "line": 204, "column": 45 } } @@ -14699,15 +14699,15 @@ "postfix": false, "binop": null }, - "start": 6091, - "end": 6092, + "start": 6377, + "end": 6378, "loc": { "start": { - "line": 191, + "line": 204, "column": 45 }, "end": { - "line": 191, + "line": 204, "column": 46 } } @@ -14725,15 +14725,15 @@ "binop": null, "updateContext": null }, - "start": 6092, - "end": 6093, + "start": 6378, + "end": 6379, "loc": { "start": { - "line": 191, + "line": 204, "column": 46 }, "end": { - "line": 191, + "line": 204, "column": 47 } } @@ -14753,15 +14753,15 @@ "updateContext": null }, "value": "const", - "start": 6098, - "end": 6103, + "start": 6384, + "end": 6389, "loc": { "start": { - "line": 192, + "line": 205, "column": 4 }, "end": { - "line": 192, + "line": 205, "column": 9 } } @@ -14779,15 +14779,15 @@ "binop": null }, "value": "filteredEntries", - "start": 6104, - "end": 6119, + "start": 6390, + "end": 6405, "loc": { "start": { - "line": 192, + "line": 205, "column": 10 }, "end": { - "line": 192, + "line": 205, "column": 25 } } @@ -14806,15 +14806,15 @@ "updateContext": null }, "value": "=", - "start": 6120, - "end": 6121, + "start": 6406, + "end": 6407, "loc": { "start": { - "line": 192, + "line": 205, "column": 26 }, "end": { - "line": 192, + "line": 205, "column": 27 } } @@ -14832,15 +14832,15 @@ "binop": null }, "value": "entries", - "start": 6122, - "end": 6129, + "start": 6408, + "end": 6415, "loc": { "start": { - "line": 192, + "line": 205, "column": 28 }, "end": { - "line": 192, + "line": 205, "column": 35 } } @@ -14858,15 +14858,15 @@ "binop": null, "updateContext": null }, - "start": 6129, - "end": 6130, + "start": 6415, + "end": 6416, "loc": { "start": { - "line": 192, + "line": 205, "column": 35 }, "end": { - "line": 192, + "line": 205, "column": 36 } } @@ -14884,15 +14884,15 @@ "binop": null }, "value": "filter", - "start": 6130, - "end": 6136, + "start": 6416, + "end": 6422, "loc": { "start": { - "line": 192, + "line": 205, "column": 36 }, "end": { - "line": 192, + "line": 205, "column": 42 } } @@ -14909,15 +14909,15 @@ "postfix": false, "binop": null }, - "start": 6136, - "end": 6137, + "start": 6422, + "end": 6423, "loc": { "start": { - "line": 192, + "line": 205, "column": 42 }, "end": { - "line": 192, + "line": 205, "column": 43 } } @@ -14934,15 +14934,15 @@ "postfix": false, "binop": null }, - "start": 6137, - "end": 6138, + "start": 6423, + "end": 6424, "loc": { "start": { - "line": 192, + "line": 205, "column": 43 }, "end": { - "line": 192, + "line": 205, "column": 44 } } @@ -14960,15 +14960,15 @@ "binop": null }, "value": "entry", - "start": 6138, - "end": 6143, + "start": 6424, + "end": 6429, "loc": { "start": { - "line": 192, + "line": 205, "column": 44 }, "end": { - "line": 192, + "line": 205, "column": 49 } } @@ -14985,15 +14985,15 @@ "postfix": false, "binop": null }, - "start": 6143, - "end": 6144, + "start": 6429, + "end": 6430, "loc": { "start": { - "line": 192, + "line": 205, "column": 49 }, "end": { - "line": 192, + "line": 205, "column": 50 } } @@ -15011,15 +15011,15 @@ "binop": null, "updateContext": null }, - "start": 6145, - "end": 6147, + "start": 6431, + "end": 6433, "loc": { "start": { - "line": 192, + "line": 205, "column": 51 }, "end": { - "line": 192, + "line": 205, "column": 53 } } @@ -15036,15 +15036,15 @@ "postfix": false, "binop": null }, - "start": 6148, - "end": 6149, + "start": 6434, + "end": 6435, "loc": { "start": { - "line": 192, + "line": 205, "column": 54 }, "end": { - "line": 192, + "line": 205, "column": 55 } } @@ -15064,15 +15064,15 @@ "updateContext": null }, "value": "const", - "start": 6156, - "end": 6161, + "start": 6442, + "end": 6447, "loc": { "start": { - "line": 193, + "line": 206, "column": 6 }, "end": { - "line": 193, + "line": 206, "column": 11 } } @@ -15090,15 +15090,15 @@ "binop": null }, "value": "key", - "start": 6162, - "end": 6165, + "start": 6448, + "end": 6451, "loc": { "start": { - "line": 193, + "line": 206, "column": 12 }, "end": { - "line": 193, + "line": 206, "column": 15 } } @@ -15117,15 +15117,15 @@ "updateContext": null }, "value": "=", - "start": 6166, - "end": 6167, + "start": 6452, + "end": 6453, "loc": { "start": { - "line": 193, + "line": 206, "column": 16 }, "end": { - "line": 193, + "line": 206, "column": 17 } } @@ -15143,15 +15143,15 @@ "binop": null }, "value": "entry", - "start": 6168, - "end": 6173, + "start": 6454, + "end": 6459, "loc": { "start": { - "line": 193, + "line": 206, "column": 18 }, "end": { - "line": 193, + "line": 206, "column": 23 } } @@ -15169,15 +15169,15 @@ "binop": null, "updateContext": null }, - "start": 6173, - "end": 6174, + "start": 6459, + "end": 6460, "loc": { "start": { - "line": 193, + "line": 206, "column": 23 }, "end": { - "line": 193, + "line": 206, "column": 24 } } @@ -15196,15 +15196,15 @@ "updateContext": null }, "value": 0, - "start": 6174, - "end": 6175, + "start": 6460, + "end": 6461, "loc": { "start": { - "line": 193, + "line": 206, "column": 24 }, "end": { - "line": 193, + "line": 206, "column": 25 } } @@ -15222,15 +15222,15 @@ "binop": null, "updateContext": null }, - "start": 6175, - "end": 6176, + "start": 6461, + "end": 6462, "loc": { "start": { - "line": 193, + "line": 206, "column": 25 }, "end": { - "line": 193, + "line": 206, "column": 26 } } @@ -15248,15 +15248,15 @@ "binop": null, "updateContext": null }, - "start": 6176, - "end": 6177, + "start": 6462, + "end": 6463, "loc": { "start": { - "line": 193, + "line": 206, "column": 26 }, "end": { - "line": 193, + "line": 206, "column": 27 } } @@ -15276,15 +15276,15 @@ "updateContext": null }, "value": "if", - "start": 6184, - "end": 6186, + "start": 6470, + "end": 6472, "loc": { "start": { - "line": 194, + "line": 207, "column": 6 }, "end": { - "line": 194, + "line": 207, "column": 8 } } @@ -15301,15 +15301,15 @@ "postfix": false, "binop": null }, - "start": 6187, - "end": 6188, + "start": 6473, + "end": 6474, "loc": { "start": { - "line": 194, + "line": 207, "column": 9 }, "end": { - "line": 194, + "line": 207, "column": 10 } } @@ -15327,15 +15327,15 @@ "binop": null }, "value": "key", - "start": 6188, - "end": 6191, + "start": 6474, + "end": 6477, "loc": { "start": { - "line": 194, + "line": 207, "column": 10 }, "end": { - "line": 194, + "line": 207, "column": 13 } } @@ -15353,15 +15353,15 @@ "binop": null, "updateContext": null }, - "start": 6191, - "end": 6192, + "start": 6477, + "end": 6478, "loc": { "start": { - "line": 194, + "line": 207, "column": 13 }, "end": { - "line": 194, + "line": 207, "column": 14 } } @@ -15379,15 +15379,15 @@ "binop": null }, "value": "indexOf", - "start": 6192, - "end": 6199, + "start": 6478, + "end": 6485, "loc": { "start": { - "line": 194, + "line": 207, "column": 14 }, "end": { - "line": 194, + "line": 207, "column": 21 } } @@ -15404,15 +15404,15 @@ "postfix": false, "binop": null }, - "start": 6199, - "end": 6200, + "start": 6485, + "end": 6486, "loc": { "start": { - "line": 194, + "line": 207, "column": 21 }, "end": { - "line": 194, + "line": 207, "column": 22 } } @@ -15431,15 +15431,15 @@ "updateContext": null }, "value": "_", - "start": 6200, - "end": 6203, + "start": 6486, + "end": 6489, "loc": { "start": { - "line": 194, + "line": 207, "column": 22 }, "end": { - "line": 194, + "line": 207, "column": 25 } } @@ -15456,15 +15456,15 @@ "postfix": false, "binop": null }, - "start": 6203, - "end": 6204, + "start": 6489, + "end": 6490, "loc": { "start": { - "line": 194, + "line": 207, "column": 25 }, "end": { - "line": 194, + "line": 207, "column": 26 } } @@ -15483,15 +15483,15 @@ "updateContext": null }, "value": "===", - "start": 6205, - "end": 6208, + "start": 6491, + "end": 6494, "loc": { "start": { - "line": 194, + "line": 207, "column": 27 }, "end": { - "line": 194, + "line": 207, "column": 30 } } @@ -15510,15 +15510,15 @@ "updateContext": null }, "value": 0, - "start": 6209, - "end": 6210, + "start": 6495, + "end": 6496, "loc": { "start": { - "line": 194, + "line": 207, "column": 31 }, "end": { - "line": 194, + "line": 207, "column": 32 } } @@ -15537,15 +15537,15 @@ "updateContext": null }, "value": "||", - "start": 6211, - "end": 6213, + "start": 6497, + "end": 6499, "loc": { "start": { - "line": 194, + "line": 207, "column": 33 }, "end": { - "line": 194, + "line": 207, "column": 35 } } @@ -15563,15 +15563,15 @@ "binop": null }, "value": "key", - "start": 6214, - "end": 6217, + "start": 6500, + "end": 6503, "loc": { "start": { - "line": 194, + "line": 207, "column": 36 }, "end": { - "line": 194, + "line": 207, "column": 39 } } @@ -15590,15 +15590,15 @@ "updateContext": null }, "value": "===", - "start": 6218, - "end": 6221, + "start": 6504, + "end": 6507, "loc": { "start": { - "line": 194, + "line": 207, "column": 40 }, "end": { - "line": 194, + "line": 207, "column": 43 } } @@ -15617,15 +15617,15 @@ "updateContext": null }, "value": "loading", - "start": 6222, - "end": 6231, + "start": 6508, + "end": 6517, "loc": { "start": { - "line": 194, + "line": 207, "column": 44 }, "end": { - "line": 194, + "line": 207, "column": 53 } } @@ -15642,15 +15642,15 @@ "postfix": false, "binop": null }, - "start": 6231, - "end": 6232, + "start": 6517, + "end": 6518, "loc": { "start": { - "line": 194, + "line": 207, "column": 53 }, "end": { - "line": 194, + "line": 207, "column": 54 } } @@ -15667,15 +15667,15 @@ "postfix": false, "binop": null }, - "start": 6233, - "end": 6234, + "start": 6519, + "end": 6520, "loc": { "start": { - "line": 194, + "line": 207, "column": 55 }, "end": { - "line": 194, + "line": 207, "column": 56 } } @@ -15683,15 +15683,15 @@ { "type": "CommentLine", "value": " Ignore 'private' properties and specified properties", - "start": 6235, - "end": 6290, + "start": 6521, + "end": 6576, "loc": { "start": { - "line": 194, + "line": 207, "column": 57 }, "end": { - "line": 194, + "line": 207, "column": 112 } } @@ -15711,15 +15711,15 @@ "updateContext": null }, "value": "return", - "start": 6299, - "end": 6305, + "start": 6585, + "end": 6591, "loc": { "start": { - "line": 195, + "line": 208, "column": 8 }, "end": { - "line": 195, + "line": 208, "column": 14 } } @@ -15739,15 +15739,15 @@ "updateContext": null }, "value": "false", - "start": 6306, - "end": 6311, + "start": 6592, + "end": 6597, "loc": { "start": { - "line": 195, + "line": 208, "column": 15 }, "end": { - "line": 195, + "line": 208, "column": 20 } } @@ -15765,15 +15765,15 @@ "binop": null, "updateContext": null }, - "start": 6311, - "end": 6312, + "start": 6597, + "end": 6598, "loc": { "start": { - "line": 195, + "line": 208, "column": 20 }, "end": { - "line": 195, + "line": 208, "column": 21 } } @@ -15790,15 +15790,15 @@ "postfix": false, "binop": null }, - "start": 6319, - "end": 6320, + "start": 6605, + "end": 6606, "loc": { "start": { - "line": 196, + "line": 209, "column": 6 }, "end": { - "line": 196, + "line": 209, "column": 7 } } @@ -15806,15 +15806,15 @@ { "type": "CommentLine", "value": " Ignore properties that shouldn't be serialised,", - "start": 6327, - "end": 6377, + "start": 6613, + "end": 6663, "loc": { "start": { - "line": 197, + "line": 210, "column": 6 }, "end": { - "line": 197, + "line": 210, "column": 56 } } @@ -15822,15 +15822,15 @@ { "type": "CommentLine", "value": " i.e. properties that configures the serialisation", - "start": 6384, - "end": 6436, + "start": 6670, + "end": 6722, "loc": { "start": { - "line": 198, + "line": 211, "column": 6 }, "end": { - "line": 198, + "line": 211, "column": 58 } } @@ -15838,15 +15838,15 @@ { "type": "CommentLine", "value": " itself.", - "start": 6443, - "end": 6453, + "start": 6729, + "end": 6739, "loc": { "start": { - "line": 199, + "line": 212, "column": 6 }, "end": { - "line": 199, + "line": 212, "column": 16 } } @@ -15866,15 +15866,15 @@ "updateContext": null }, "value": "const", - "start": 6460, - "end": 6465, + "start": 6746, + "end": 6751, "loc": { "start": { - "line": 200, + "line": 213, "column": 6 }, "end": { - "line": 200, + "line": 213, "column": 11 } } @@ -15892,15 +15892,15 @@ "binop": null }, "value": "value", - "start": 6466, - "end": 6471, + "start": 6752, + "end": 6757, "loc": { "start": { - "line": 200, + "line": 213, "column": 12 }, "end": { - "line": 200, + "line": 213, "column": 17 } } @@ -15919,15 +15919,15 @@ "updateContext": null }, "value": "=", - "start": 6472, - "end": 6473, + "start": 6758, + "end": 6759, "loc": { "start": { - "line": 200, + "line": 213, "column": 18 }, "end": { - "line": 200, + "line": 213, "column": 19 } } @@ -15945,15 +15945,15 @@ "binop": null }, "value": "entry", - "start": 6474, - "end": 6479, + "start": 6760, + "end": 6765, "loc": { "start": { - "line": 200, + "line": 213, "column": 20 }, "end": { - "line": 200, + "line": 213, "column": 25 } } @@ -15971,15 +15971,15 @@ "binop": null, "updateContext": null }, - "start": 6479, - "end": 6480, + "start": 6765, + "end": 6766, "loc": { "start": { - "line": 200, + "line": 213, "column": 25 }, "end": { - "line": 200, + "line": 213, "column": 26 } } @@ -15998,15 +15998,15 @@ "updateContext": null }, "value": 1, - "start": 6480, - "end": 6481, + "start": 6766, + "end": 6767, "loc": { "start": { - "line": 200, + "line": 213, "column": 26 }, "end": { - "line": 200, + "line": 213, "column": 27 } } @@ -16024,15 +16024,15 @@ "binop": null, "updateContext": null }, - "start": 6481, - "end": 6482, + "start": 6767, + "end": 6768, "loc": { "start": { - "line": 200, + "line": 213, "column": 27 }, "end": { - "line": 200, + "line": 213, "column": 28 } } @@ -16050,15 +16050,15 @@ "binop": null, "updateContext": null }, - "start": 6482, - "end": 6483, + "start": 6768, + "end": 6769, "loc": { "start": { - "line": 200, + "line": 213, "column": 28 }, "end": { - "line": 200, + "line": 213, "column": 29 } } @@ -16078,15 +16078,15 @@ "updateContext": null }, "value": "if", - "start": 6490, - "end": 6492, + "start": 6776, + "end": 6778, "loc": { "start": { - "line": 201, + "line": 214, "column": 6 }, "end": { - "line": 201, + "line": 214, "column": 8 } } @@ -16103,15 +16103,15 @@ "postfix": false, "binop": null }, - "start": 6493, - "end": 6494, + "start": 6779, + "end": 6780, "loc": { "start": { - "line": 201, + "line": 214, "column": 9 }, "end": { - "line": 201, + "line": 214, "column": 10 } } @@ -16129,15 +16129,15 @@ "binop": null }, "value": "value", - "start": 6494, - "end": 6499, + "start": 6780, + "end": 6785, "loc": { "start": { - "line": 201, + "line": 214, "column": 10 }, "end": { - "line": 201, + "line": 214, "column": 15 } } @@ -16156,15 +16156,15 @@ "updateContext": null }, "value": "===", - "start": 6500, - "end": 6503, + "start": 6786, + "end": 6789, "loc": { "start": { - "line": 201, + "line": 214, "column": 16 }, "end": { - "line": 201, + "line": 214, "column": 19 } } @@ -16184,15 +16184,15 @@ "updateContext": null }, "value": "null", - "start": 6504, - "end": 6508, + "start": 6790, + "end": 6794, "loc": { "start": { - "line": 201, + "line": 214, "column": 20 }, "end": { - "line": 201, + "line": 214, "column": 24 } } @@ -16209,15 +16209,15 @@ "postfix": false, "binop": null }, - "start": 6508, - "end": 6509, + "start": 6794, + "end": 6795, "loc": { "start": { - "line": 201, + "line": 214, "column": 24 }, "end": { - "line": 201, + "line": 214, "column": 25 } } @@ -16234,15 +16234,15 @@ "postfix": false, "binop": null }, - "start": 6510, - "end": 6511, + "start": 6796, + "end": 6797, "loc": { "start": { - "line": 201, + "line": 214, "column": 26 }, "end": { - "line": 201, + "line": 214, "column": 27 } } @@ -16250,15 +16250,15 @@ { "type": "CommentLine", "value": " Don't serialise null values", - "start": 6512, - "end": 6542, + "start": 6798, + "end": 6828, "loc": { "start": { - "line": 201, + "line": 214, "column": 28 }, "end": { - "line": 201, + "line": 214, "column": 58 } } @@ -16278,15 +16278,15 @@ "updateContext": null }, "value": "return", - "start": 6551, - "end": 6557, + "start": 6837, + "end": 6843, "loc": { "start": { - "line": 202, + "line": 215, "column": 8 }, "end": { - "line": 202, + "line": 215, "column": 14 } } @@ -16306,15 +16306,15 @@ "updateContext": null }, "value": "false", - "start": 6558, - "end": 6563, + "start": 6844, + "end": 6849, "loc": { "start": { - "line": 202, + "line": 215, "column": 15 }, "end": { - "line": 202, + "line": 215, "column": 20 } } @@ -16332,15 +16332,15 @@ "binop": null, "updateContext": null }, - "start": 6563, - "end": 6564, + "start": 6849, + "end": 6850, "loc": { "start": { - "line": 202, + "line": 215, "column": 20 }, "end": { - "line": 202, + "line": 215, "column": 21 } } @@ -16357,15 +16357,15 @@ "postfix": false, "binop": null }, - "start": 6571, - "end": 6572, + "start": 6857, + "end": 6858, "loc": { "start": { - "line": 203, + "line": 216, "column": 6 }, "end": { - "line": 203, + "line": 216, "column": 7 } } @@ -16385,15 +16385,15 @@ "updateContext": null }, "value": "if", - "start": 6579, - "end": 6581, + "start": 6865, + "end": 6867, "loc": { "start": { - "line": 204, + "line": 217, "column": 6 }, "end": { - "line": 204, + "line": 217, "column": 8 } } @@ -16410,15 +16410,15 @@ "postfix": false, "binop": null }, - "start": 6582, - "end": 6583, + "start": 6868, + "end": 6869, "loc": { "start": { - "line": 204, + "line": 217, "column": 9 }, "end": { - "line": 204, + "line": 217, "column": 10 } } @@ -16436,15 +16436,15 @@ "binop": null }, "value": "key", - "start": 6583, - "end": 6586, + "start": 6869, + "end": 6872, "loc": { "start": { - "line": 204, + "line": 217, "column": 10 }, "end": { - "line": 204, + "line": 217, "column": 13 } } @@ -16463,15 +16463,15 @@ "updateContext": null }, "value": "===", - "start": 6587, - "end": 6590, + "start": 6873, + "end": 6876, "loc": { "start": { - "line": 204, + "line": 217, "column": 14 }, "end": { - "line": 204, + "line": 217, "column": 17 } } @@ -16490,15 +16490,15 @@ "updateContext": null }, "value": "queryBuilder", - "start": 6591, - "end": 6605, + "start": 6877, + "end": 6891, "loc": { "start": { - "line": 204, + "line": 217, "column": 18 }, "end": { - "line": 204, + "line": 217, "column": 32 } } @@ -16517,15 +16517,15 @@ "updateContext": null }, "value": "||", - "start": 6606, - "end": 6608, + "start": 6892, + "end": 6894, "loc": { "start": { - "line": 204, + "line": 217, "column": 33 }, "end": { - "line": 204, + "line": 217, "column": 35 } } @@ -16543,15 +16543,15 @@ "binop": null }, "value": "key", - "start": 6609, - "end": 6612, + "start": 6895, + "end": 6898, "loc": { "start": { - "line": 204, + "line": 217, "column": 36 }, "end": { - "line": 204, + "line": 217, "column": 39 } } @@ -16570,15 +16570,15 @@ "updateContext": null }, "value": "===", - "start": 6613, - "end": 6616, + "start": 6899, + "end": 6902, "loc": { "start": { - "line": 204, + "line": 217, "column": 40 }, "end": { - "line": 204, + "line": 217, "column": 43 } } @@ -16597,15 +16597,15 @@ "updateContext": null }, "value": "ajax", - "start": 6617, - "end": 6623, + "start": 6903, + "end": 6909, "loc": { "start": { - "line": 204, + "line": 217, "column": 44 }, "end": { - "line": 204, + "line": 217, "column": 50 } } @@ -16622,15 +16622,15 @@ "postfix": false, "binop": null }, - "start": 6623, - "end": 6624, + "start": 6909, + "end": 6910, "loc": { "start": { - "line": 204, + "line": 217, "column": 50 }, "end": { - "line": 204, + "line": 217, "column": 51 } } @@ -16647,15 +16647,15 @@ "postfix": false, "binop": null }, - "start": 6625, - "end": 6626, + "start": 6911, + "end": 6912, "loc": { "start": { - "line": 204, + "line": 217, "column": 52 }, "end": { - "line": 204, + "line": 217, "column": 53 } } @@ -16675,15 +16675,15 @@ "updateContext": null }, "value": "return", - "start": 6635, - "end": 6641, + "start": 6921, + "end": 6927, "loc": { "start": { - "line": 205, + "line": 218, "column": 8 }, "end": { - "line": 205, + "line": 218, "column": 14 } } @@ -16703,15 +16703,15 @@ "updateContext": null }, "value": "false", - "start": 6642, - "end": 6647, + "start": 6928, + "end": 6933, "loc": { "start": { - "line": 205, + "line": 218, "column": 15 }, "end": { - "line": 205, + "line": 218, "column": 20 } } @@ -16729,15 +16729,15 @@ "binop": null, "updateContext": null }, - "start": 6647, - "end": 6648, + "start": 6933, + "end": 6934, "loc": { "start": { - "line": 205, + "line": 218, "column": 20 }, "end": { - "line": 205, + "line": 218, "column": 21 } } @@ -16754,15 +16754,15 @@ "postfix": false, "binop": null }, - "start": 6655, - "end": 6656, + "start": 6941, + "end": 6942, "loc": { "start": { - "line": 206, + "line": 219, "column": 6 }, "end": { - "line": 206, + "line": 219, "column": 7 } } @@ -16782,15 +16782,15 @@ "updateContext": null }, "value": "return", - "start": 6663, - "end": 6669, + "start": 6949, + "end": 6955, "loc": { "start": { - "line": 207, + "line": 220, "column": 6 }, "end": { - "line": 207, + "line": 220, "column": 12 } } @@ -16810,15 +16810,15 @@ "updateContext": null }, "value": "true", - "start": 6670, - "end": 6674, + "start": 6956, + "end": 6960, "loc": { "start": { - "line": 207, + "line": 220, "column": 13 }, "end": { - "line": 207, + "line": 220, "column": 17 } } @@ -16836,15 +16836,15 @@ "binop": null, "updateContext": null }, - "start": 6674, - "end": 6675, + "start": 6960, + "end": 6961, "loc": { "start": { - "line": 207, + "line": 220, "column": 17 }, "end": { - "line": 207, + "line": 220, "column": 18 } } @@ -16861,15 +16861,15 @@ "postfix": false, "binop": null }, - "start": 6680, - "end": 6681, + "start": 6966, + "end": 6967, "loc": { "start": { - "line": 208, + "line": 221, "column": 4 }, "end": { - "line": 208, + "line": 221, "column": 5 } } @@ -16886,15 +16886,15 @@ "postfix": false, "binop": null }, - "start": 6681, - "end": 6682, + "start": 6967, + "end": 6968, "loc": { "start": { - "line": 208, + "line": 221, "column": 5 }, "end": { - "line": 208, + "line": 221, "column": 6 } } @@ -16912,15 +16912,15 @@ "binop": null, "updateContext": null }, - "start": 6682, - "end": 6683, + "start": 6968, + "end": 6969, "loc": { "start": { - "line": 208, + "line": 221, "column": 6 }, "end": { - "line": 208, + "line": 221, "column": 7 } } @@ -16940,15 +16940,15 @@ "updateContext": null }, "value": "const", - "start": 6688, - "end": 6693, + "start": 6974, + "end": 6979, "loc": { "start": { - "line": 209, + "line": 222, "column": 4 }, "end": { - "line": 209, + "line": 222, "column": 9 } } @@ -16966,15 +16966,15 @@ "binop": null }, "value": "queryObject", - "start": 6694, - "end": 6705, + "start": 6980, + "end": 6991, "loc": { "start": { - "line": 209, + "line": 222, "column": 10 }, "end": { - "line": 209, + "line": 222, "column": 21 } } @@ -16993,15 +16993,15 @@ "updateContext": null }, "value": "=", - "start": 6706, - "end": 6707, + "start": 6992, + "end": 6993, "loc": { "start": { - "line": 209, + "line": 222, "column": 22 }, "end": { - "line": 209, + "line": 222, "column": 23 } } @@ -17018,15 +17018,15 @@ "postfix": false, "binop": null }, - "start": 6708, - "end": 6709, + "start": 6994, + "end": 6995, "loc": { "start": { - "line": 209, + "line": 222, "column": 24 }, "end": { - "line": 209, + "line": 222, "column": 25 } } @@ -17034,15 +17034,15 @@ { "type": "CommentLine", "value": " Computed getters doesn't get included in ES6 spread syntax,", - "start": 6716, - "end": 6778, + "start": 7002, + "end": 7064, "loc": { "start": { - "line": 210, + "line": 223, "column": 6 }, "end": { - "line": 210, + "line": 223, "column": 68 } } @@ -17050,15 +17050,15 @@ { "type": "CommentLine", "value": " so we manually include the necessary one below.", - "start": 6785, - "end": 6835, + "start": 7071, + "end": 7121, "loc": { "start": { - "line": 211, + "line": 224, "column": 6 }, "end": { - "line": 211, + "line": 224, "column": 56 } } @@ -17076,15 +17076,15 @@ "binop": null }, "value": "page", - "start": 6842, - "end": 6846, + "start": 7128, + "end": 7132, "loc": { "start": { - "line": 212, + "line": 225, "column": 6 }, "end": { - "line": 212, + "line": 225, "column": 10 } } @@ -17102,15 +17102,15 @@ "binop": null, "updateContext": null }, - "start": 6846, - "end": 6847, + "start": 7132, + "end": 7133, "loc": { "start": { - "line": 212, + "line": 225, "column": 10 }, "end": { - "line": 212, + "line": 225, "column": 11 } } @@ -17128,15 +17128,15 @@ "binop": null }, "value": "datasource", - "start": 6848, - "end": 6858, + "start": 7134, + "end": 7144, "loc": { "start": { - "line": 212, + "line": 225, "column": 12 }, "end": { - "line": 212, + "line": 225, "column": 22 } } @@ -17154,15 +17154,15 @@ "binop": null, "updateContext": null }, - "start": 6858, - "end": 6859, + "start": 7144, + "end": 7145, "loc": { "start": { - "line": 212, + "line": 225, "column": 22 }, "end": { - "line": 212, + "line": 225, "column": 23 } } @@ -17180,15 +17180,15 @@ "binop": null }, "value": "page", - "start": 6859, - "end": 6863, + "start": 7145, + "end": 7149, "loc": { "start": { - "line": 212, + "line": 225, "column": 23 }, "end": { - "line": 212, + "line": 225, "column": 27 } } @@ -17206,15 +17206,15 @@ "binop": null, "updateContext": null }, - "start": 6863, - "end": 6864, + "start": 7149, + "end": 7150, "loc": { "start": { - "line": 212, + "line": 225, "column": 27 }, "end": { - "line": 212, + "line": 225, "column": 28 } } @@ -17231,15 +17231,15 @@ "postfix": false, "binop": null }, - "start": 6869, - "end": 6870, + "start": 7155, + "end": 7156, "loc": { "start": { - "line": 213, + "line": 226, "column": 4 }, "end": { - "line": 213, + "line": 226, "column": 5 } } @@ -17257,15 +17257,15 @@ "binop": null, "updateContext": null }, - "start": 6870, - "end": 6871, + "start": 7156, + "end": 7157, "loc": { "start": { - "line": 213, + "line": 226, "column": 5 }, "end": { - "line": 213, + "line": 226, "column": 6 } } @@ -17283,15 +17283,15 @@ "binop": null }, "value": "filteredEntries", - "start": 6876, - "end": 6891, + "start": 7162, + "end": 7177, "loc": { "start": { - "line": 214, + "line": 227, "column": 4 }, "end": { - "line": 214, + "line": 227, "column": 19 } } @@ -17309,15 +17309,15 @@ "binop": null, "updateContext": null }, - "start": 6891, - "end": 6892, + "start": 7177, + "end": 7178, "loc": { "start": { - "line": 214, + "line": 227, "column": 19 }, "end": { - "line": 214, + "line": 227, "column": 20 } } @@ -17335,15 +17335,15 @@ "binop": null }, "value": "forEach", - "start": 6892, - "end": 6899, + "start": 7178, + "end": 7185, "loc": { "start": { - "line": 214, + "line": 227, "column": 20 }, "end": { - "line": 214, + "line": 227, "column": 27 } } @@ -17360,15 +17360,15 @@ "postfix": false, "binop": null }, - "start": 6899, - "end": 6900, + "start": 7185, + "end": 7186, "loc": { "start": { - "line": 214, + "line": 227, "column": 27 }, "end": { - "line": 214, + "line": 227, "column": 28 } } @@ -17385,15 +17385,15 @@ "postfix": false, "binop": null }, - "start": 6900, - "end": 6901, + "start": 7186, + "end": 7187, "loc": { "start": { - "line": 214, + "line": 227, "column": 28 }, "end": { - "line": 214, + "line": 227, "column": 29 } } @@ -17411,15 +17411,15 @@ "binop": null }, "value": "entry", - "start": 6901, - "end": 6906, + "start": 7187, + "end": 7192, "loc": { "start": { - "line": 214, + "line": 227, "column": 29 }, "end": { - "line": 214, + "line": 227, "column": 34 } } @@ -17436,15 +17436,15 @@ "postfix": false, "binop": null }, - "start": 6906, - "end": 6907, + "start": 7192, + "end": 7193, "loc": { "start": { - "line": 214, + "line": 227, "column": 34 }, "end": { - "line": 214, + "line": 227, "column": 35 } } @@ -17462,15 +17462,15 @@ "binop": null, "updateContext": null }, - "start": 6908, - "end": 6910, + "start": 7194, + "end": 7196, "loc": { "start": { - "line": 214, + "line": 227, "column": 36 }, "end": { - "line": 214, + "line": 227, "column": 38 } } @@ -17487,15 +17487,15 @@ "postfix": false, "binop": null }, - "start": 6911, - "end": 6912, + "start": 7197, + "end": 7198, "loc": { "start": { - "line": 214, + "line": 227, "column": 39 }, "end": { - "line": 214, + "line": 227, "column": 40 } } @@ -17515,15 +17515,15 @@ "updateContext": null }, "value": "const", - "start": 6919, - "end": 6924, + "start": 7205, + "end": 7210, "loc": { "start": { - "line": 215, + "line": 228, "column": 6 }, "end": { - "line": 215, + "line": 228, "column": 11 } } @@ -17541,15 +17541,15 @@ "binop": null }, "value": "key", - "start": 6925, - "end": 6928, + "start": 7211, + "end": 7214, "loc": { "start": { - "line": 215, + "line": 228, "column": 12 }, "end": { - "line": 215, + "line": 228, "column": 15 } } @@ -17568,15 +17568,15 @@ "updateContext": null }, "value": "=", - "start": 6929, - "end": 6930, + "start": 7215, + "end": 7216, "loc": { "start": { - "line": 215, + "line": 228, "column": 16 }, "end": { - "line": 215, + "line": 228, "column": 17 } } @@ -17594,15 +17594,15 @@ "binop": null }, "value": "entry", - "start": 6931, - "end": 6936, + "start": 7217, + "end": 7222, "loc": { "start": { - "line": 215, + "line": 228, "column": 18 }, "end": { - "line": 215, + "line": 228, "column": 23 } } @@ -17620,15 +17620,15 @@ "binop": null, "updateContext": null }, - "start": 6936, - "end": 6937, + "start": 7222, + "end": 7223, "loc": { "start": { - "line": 215, + "line": 228, "column": 23 }, "end": { - "line": 215, + "line": 228, "column": 24 } } @@ -17647,15 +17647,15 @@ "updateContext": null }, "value": 0, - "start": 6937, - "end": 6938, + "start": 7223, + "end": 7224, "loc": { "start": { - "line": 215, + "line": 228, "column": 24 }, "end": { - "line": 215, + "line": 228, "column": 25 } } @@ -17673,15 +17673,15 @@ "binop": null, "updateContext": null }, - "start": 6938, - "end": 6939, + "start": 7224, + "end": 7225, "loc": { "start": { - "line": 215, + "line": 228, "column": 25 }, "end": { - "line": 215, + "line": 228, "column": 26 } } @@ -17699,15 +17699,15 @@ "binop": null, "updateContext": null }, - "start": 6939, - "end": 6940, + "start": 7225, + "end": 7226, "loc": { "start": { - "line": 215, + "line": 228, "column": 26 }, "end": { - "line": 215, + "line": 228, "column": 27 } } @@ -17727,15 +17727,15 @@ "updateContext": null }, "value": "const", - "start": 6947, - "end": 6952, + "start": 7233, + "end": 7238, "loc": { "start": { - "line": 216, + "line": 229, "column": 6 }, "end": { - "line": 216, + "line": 229, "column": 11 } } @@ -17753,15 +17753,15 @@ "binop": null }, "value": "value", - "start": 6953, - "end": 6958, + "start": 7239, + "end": 7244, "loc": { "start": { - "line": 216, + "line": 229, "column": 12 }, "end": { - "line": 216, + "line": 229, "column": 17 } } @@ -17780,15 +17780,15 @@ "updateContext": null }, "value": "=", - "start": 6959, - "end": 6960, + "start": 7245, + "end": 7246, "loc": { "start": { - "line": 216, + "line": 229, "column": 18 }, "end": { - "line": 216, + "line": 229, "column": 19 } } @@ -17806,15 +17806,15 @@ "binop": null }, "value": "entry", - "start": 6961, - "end": 6966, + "start": 7247, + "end": 7252, "loc": { "start": { - "line": 216, + "line": 229, "column": 20 }, "end": { - "line": 216, + "line": 229, "column": 25 } } @@ -17832,15 +17832,15 @@ "binop": null, "updateContext": null }, - "start": 6966, - "end": 6967, + "start": 7252, + "end": 7253, "loc": { "start": { - "line": 216, + "line": 229, "column": 25 }, "end": { - "line": 216, + "line": 229, "column": 26 } } @@ -17859,15 +17859,15 @@ "updateContext": null }, "value": 1, - "start": 6967, - "end": 6968, + "start": 7253, + "end": 7254, "loc": { "start": { - "line": 216, + "line": 229, "column": 26 }, "end": { - "line": 216, + "line": 229, "column": 27 } } @@ -17885,15 +17885,15 @@ "binop": null, "updateContext": null }, - "start": 6968, - "end": 6969, + "start": 7254, + "end": 7255, "loc": { "start": { - "line": 216, + "line": 229, "column": 27 }, "end": { - "line": 216, + "line": 229, "column": 28 } } @@ -17911,15 +17911,15 @@ "binop": null, "updateContext": null }, - "start": 6969, - "end": 6970, + "start": 7255, + "end": 7256, "loc": { "start": { - "line": 216, + "line": 229, "column": 28 }, "end": { - "line": 216, + "line": 229, "column": 29 } } @@ -17937,15 +17937,15 @@ "binop": null }, "value": "queryObject", - "start": 6977, - "end": 6988, + "start": 7263, + "end": 7274, "loc": { "start": { - "line": 217, + "line": 230, "column": 6 }, "end": { - "line": 217, + "line": 230, "column": 17 } } @@ -17963,15 +17963,15 @@ "binop": null, "updateContext": null }, - "start": 6988, - "end": 6989, + "start": 7274, + "end": 7275, "loc": { "start": { - "line": 217, + "line": 230, "column": 17 }, "end": { - "line": 217, + "line": 230, "column": 18 } } @@ -17989,15 +17989,15 @@ "binop": null }, "value": "key", - "start": 6989, - "end": 6992, + "start": 7275, + "end": 7278, "loc": { "start": { - "line": 217, + "line": 230, "column": 18 }, "end": { - "line": 217, + "line": 230, "column": 21 } } @@ -18015,15 +18015,15 @@ "binop": null, "updateContext": null }, - "start": 6992, - "end": 6993, + "start": 7278, + "end": 7279, "loc": { "start": { - "line": 217, + "line": 230, "column": 21 }, "end": { - "line": 217, + "line": 230, "column": 22 } } @@ -18042,15 +18042,15 @@ "updateContext": null }, "value": "=", - "start": 6994, - "end": 6995, + "start": 7280, + "end": 7281, "loc": { "start": { - "line": 217, + "line": 230, "column": 23 }, "end": { - "line": 217, + "line": 230, "column": 24 } } @@ -18068,15 +18068,15 @@ "binop": null }, "value": "value", - "start": 6996, - "end": 7001, + "start": 7282, + "end": 7287, "loc": { "start": { - "line": 217, + "line": 230, "column": 25 }, "end": { - "line": 217, + "line": 230, "column": 30 } } @@ -18094,15 +18094,15 @@ "binop": null, "updateContext": null }, - "start": 7001, - "end": 7002, + "start": 7287, + "end": 7288, "loc": { "start": { - "line": 217, + "line": 230, "column": 30 }, "end": { - "line": 217, + "line": 230, "column": 31 } } @@ -18119,15 +18119,15 @@ "postfix": false, "binop": null }, - "start": 7007, - "end": 7008, + "start": 7293, + "end": 7294, "loc": { "start": { - "line": 218, + "line": 231, "column": 4 }, "end": { - "line": 218, + "line": 231, "column": 5 } } @@ -18144,15 +18144,15 @@ "postfix": false, "binop": null }, - "start": 7008, - "end": 7009, + "start": 7294, + "end": 7295, "loc": { "start": { - "line": 218, + "line": 231, "column": 5 }, "end": { - "line": 218, + "line": 231, "column": 6 } } @@ -18170,15 +18170,15 @@ "binop": null, "updateContext": null }, - "start": 7009, - "end": 7010, + "start": 7295, + "end": 7296, "loc": { "start": { - "line": 218, + "line": 231, "column": 6 }, "end": { - "line": 218, + "line": 231, "column": 7 } } @@ -18198,15 +18198,15 @@ "updateContext": null }, "value": "return", - "start": 7015, - "end": 7021, + "start": 7301, + "end": 7307, "loc": { "start": { - "line": 219, + "line": 232, "column": 4 }, "end": { - "line": 219, + "line": 232, "column": 10 } } @@ -18224,15 +18224,15 @@ "binop": null }, "value": "queryObject", - "start": 7022, - "end": 7033, + "start": 7308, + "end": 7319, "loc": { "start": { - "line": 219, + "line": 232, "column": 11 }, "end": { - "line": 219, + "line": 232, "column": 22 } } @@ -18250,15 +18250,15 @@ "binop": null, "updateContext": null }, - "start": 7033, - "end": 7034, + "start": 7319, + "end": 7320, "loc": { "start": { - "line": 219, + "line": 232, "column": 22 }, "end": { - "line": 219, + "line": 232, "column": 23 } } @@ -18275,15 +18275,15 @@ "postfix": false, "binop": null }, - "start": 7037, - "end": 7038, + "start": 7323, + "end": 7324, "loc": { "start": { - "line": 220, + "line": 233, "column": 2 }, "end": { - "line": 220, + "line": 233, "column": 3 } } @@ -18301,15 +18301,15 @@ "binop": null, "updateContext": null }, - "start": 7038, - "end": 7039, + "start": 7324, + "end": 7325, "loc": { "start": { - "line": 220, + "line": 233, "column": 3 }, "end": { - "line": 220, + "line": 233, "column": 4 } } @@ -18317,15 +18317,15 @@ { "type": "CommentBlock", "value": " eslint-disable no-param-reassign ", - "start": 7042, - "end": 7080, + "start": 7328, + "end": 7366, "loc": { "start": { - "line": 221, + "line": 234, "column": 2 }, "end": { - "line": 221, + "line": 234, "column": 40 } } @@ -18343,15 +18343,15 @@ "binop": null }, "value": "serialiseToQueryString", - "start": 7083, - "end": 7105, + "start": 7369, + "end": 7391, "loc": { "start": { - "line": 222, + "line": 235, "column": 2 }, "end": { - "line": 222, + "line": 235, "column": 24 } } @@ -18368,15 +18368,15 @@ "postfix": false, "binop": null }, - "start": 7105, - "end": 7106, + "start": 7391, + "end": 7392, "loc": { "start": { - "line": 222, + "line": 235, "column": 24 }, "end": { - "line": 222, + "line": 235, "column": 25 } } @@ -18394,15 +18394,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7106, - "end": 7123, + "start": 7392, + "end": 7409, "loc": { "start": { - "line": 222, + "line": 235, "column": 25 }, "end": { - "line": 222, + "line": 235, "column": 42 } } @@ -18419,15 +18419,15 @@ "postfix": false, "binop": null }, - "start": 7123, - "end": 7124, + "start": 7409, + "end": 7410, "loc": { "start": { - "line": 222, + "line": 235, "column": 42 }, "end": { - "line": 222, + "line": 235, "column": 43 } } @@ -18444,15 +18444,15 @@ "postfix": false, "binop": null }, - "start": 7125, - "end": 7126, + "start": 7411, + "end": 7412, "loc": { "start": { - "line": 222, + "line": 235, "column": 44 }, "end": { - "line": 222, + "line": 235, "column": 45 } } @@ -18470,15 +18470,15 @@ "binop": null }, "value": "Object", - "start": 7131, - "end": 7137, + "start": 7417, + "end": 7423, "loc": { "start": { - "line": 223, + "line": 236, "column": 4 }, "end": { - "line": 223, + "line": 236, "column": 10 } } @@ -18496,15 +18496,15 @@ "binop": null, "updateContext": null }, - "start": 7137, - "end": 7138, + "start": 7423, + "end": 7424, "loc": { "start": { - "line": 223, + "line": 236, "column": 10 }, "end": { - "line": 223, + "line": 236, "column": 11 } } @@ -18522,15 +18522,15 @@ "binop": null }, "value": "keys", - "start": 7138, - "end": 7142, + "start": 7424, + "end": 7428, "loc": { "start": { - "line": 223, + "line": 236, "column": 11 }, "end": { - "line": 223, + "line": 236, "column": 15 } } @@ -18547,15 +18547,15 @@ "postfix": false, "binop": null }, - "start": 7142, - "end": 7143, + "start": 7428, + "end": 7429, "loc": { "start": { - "line": 223, + "line": 236, "column": 15 }, "end": { - "line": 223, + "line": 236, "column": 16 } } @@ -18573,15 +18573,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7143, - "end": 7160, + "start": 7429, + "end": 7446, "loc": { "start": { - "line": 223, + "line": 236, "column": 16 }, "end": { - "line": 223, + "line": 236, "column": 33 } } @@ -18598,15 +18598,15 @@ "postfix": false, "binop": null }, - "start": 7160, - "end": 7161, + "start": 7446, + "end": 7447, "loc": { "start": { - "line": 223, + "line": 236, "column": 33 }, "end": { - "line": 223, + "line": 236, "column": 34 } } @@ -18624,15 +18624,15 @@ "binop": null, "updateContext": null }, - "start": 7161, - "end": 7162, + "start": 7447, + "end": 7448, "loc": { "start": { - "line": 223, + "line": 236, "column": 34 }, "end": { - "line": 223, + "line": 236, "column": 35 } } @@ -18650,15 +18650,15 @@ "binop": null }, "value": "forEach", - "start": 7162, - "end": 7169, + "start": 7448, + "end": 7455, "loc": { "start": { - "line": 223, + "line": 236, "column": 35 }, "end": { - "line": 223, + "line": 236, "column": 42 } } @@ -18675,15 +18675,15 @@ "postfix": false, "binop": null }, - "start": 7169, - "end": 7170, + "start": 7455, + "end": 7456, "loc": { "start": { - "line": 223, + "line": 236, "column": 42 }, "end": { - "line": 223, + "line": 236, "column": 43 } } @@ -18700,15 +18700,15 @@ "postfix": false, "binop": null }, - "start": 7170, - "end": 7171, + "start": 7456, + "end": 7457, "loc": { "start": { - "line": 223, + "line": 236, "column": 43 }, "end": { - "line": 223, + "line": 236, "column": 44 } } @@ -18726,15 +18726,15 @@ "binop": null }, "value": "prop", - "start": 7171, - "end": 7175, + "start": 7457, + "end": 7461, "loc": { "start": { - "line": 223, + "line": 236, "column": 44 }, "end": { - "line": 223, + "line": 236, "column": 48 } } @@ -18751,15 +18751,15 @@ "postfix": false, "binop": null }, - "start": 7175, - "end": 7176, + "start": 7461, + "end": 7462, "loc": { "start": { - "line": 223, + "line": 236, "column": 48 }, "end": { - "line": 223, + "line": 236, "column": 49 } } @@ -18777,15 +18777,15 @@ "binop": null, "updateContext": null }, - "start": 7177, - "end": 7179, + "start": 7463, + "end": 7465, "loc": { "start": { - "line": 223, + "line": 236, "column": 50 }, "end": { - "line": 223, + "line": 236, "column": 52 } } @@ -18802,15 +18802,15 @@ "postfix": false, "binop": null }, - "start": 7180, - "end": 7181, + "start": 7466, + "end": 7467, "loc": { "start": { - "line": 223, + "line": 236, "column": 53 }, "end": { - "line": 223, + "line": 236, "column": 54 } } @@ -18830,15 +18830,15 @@ "updateContext": null }, "value": "if", - "start": 7188, - "end": 7190, + "start": 7474, + "end": 7476, "loc": { "start": { - "line": 224, + "line": 237, "column": 6 }, "end": { - "line": 224, + "line": 237, "column": 8 } } @@ -18855,15 +18855,15 @@ "postfix": false, "binop": null }, - "start": 7191, - "end": 7192, + "start": 7477, + "end": 7478, "loc": { "start": { - "line": 224, + "line": 237, "column": 9 }, "end": { - "line": 224, + "line": 237, "column": 10 } } @@ -18881,15 +18881,15 @@ "binop": null }, "value": "Array", - "start": 7192, - "end": 7197, + "start": 7478, + "end": 7483, "loc": { "start": { - "line": 224, + "line": 237, "column": 10 }, "end": { - "line": 224, + "line": 237, "column": 15 } } @@ -18907,15 +18907,15 @@ "binop": null, "updateContext": null }, - "start": 7197, - "end": 7198, + "start": 7483, + "end": 7484, "loc": { "start": { - "line": 224, + "line": 237, "column": 15 }, "end": { - "line": 224, + "line": 237, "column": 16 } } @@ -18933,15 +18933,15 @@ "binop": null }, "value": "isArray", - "start": 7198, - "end": 7205, + "start": 7484, + "end": 7491, "loc": { "start": { - "line": 224, + "line": 237, "column": 16 }, "end": { - "line": 224, + "line": 237, "column": 23 } } @@ -18958,15 +18958,15 @@ "postfix": false, "binop": null }, - "start": 7205, - "end": 7206, + "start": 7491, + "end": 7492, "loc": { "start": { - "line": 224, + "line": 237, "column": 23 }, "end": { - "line": 224, + "line": 237, "column": 24 } } @@ -18984,15 +18984,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7206, - "end": 7223, + "start": 7492, + "end": 7509, "loc": { "start": { - "line": 224, + "line": 237, "column": 24 }, "end": { - "line": 224, + "line": 237, "column": 41 } } @@ -19010,15 +19010,15 @@ "binop": null, "updateContext": null }, - "start": 7223, - "end": 7224, + "start": 7509, + "end": 7510, "loc": { "start": { - "line": 224, + "line": 237, "column": 41 }, "end": { - "line": 224, + "line": 237, "column": 42 } } @@ -19036,15 +19036,15 @@ "binop": null }, "value": "prop", - "start": 7224, - "end": 7228, + "start": 7510, + "end": 7514, "loc": { "start": { - "line": 224, + "line": 237, "column": 42 }, "end": { - "line": 224, + "line": 237, "column": 46 } } @@ -19062,15 +19062,15 @@ "binop": null, "updateContext": null }, - "start": 7228, - "end": 7229, + "start": 7514, + "end": 7515, "loc": { "start": { - "line": 224, + "line": 237, "column": 46 }, "end": { - "line": 224, + "line": 237, "column": 47 } } @@ -19087,15 +19087,15 @@ "postfix": false, "binop": null }, - "start": 7229, - "end": 7230, + "start": 7515, + "end": 7516, "loc": { "start": { - "line": 224, + "line": 237, "column": 47 }, "end": { - "line": 224, + "line": 237, "column": 48 } } @@ -19114,15 +19114,15 @@ "updateContext": null }, "value": "&&", - "start": 7231, - "end": 7233, + "start": 7517, + "end": 7519, "loc": { "start": { - "line": 224, + "line": 237, "column": 49 }, "end": { - "line": 224, + "line": 237, "column": 51 } } @@ -19140,15 +19140,15 @@ "binop": null }, "value": "hasObjectInArray", - "start": 7234, - "end": 7250, + "start": 7520, + "end": 7536, "loc": { "start": { - "line": 224, + "line": 237, "column": 52 }, "end": { - "line": 224, + "line": 237, "column": 68 } } @@ -19165,15 +19165,15 @@ "postfix": false, "binop": null }, - "start": 7250, - "end": 7251, + "start": 7536, + "end": 7537, "loc": { "start": { - "line": 224, + "line": 237, "column": 68 }, "end": { - "line": 224, + "line": 237, "column": 69 } } @@ -19191,15 +19191,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7251, - "end": 7268, + "start": 7537, + "end": 7554, "loc": { "start": { - "line": 224, + "line": 237, "column": 69 }, "end": { - "line": 224, + "line": 237, "column": 86 } } @@ -19217,15 +19217,15 @@ "binop": null, "updateContext": null }, - "start": 7268, - "end": 7269, + "start": 7554, + "end": 7555, "loc": { "start": { - "line": 224, + "line": 237, "column": 86 }, "end": { - "line": 224, + "line": 237, "column": 87 } } @@ -19243,15 +19243,15 @@ "binop": null }, "value": "prop", - "start": 7269, - "end": 7273, + "start": 7555, + "end": 7559, "loc": { "start": { - "line": 224, + "line": 237, "column": 87 }, "end": { - "line": 224, + "line": 237, "column": 91 } } @@ -19269,15 +19269,15 @@ "binop": null, "updateContext": null }, - "start": 7273, - "end": 7274, + "start": 7559, + "end": 7560, "loc": { "start": { - "line": 224, + "line": 237, "column": 91 }, "end": { - "line": 224, + "line": 237, "column": 92 } } @@ -19294,15 +19294,15 @@ "postfix": false, "binop": null }, - "start": 7274, - "end": 7275, + "start": 7560, + "end": 7561, "loc": { "start": { - "line": 224, + "line": 237, "column": 92 }, "end": { - "line": 224, + "line": 237, "column": 93 } } @@ -19319,15 +19319,15 @@ "postfix": false, "binop": null }, - "start": 7275, - "end": 7276, + "start": 7561, + "end": 7562, "loc": { "start": { - "line": 224, + "line": 237, "column": 93 }, "end": { - "line": 224, + "line": 237, "column": 94 } } @@ -19344,15 +19344,15 @@ "postfix": false, "binop": null }, - "start": 7277, - "end": 7278, + "start": 7563, + "end": 7564, "loc": { "start": { - "line": 224, + "line": 237, "column": 95 }, "end": { - "line": 224, + "line": 237, "column": 96 } } @@ -19372,15 +19372,15 @@ "updateContext": null }, "value": "for", - "start": 7287, - "end": 7290, + "start": 7573, + "end": 7576, "loc": { "start": { - "line": 225, + "line": 238, "column": 8 }, "end": { - "line": 225, + "line": 238, "column": 11 } } @@ -19397,15 +19397,15 @@ "postfix": false, "binop": null }, - "start": 7291, - "end": 7292, + "start": 7577, + "end": 7578, "loc": { "start": { - "line": 225, + "line": 238, "column": 12 }, "end": { - "line": 225, + "line": 238, "column": 13 } } @@ -19425,15 +19425,15 @@ "updateContext": null }, "value": "let", - "start": 7292, - "end": 7295, + "start": 7578, + "end": 7581, "loc": { "start": { - "line": 225, + "line": 238, "column": 13 }, "end": { - "line": 225, + "line": 238, "column": 16 } } @@ -19451,15 +19451,15 @@ "binop": null }, "value": "i", - "start": 7296, - "end": 7297, + "start": 7582, + "end": 7583, "loc": { "start": { - "line": 225, + "line": 238, "column": 17 }, "end": { - "line": 225, + "line": 238, "column": 18 } } @@ -19478,15 +19478,15 @@ "updateContext": null }, "value": "=", - "start": 7298, - "end": 7299, + "start": 7584, + "end": 7585, "loc": { "start": { - "line": 225, + "line": 238, "column": 19 }, "end": { - "line": 225, + "line": 238, "column": 20 } } @@ -19505,15 +19505,15 @@ "updateContext": null }, "value": 0, - "start": 7300, - "end": 7301, + "start": 7586, + "end": 7587, "loc": { "start": { - "line": 225, + "line": 238, "column": 21 }, "end": { - "line": 225, + "line": 238, "column": 22 } } @@ -19531,15 +19531,15 @@ "binop": null, "updateContext": null }, - "start": 7301, - "end": 7302, + "start": 7587, + "end": 7588, "loc": { "start": { - "line": 225, + "line": 238, "column": 22 }, "end": { - "line": 225, + "line": 238, "column": 23 } } @@ -19557,15 +19557,15 @@ "binop": null }, "value": "i", - "start": 7303, - "end": 7304, + "start": 7589, + "end": 7590, "loc": { "start": { - "line": 225, + "line": 238, "column": 24 }, "end": { - "line": 225, + "line": 238, "column": 25 } } @@ -19584,15 +19584,15 @@ "updateContext": null }, "value": "<", - "start": 7305, - "end": 7306, + "start": 7591, + "end": 7592, "loc": { "start": { - "line": 225, + "line": 238, "column": 26 }, "end": { - "line": 225, + "line": 238, "column": 27 } } @@ -19610,15 +19610,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7307, - "end": 7324, + "start": 7593, + "end": 7610, "loc": { "start": { - "line": 225, + "line": 238, "column": 28 }, "end": { - "line": 225, + "line": 238, "column": 45 } } @@ -19636,15 +19636,15 @@ "binop": null, "updateContext": null }, - "start": 7324, - "end": 7325, + "start": 7610, + "end": 7611, "loc": { "start": { - "line": 225, + "line": 238, "column": 45 }, "end": { - "line": 225, + "line": 238, "column": 46 } } @@ -19662,15 +19662,15 @@ "binop": null }, "value": "prop", - "start": 7325, - "end": 7329, + "start": 7611, + "end": 7615, "loc": { "start": { - "line": 225, + "line": 238, "column": 46 }, "end": { - "line": 225, + "line": 238, "column": 50 } } @@ -19688,15 +19688,15 @@ "binop": null, "updateContext": null }, - "start": 7329, - "end": 7330, + "start": 7615, + "end": 7616, "loc": { "start": { - "line": 225, + "line": 238, "column": 50 }, "end": { - "line": 225, + "line": 238, "column": 51 } } @@ -19714,15 +19714,15 @@ "binop": null, "updateContext": null }, - "start": 7330, - "end": 7331, + "start": 7616, + "end": 7617, "loc": { "start": { - "line": 225, + "line": 238, "column": 51 }, "end": { - "line": 225, + "line": 238, "column": 52 } } @@ -19740,15 +19740,15 @@ "binop": null }, "value": "length", - "start": 7331, - "end": 7337, + "start": 7617, + "end": 7623, "loc": { "start": { - "line": 225, + "line": 238, "column": 52 }, "end": { - "line": 225, + "line": 238, "column": 58 } } @@ -19766,15 +19766,15 @@ "binop": null, "updateContext": null }, - "start": 7337, - "end": 7338, + "start": 7623, + "end": 7624, "loc": { "start": { - "line": 225, + "line": 238, "column": 58 }, "end": { - "line": 225, + "line": 238, "column": 59 } } @@ -19792,15 +19792,15 @@ "binop": null }, "value": "i", - "start": 7339, - "end": 7340, + "start": 7625, + "end": 7626, "loc": { "start": { - "line": 225, + "line": 238, "column": 60 }, "end": { - "line": 225, + "line": 238, "column": 61 } } @@ -19819,15 +19819,15 @@ "updateContext": null }, "value": "+=", - "start": 7341, - "end": 7343, + "start": 7627, + "end": 7629, "loc": { "start": { - "line": 225, + "line": 238, "column": 62 }, "end": { - "line": 225, + "line": 238, "column": 64 } } @@ -19846,15 +19846,15 @@ "updateContext": null }, "value": 1, - "start": 7344, - "end": 7345, + "start": 7630, + "end": 7631, "loc": { "start": { - "line": 225, + "line": 238, "column": 65 }, "end": { - "line": 225, + "line": 238, "column": 66 } } @@ -19871,15 +19871,15 @@ "postfix": false, "binop": null }, - "start": 7345, - "end": 7346, + "start": 7631, + "end": 7632, "loc": { "start": { - "line": 225, + "line": 238, "column": 66 }, "end": { - "line": 225, + "line": 238, "column": 67 } } @@ -19896,15 +19896,15 @@ "postfix": false, "binop": null }, - "start": 7347, - "end": 7348, + "start": 7633, + "end": 7634, "loc": { "start": { - "line": 225, + "line": 238, "column": 68 }, "end": { - "line": 225, + "line": 238, "column": 69 } } @@ -19922,15 +19922,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7359, - "end": 7376, + "start": 7645, + "end": 7662, "loc": { "start": { - "line": 226, + "line": 239, "column": 10 }, "end": { - "line": 226, + "line": 239, "column": 27 } } @@ -19948,15 +19948,15 @@ "binop": null, "updateContext": null }, - "start": 7376, - "end": 7377, + "start": 7662, + "end": 7663, "loc": { "start": { - "line": 226, + "line": 239, "column": 27 }, "end": { - "line": 226, + "line": 239, "column": 28 } } @@ -19974,15 +19974,15 @@ "binop": null }, "value": "prop", - "start": 7377, - "end": 7381, + "start": 7663, + "end": 7667, "loc": { "start": { - "line": 226, + "line": 239, "column": 28 }, "end": { - "line": 226, + "line": 239, "column": 32 } } @@ -20000,15 +20000,15 @@ "binop": null, "updateContext": null }, - "start": 7381, - "end": 7382, + "start": 7667, + "end": 7668, "loc": { "start": { - "line": 226, + "line": 239, "column": 32 }, "end": { - "line": 226, + "line": 239, "column": 33 } } @@ -20026,15 +20026,15 @@ "binop": null, "updateContext": null }, - "start": 7382, - "end": 7383, + "start": 7668, + "end": 7669, "loc": { "start": { - "line": 226, + "line": 239, "column": 33 }, "end": { - "line": 226, + "line": 239, "column": 34 } } @@ -20052,15 +20052,15 @@ "binop": null }, "value": "i", - "start": 7383, - "end": 7384, + "start": 7669, + "end": 7670, "loc": { "start": { - "line": 226, + "line": 239, "column": 34 }, "end": { - "line": 226, + "line": 239, "column": 35 } } @@ -20078,15 +20078,15 @@ "binop": null, "updateContext": null }, - "start": 7384, - "end": 7385, + "start": 7670, + "end": 7671, "loc": { "start": { - "line": 226, + "line": 239, "column": 35 }, "end": { - "line": 226, + "line": 239, "column": 36 } } @@ -20105,15 +20105,15 @@ "updateContext": null }, "value": "=", - "start": 7386, - "end": 7387, + "start": 7672, + "end": 7673, "loc": { "start": { - "line": 226, + "line": 239, "column": 37 }, "end": { - "line": 226, + "line": 239, "column": 38 } } @@ -20131,15 +20131,15 @@ "binop": null }, "value": "JSON", - "start": 7388, - "end": 7392, + "start": 7674, + "end": 7678, "loc": { "start": { - "line": 226, + "line": 239, "column": 39 }, "end": { - "line": 226, + "line": 239, "column": 43 } } @@ -20157,15 +20157,15 @@ "binop": null, "updateContext": null }, - "start": 7392, - "end": 7393, + "start": 7678, + "end": 7679, "loc": { "start": { - "line": 226, + "line": 239, "column": 43 }, "end": { - "line": 226, + "line": 239, "column": 44 } } @@ -20183,15 +20183,15 @@ "binop": null }, "value": "stringify", - "start": 7393, - "end": 7402, + "start": 7679, + "end": 7688, "loc": { "start": { - "line": 226, + "line": 239, "column": 44 }, "end": { - "line": 226, + "line": 239, "column": 53 } } @@ -20208,15 +20208,15 @@ "postfix": false, "binop": null }, - "start": 7402, - "end": 7403, + "start": 7688, + "end": 7689, "loc": { "start": { - "line": 226, + "line": 239, "column": 53 }, "end": { - "line": 226, + "line": 239, "column": 54 } } @@ -20234,15 +20234,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7403, - "end": 7420, + "start": 7689, + "end": 7706, "loc": { "start": { - "line": 226, + "line": 239, "column": 54 }, "end": { - "line": 226, + "line": 239, "column": 71 } } @@ -20260,15 +20260,15 @@ "binop": null, "updateContext": null }, - "start": 7420, - "end": 7421, + "start": 7706, + "end": 7707, "loc": { "start": { - "line": 226, + "line": 239, "column": 71 }, "end": { - "line": 226, + "line": 239, "column": 72 } } @@ -20286,15 +20286,15 @@ "binop": null }, "value": "prop", - "start": 7421, - "end": 7425, + "start": 7707, + "end": 7711, "loc": { "start": { - "line": 226, + "line": 239, "column": 72 }, "end": { - "line": 226, + "line": 239, "column": 76 } } @@ -20312,15 +20312,15 @@ "binop": null, "updateContext": null }, - "start": 7425, - "end": 7426, + "start": 7711, + "end": 7712, "loc": { "start": { - "line": 226, + "line": 239, "column": 76 }, "end": { - "line": 226, + "line": 239, "column": 77 } } @@ -20338,15 +20338,15 @@ "binop": null, "updateContext": null }, - "start": 7426, - "end": 7427, + "start": 7712, + "end": 7713, "loc": { "start": { - "line": 226, + "line": 239, "column": 77 }, "end": { - "line": 226, + "line": 239, "column": 78 } } @@ -20364,15 +20364,15 @@ "binop": null }, "value": "i", - "start": 7427, - "end": 7428, + "start": 7713, + "end": 7714, "loc": { "start": { - "line": 226, + "line": 239, "column": 78 }, "end": { - "line": 226, + "line": 239, "column": 79 } } @@ -20390,15 +20390,15 @@ "binop": null, "updateContext": null }, - "start": 7428, - "end": 7429, + "start": 7714, + "end": 7715, "loc": { "start": { - "line": 226, + "line": 239, "column": 79 }, "end": { - "line": 226, + "line": 239, "column": 80 } } @@ -20415,15 +20415,15 @@ "postfix": false, "binop": null }, - "start": 7429, - "end": 7430, + "start": 7715, + "end": 7716, "loc": { "start": { - "line": 226, + "line": 239, "column": 80 }, "end": { - "line": 226, + "line": 239, "column": 81 } } @@ -20441,15 +20441,15 @@ "binop": null, "updateContext": null }, - "start": 7430, - "end": 7431, + "start": 7716, + "end": 7717, "loc": { "start": { - "line": 226, + "line": 239, "column": 81 }, "end": { - "line": 226, + "line": 239, "column": 82 } } @@ -20466,15 +20466,15 @@ "postfix": false, "binop": null }, - "start": 7440, - "end": 7441, + "start": 7726, + "end": 7727, "loc": { "start": { - "line": 227, + "line": 240, "column": 8 }, "end": { - "line": 227, + "line": 240, "column": 9 } } @@ -20491,15 +20491,15 @@ "postfix": false, "binop": null }, - "start": 7448, - "end": 7449, + "start": 7734, + "end": 7735, "loc": { "start": { - "line": 228, + "line": 241, "column": 6 }, "end": { - "line": 228, + "line": 241, "column": 7 } } @@ -20519,15 +20519,15 @@ "updateContext": null }, "value": "else", - "start": 7450, - "end": 7454, + "start": 7736, + "end": 7740, "loc": { "start": { - "line": 228, + "line": 241, "column": 8 }, "end": { - "line": 228, + "line": 241, "column": 12 } } @@ -20547,15 +20547,15 @@ "updateContext": null }, "value": "if", - "start": 7455, - "end": 7457, + "start": 7741, + "end": 7743, "loc": { "start": { - "line": 228, + "line": 241, "column": 13 }, "end": { - "line": 228, + "line": 241, "column": 15 } } @@ -20572,15 +20572,15 @@ "postfix": false, "binop": null }, - "start": 7458, - "end": 7459, + "start": 7744, + "end": 7745, "loc": { "start": { - "line": 228, + "line": 241, "column": 16 }, "end": { - "line": 228, + "line": 241, "column": 17 } } @@ -20600,15 +20600,15 @@ "updateContext": null }, "value": "typeof", - "start": 7459, - "end": 7465, + "start": 7745, + "end": 7751, "loc": { "start": { - "line": 228, + "line": 241, "column": 17 }, "end": { - "line": 228, + "line": 241, "column": 23 } } @@ -20626,15 +20626,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7466, - "end": 7483, + "start": 7752, + "end": 7769, "loc": { "start": { - "line": 228, + "line": 241, "column": 24 }, "end": { - "line": 228, + "line": 241, "column": 41 } } @@ -20652,15 +20652,15 @@ "binop": null, "updateContext": null }, - "start": 7483, - "end": 7484, + "start": 7769, + "end": 7770, "loc": { "start": { - "line": 228, + "line": 241, "column": 41 }, "end": { - "line": 228, + "line": 241, "column": 42 } } @@ -20678,15 +20678,15 @@ "binop": null }, "value": "prop", - "start": 7484, - "end": 7488, + "start": 7770, + "end": 7774, "loc": { "start": { - "line": 228, + "line": 241, "column": 42 }, "end": { - "line": 228, + "line": 241, "column": 46 } } @@ -20704,15 +20704,15 @@ "binop": null, "updateContext": null }, - "start": 7488, - "end": 7489, + "start": 7774, + "end": 7775, "loc": { "start": { - "line": 228, + "line": 241, "column": 46 }, "end": { - "line": 228, + "line": 241, "column": 47 } } @@ -20731,15 +20731,15 @@ "updateContext": null }, "value": "===", - "start": 7490, - "end": 7493, + "start": 7776, + "end": 7779, "loc": { "start": { - "line": 228, + "line": 241, "column": 48 }, "end": { - "line": 228, + "line": 241, "column": 51 } } @@ -20758,15 +20758,15 @@ "updateContext": null }, "value": "object", - "start": 7494, - "end": 7502, + "start": 7780, + "end": 7788, "loc": { "start": { - "line": 228, + "line": 241, "column": 52 }, "end": { - "line": 228, + "line": 241, "column": 60 } } @@ -20783,15 +20783,15 @@ "postfix": false, "binop": null }, - "start": 7502, - "end": 7503, + "start": 7788, + "end": 7789, "loc": { "start": { - "line": 228, + "line": 241, "column": 60 }, "end": { - "line": 228, + "line": 241, "column": 61 } } @@ -20808,15 +20808,15 @@ "postfix": false, "binop": null }, - "start": 7504, - "end": 7505, + "start": 7790, + "end": 7791, "loc": { "start": { - "line": 228, + "line": 241, "column": 62 }, "end": { - "line": 228, + "line": 241, "column": 63 } } @@ -20834,15 +20834,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7514, - "end": 7531, + "start": 7800, + "end": 7817, "loc": { "start": { - "line": 229, + "line": 242, "column": 8 }, "end": { - "line": 229, + "line": 242, "column": 25 } } @@ -20860,15 +20860,15 @@ "binop": null, "updateContext": null }, - "start": 7531, - "end": 7532, + "start": 7817, + "end": 7818, "loc": { "start": { - "line": 229, + "line": 242, "column": 25 }, "end": { - "line": 229, + "line": 242, "column": 26 } } @@ -20886,15 +20886,15 @@ "binop": null }, "value": "prop", - "start": 7532, - "end": 7536, + "start": 7818, + "end": 7822, "loc": { "start": { - "line": 229, + "line": 242, "column": 26 }, "end": { - "line": 229, + "line": 242, "column": 30 } } @@ -20912,15 +20912,15 @@ "binop": null, "updateContext": null }, - "start": 7536, - "end": 7537, + "start": 7822, + "end": 7823, "loc": { "start": { - "line": 229, + "line": 242, "column": 30 }, "end": { - "line": 229, + "line": 242, "column": 31 } } @@ -20939,15 +20939,15 @@ "updateContext": null }, "value": "=", - "start": 7538, - "end": 7539, + "start": 7824, + "end": 7825, "loc": { "start": { - "line": 229, + "line": 242, "column": 32 }, "end": { - "line": 229, + "line": 242, "column": 33 } } @@ -20965,15 +20965,15 @@ "binop": null }, "value": "JSON", - "start": 7540, - "end": 7544, + "start": 7826, + "end": 7830, "loc": { "start": { - "line": 229, + "line": 242, "column": 34 }, "end": { - "line": 229, + "line": 242, "column": 38 } } @@ -20991,15 +20991,15 @@ "binop": null, "updateContext": null }, - "start": 7544, - "end": 7545, + "start": 7830, + "end": 7831, "loc": { "start": { - "line": 229, + "line": 242, "column": 38 }, "end": { - "line": 229, + "line": 242, "column": 39 } } @@ -21017,15 +21017,15 @@ "binop": null }, "value": "stringify", - "start": 7545, - "end": 7554, + "start": 7831, + "end": 7840, "loc": { "start": { - "line": 229, + "line": 242, "column": 39 }, "end": { - "line": 229, + "line": 242, "column": 48 } } @@ -21042,15 +21042,15 @@ "postfix": false, "binop": null }, - "start": 7554, - "end": 7555, + "start": 7840, + "end": 7841, "loc": { "start": { - "line": 229, + "line": 242, "column": 48 }, "end": { - "line": 229, + "line": 242, "column": 49 } } @@ -21068,15 +21068,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7555, - "end": 7572, + "start": 7841, + "end": 7858, "loc": { "start": { - "line": 229, + "line": 242, "column": 49 }, "end": { - "line": 229, + "line": 242, "column": 66 } } @@ -21094,15 +21094,15 @@ "binop": null, "updateContext": null }, - "start": 7572, - "end": 7573, + "start": 7858, + "end": 7859, "loc": { "start": { - "line": 229, + "line": 242, "column": 66 }, "end": { - "line": 229, + "line": 242, "column": 67 } } @@ -21120,15 +21120,15 @@ "binop": null }, "value": "prop", - "start": 7573, - "end": 7577, + "start": 7859, + "end": 7863, "loc": { "start": { - "line": 229, + "line": 242, "column": 67 }, "end": { - "line": 229, + "line": 242, "column": 71 } } @@ -21146,15 +21146,15 @@ "binop": null, "updateContext": null }, - "start": 7577, - "end": 7578, + "start": 7863, + "end": 7864, "loc": { "start": { - "line": 229, + "line": 242, "column": 71 }, "end": { - "line": 229, + "line": 242, "column": 72 } } @@ -21171,15 +21171,15 @@ "postfix": false, "binop": null }, - "start": 7578, - "end": 7579, + "start": 7864, + "end": 7865, "loc": { "start": { - "line": 229, + "line": 242, "column": 72 }, "end": { - "line": 229, + "line": 242, "column": 73 } } @@ -21197,15 +21197,15 @@ "binop": null, "updateContext": null }, - "start": 7579, - "end": 7580, + "start": 7865, + "end": 7866, "loc": { "start": { - "line": 229, + "line": 242, "column": 73 }, "end": { - "line": 229, + "line": 242, "column": 74 } } @@ -21222,15 +21222,15 @@ "postfix": false, "binop": null }, - "start": 7587, - "end": 7588, + "start": 7873, + "end": 7874, "loc": { "start": { - "line": 230, + "line": 243, "column": 6 }, "end": { - "line": 230, + "line": 243, "column": 7 } } @@ -21247,15 +21247,15 @@ "postfix": false, "binop": null }, - "start": 7593, - "end": 7594, + "start": 7879, + "end": 7880, "loc": { "start": { - "line": 231, + "line": 244, "column": 4 }, "end": { - "line": 231, + "line": 244, "column": 5 } } @@ -21272,15 +21272,15 @@ "postfix": false, "binop": null }, - "start": 7594, - "end": 7595, + "start": 7880, + "end": 7881, "loc": { "start": { - "line": 231, + "line": 244, "column": 5 }, "end": { - "line": 231, + "line": 244, "column": 6 } } @@ -21298,15 +21298,15 @@ "binop": null, "updateContext": null }, - "start": 7595, - "end": 7596, + "start": 7881, + "end": 7882, "loc": { "start": { - "line": 231, + "line": 244, "column": 6 }, "end": { - "line": 231, + "line": 244, "column": 7 } } @@ -21326,15 +21326,15 @@ "updateContext": null }, "value": "return", - "start": 7601, - "end": 7607, + "start": 7887, + "end": 7893, "loc": { "start": { - "line": 232, + "line": 245, "column": 4 }, "end": { - "line": 232, + "line": 245, "column": 10 } } @@ -21352,15 +21352,15 @@ "binop": null }, "value": "queryString", - "start": 7608, - "end": 7619, + "start": 7894, + "end": 7905, "loc": { "start": { - "line": 232, + "line": 245, "column": 11 }, "end": { - "line": 232, + "line": 245, "column": 22 } } @@ -21378,15 +21378,15 @@ "binop": null, "updateContext": null }, - "start": 7619, - "end": 7620, + "start": 7905, + "end": 7906, "loc": { "start": { - "line": 232, + "line": 245, "column": 22 }, "end": { - "line": 232, + "line": 245, "column": 23 } } @@ -21404,15 +21404,15 @@ "binop": null }, "value": "stringify", - "start": 7620, - "end": 7629, + "start": 7906, + "end": 7915, "loc": { "start": { - "line": 232, + "line": 245, "column": 23 }, "end": { - "line": 232, + "line": 245, "column": 32 } } @@ -21429,15 +21429,15 @@ "postfix": false, "binop": null }, - "start": 7629, - "end": 7630, + "start": 7915, + "end": 7916, "loc": { "start": { - "line": 232, + "line": 245, "column": 32 }, "end": { - "line": 232, + "line": 245, "column": 33 } } @@ -21455,15 +21455,15 @@ "binop": null }, "value": "objectToSerialise", - "start": 7630, - "end": 7647, + "start": 7916, + "end": 7933, "loc": { "start": { - "line": 232, + "line": 245, "column": 33 }, "end": { - "line": 232, + "line": 245, "column": 50 } } @@ -21481,15 +21481,15 @@ "binop": null, "updateContext": null }, - "start": 7647, - "end": 7648, + "start": 7933, + "end": 7934, "loc": { "start": { - "line": 232, + "line": 245, "column": 50 }, "end": { - "line": 232, + "line": 245, "column": 51 } } @@ -21509,15 +21509,15 @@ "updateContext": null }, "value": "this", - "start": 7649, - "end": 7653, + "start": 7935, + "end": 7939, "loc": { "start": { - "line": 232, + "line": 245, "column": 52 }, "end": { - "line": 232, + "line": 245, "column": 56 } } @@ -21535,15 +21535,15 @@ "binop": null, "updateContext": null }, - "start": 7653, - "end": 7654, + "start": 7939, + "end": 7940, "loc": { "start": { - "line": 232, + "line": 245, "column": 56 }, "end": { - "line": 232, + "line": 245, "column": 57 } } @@ -21561,15 +21561,15 @@ "binop": null }, "value": "queryStringOptions", - "start": 7654, - "end": 7672, + "start": 7940, + "end": 7958, "loc": { "start": { - "line": 232, + "line": 245, "column": 57 }, "end": { - "line": 232, + "line": 245, "column": 75 } } @@ -21586,15 +21586,15 @@ "postfix": false, "binop": null }, - "start": 7672, - "end": 7673, + "start": 7958, + "end": 7959, "loc": { "start": { - "line": 232, + "line": 245, "column": 75 }, "end": { - "line": 232, + "line": 245, "column": 76 } } @@ -21612,15 +21612,15 @@ "binop": null, "updateContext": null }, - "start": 7673, - "end": 7674, + "start": 7959, + "end": 7960, "loc": { "start": { - "line": 232, + "line": 245, "column": 76 }, "end": { - "line": 232, + "line": 245, "column": 77 } } @@ -21637,15 +21637,15 @@ "postfix": false, "binop": null }, - "start": 7677, - "end": 7678, + "start": 7963, + "end": 7964, "loc": { "start": { - "line": 233, + "line": 246, "column": 2 }, "end": { - "line": 233, + "line": 246, "column": 3 } } @@ -21663,15 +21663,15 @@ "binop": null, "updateContext": null }, - "start": 7678, - "end": 7679, + "start": 7964, + "end": 7965, "loc": { "start": { - "line": 233, + "line": 246, "column": 3 }, "end": { - "line": 233, + "line": 246, "column": 4 } } @@ -21679,15 +21679,15 @@ { "type": "CommentBlock", "value": " eslint-enable no-param-reassign ", - "start": 7682, - "end": 7719, + "start": 7968, + "end": 8005, "loc": { "start": { - "line": 234, + "line": 247, "column": 2 }, "end": { - "line": 234, + "line": 247, "column": 39 } } @@ -21705,15 +21705,15 @@ "binop": null }, "value": "queryStringOptions", - "start": 7722, - "end": 7740, + "start": 8008, + "end": 8026, "loc": { "start": { - "line": 235, + "line": 248, "column": 2 }, "end": { - "line": 235, + "line": 248, "column": 20 } } @@ -21731,15 +21731,15 @@ "binop": null, "updateContext": null }, - "start": 7740, - "end": 7741, + "start": 8026, + "end": 8027, "loc": { "start": { - "line": 235, + "line": 248, "column": 20 }, "end": { - "line": 235, + "line": 248, "column": 21 } } @@ -21756,15 +21756,15 @@ "postfix": false, "binop": null }, - "start": 7742, - "end": 7743, + "start": 8028, + "end": 8029, "loc": { "start": { - "line": 235, + "line": 248, "column": 22 }, "end": { - "line": 235, + "line": 248, "column": 23 } } @@ -21772,15 +21772,15 @@ { "type": "CommentLine", "value": " By default, uses NPM query", - "start": 7748, - "end": 7777, + "start": 8034, + "end": 8063, "loc": { "start": { - "line": 236, + "line": 249, "column": 4 }, "end": { - "line": 236, + "line": 249, "column": 33 } } @@ -21788,15 +21788,15 @@ { "type": "CommentLine", "value": " string package to serialise", - "start": 7782, - "end": 7812, + "start": 8068, + "end": 8098, "loc": { "start": { - "line": 237, + "line": 250, "column": 4 }, "end": { - "line": 237, + "line": 250, "column": 34 } } @@ -21804,15 +21804,15 @@ { "type": "CommentLine", "value": " to query string. For full list", - "start": 7817, - "end": 7850, + "start": 8103, + "end": 8136, "loc": { "start": { - "line": 238, + "line": 251, "column": 4 }, "end": { - "line": 238, + "line": 251, "column": 37 } } @@ -21820,15 +21820,15 @@ { "type": "CommentLine", "value": " of options, see:", - "start": 7855, - "end": 7874, + "start": 8141, + "end": 8160, "loc": { "start": { - "line": 239, + "line": 252, "column": 4 }, "end": { - "line": 239, + "line": 252, "column": 23 } } @@ -21836,15 +21836,15 @@ { "type": "CommentLine", "value": " https://www.npmjs.com/package/query-string#stringifyobject-options", - "start": 7879, - "end": 7950, + "start": 8165, + "end": 8236, "loc": { "start": { - "line": 240, + "line": 253, "column": 4 }, "end": { - "line": 240, + "line": 253, "column": 75 } } @@ -21852,15 +21852,15 @@ { "type": "CommentLine", "value": " If you specified a query string serialiser,", - "start": 7955, - "end": 8001, + "start": 8241, + "end": 8287, "loc": { "start": { - "line": 241, + "line": 254, "column": 4 }, "end": { - "line": 241, + "line": 254, "column": 50 } } @@ -21868,15 +21868,15 @@ { "type": "CommentLine", "value": " this options can optionally be used.", - "start": 8006, - "end": 8045, + "start": 8292, + "end": 8331, "loc": { "start": { - "line": 242, + "line": 255, "column": 4 }, "end": { - "line": 242, + "line": 255, "column": 43 } } @@ -21894,15 +21894,15 @@ "binop": null }, "value": "arrayFormat", - "start": 8050, - "end": 8061, + "start": 8336, + "end": 8347, "loc": { "start": { - "line": 243, + "line": 256, "column": 4 }, "end": { - "line": 243, + "line": 256, "column": 15 } } @@ -21920,15 +21920,15 @@ "binop": null, "updateContext": null }, - "start": 8061, - "end": 8062, + "start": 8347, + "end": 8348, "loc": { "start": { - "line": 243, + "line": 256, "column": 15 }, "end": { - "line": 243, + "line": 256, "column": 16 } } @@ -21947,15 +21947,15 @@ "updateContext": null }, "value": "bracket", - "start": 8063, - "end": 8072, + "start": 8349, + "end": 8358, "loc": { "start": { - "line": 243, + "line": 256, "column": 17 }, "end": { - "line": 243, + "line": 256, "column": 26 } } @@ -21973,15 +21973,15 @@ "binop": null, "updateContext": null }, - "start": 8072, - "end": 8073, + "start": 8358, + "end": 8359, "loc": { "start": { - "line": 243, + "line": 256, "column": 26 }, "end": { - "line": 243, + "line": 256, "column": 27 } } @@ -21998,15 +21998,15 @@ "postfix": false, "binop": null }, - "start": 8076, - "end": 8077, + "start": 8362, + "end": 8363, "loc": { "start": { - "line": 244, + "line": 257, "column": 2 }, "end": { - "line": 244, + "line": 257, "column": 3 } } @@ -22024,15 +22024,15 @@ "binop": null, "updateContext": null }, - "start": 8077, - "end": 8078, + "start": 8363, + "end": 8364, "loc": { "start": { - "line": 244, + "line": 257, "column": 3 }, "end": { - "line": 244, + "line": 257, "column": 4 } } @@ -22049,15 +22049,15 @@ "postfix": false, "binop": null }, - "start": 8079, - "end": 8080, + "start": 8365, + "end": 8366, "loc": { "start": { - "line": 245, + "line": 258, "column": 0 }, "end": { - "line": 245, + "line": 258, "column": 1 } } @@ -22075,15 +22075,15 @@ "binop": null, "updateContext": null }, - "start": 8080, - "end": 8081, + "start": 8366, + "end": 8367, "loc": { "start": { - "line": 245, + "line": 258, "column": 1 }, "end": { - "line": 245, + "line": 258, "column": 2 } } @@ -22103,15 +22103,15 @@ "updateContext": null }, "value": "export", - "start": 8083, - "end": 8089, + "start": 8369, + "end": 8375, "loc": { "start": { - "line": 247, + "line": 260, "column": 0 }, "end": { - "line": 247, + "line": 260, "column": 6 } } @@ -22131,15 +22131,15 @@ "updateContext": null }, "value": "default", - "start": 8090, - "end": 8097, + "start": 8376, + "end": 8383, "loc": { "start": { - "line": 247, + "line": 260, "column": 7 }, "end": { - "line": 247, + "line": 260, "column": 14 } } @@ -22157,15 +22157,15 @@ "binop": null }, "value": "QueryBuilder", - "start": 8098, - "end": 8110, + "start": 8384, + "end": 8396, "loc": { "start": { - "line": 247, + "line": 260, "column": 15 }, "end": { - "line": 247, + "line": 260, "column": 27 } } @@ -22183,15 +22183,15 @@ "binop": null, "updateContext": null }, - "start": 8110, - "end": 8111, + "start": 8396, + "end": 8397, "loc": { "start": { - "line": 247, + "line": 260, "column": 27 }, "end": { - "line": 247, + "line": 260, "column": 28 } } @@ -22209,15 +22209,15 @@ "binop": null, "updateContext": null }, - "start": 8112, - "end": 8112, + "start": 8398, + "end": 8398, "loc": { "start": { - "line": 248, + "line": 261, "column": 0 }, "end": { - "line": 248, + "line": 261, "column": 0 } } diff --git a/projects/mitch-datasource-documentation/docs/class/js/AjaxDatasource.js~AjaxDatasource.html b/projects/mitch-datasource-documentation/docs/class/js/AjaxDatasource.js~AjaxDatasource.html index 1485dcb..50ffaee 100644 --- a/projects/mitch-datasource-documentation/docs/class/js/AjaxDatasource.js~AjaxDatasource.html +++ b/projects/mitch-datasource-documentation/docs/class/js/AjaxDatasource.js~AjaxDatasource.html @@ -45,13 +45,13 @@
- + public class - | source + | source
@@ -83,7 +83,10 @@

Example:

Basic Usage
-
async function exampleAsyncFunction() {
+      

+import { AjaxDatasource } from 'mitch-datasource';
+
+async function exampleAsyncFunction() {
   let datasource = new AjaxDatasource({
     ajax: 'https://path/to/remote/endpoint'
   });
@@ -94,7 +97,10 @@ 

Example:

Basic Usage with Options Object
-
async function exampleAsyncFunction() {
+      

+import { AjaxDatasource } from 'mitch-datasource';
+
+async function exampleAsyncFunction() {
   let datasource = new AjaxDatasource({
     ajax: {
       // Note pagination/sorting/filtering doesn't
@@ -105,7 +111,8 @@ 

Example:

url: 'https://jsonplaceholder.typicode.com/posts', method: 'get', // ... Other Axios options - // `mapper` is a custom option unique to this library + // `mapper` is a custom option unique to the datasource package, + // it's not actually part of Axios mapper: function(response) { return { data: response.data, @@ -121,7 +128,10 @@

Example:

Basic Usage with Function
-
async function exampleAsyncFunction() {
+      

+import { AjaxDatasource } from 'mitch-datasource';
+
+async function exampleAsyncFunction() {
   let datasource = new AjaxDatasource({
     ajax: async function() {
       return await mockAjaxCall();
@@ -947,7 +957,7 @@ 

- source + source

@@ -1018,7 +1028,7 @@

- source + source

@@ -1069,7 +1079,7 @@

- source + source

@@ -1114,7 +1124,7 @@

- source + source

@@ -1162,7 +1172,7 @@

- source + source

diff --git a/projects/mitch-datasource-documentation/docs/class/js/ArrayDatasource.js~ArrayDatasource.html b/projects/mitch-datasource-documentation/docs/class/js/ArrayDatasource.js~ArrayDatasource.html index e90234a..74b1563 100644 --- a/projects/mitch-datasource-documentation/docs/class/js/ArrayDatasource.js~ArrayDatasource.html +++ b/projects/mitch-datasource-documentation/docs/class/js/ArrayDatasource.js~ArrayDatasource.html @@ -45,13 +45,13 @@
- + public class - | source + | source
@@ -82,7 +82,10 @@

Example:

Basic Usage
-
async function exampleAsyncFunction() {
+      

+import { ArrayDatasource } from 'mitch-datasource';
+
+async function exampleAsyncFunction() {
   let datasource = new ArrayDatasource({
     data: [
       {
@@ -101,6 +104,64 @@ 

Example:

await datasource.update(); console.log(`First page of data: ${JSON.stringify(datasource.data)}`); } +exampleAsyncFunction();
+
+
+
Sorting
+

+import { ArrayDatasource } from 'mitch-datasource';
+
+async function exampleAsyncFunction() {
+  let datasource = new ArrayDatasource({
+    data: [
+      {
+        id: 1,
+        firstName: 'John',
+        lastName: 'Smith'
+      },
+      {
+        id: 2,
+        firstName: 'Mary',
+        lastName: 'Jane'
+      },
+      // ... More
+    ],
+    sort: (data, sortArguments = { 'firstName': 'asc' }) => {
+      return mockSortLogic(data, sortArguments);
+    }
+  });
+  await datasource.sort({ 'lastName': 'asc' });
+  console.log(`First page of sorted data: ${JSON.stringify(datasource.data)}`);
+}
+exampleAsyncFunction();
+
+
+
Filtering
+

+import { ArrayDatasource } from 'mitch-datasource';
+
+async function exampleAsyncFunction() {
+  let datasource = new ArrayDatasource({
+    data: [
+      {
+        id: 1,
+        firstName: 'John',
+        lastName: 'Smith'
+      },
+      {
+        id: 2,
+        firstName: 'Mary',
+        lastName: 'Jane'
+      },
+      // ... More
+    ],
+    search: (data, searchText) => {
+      return mockSearchLogic(data, searchText);
+    }
+  });
+  await datasource.search('John Smith');
+  console.log(`First page of filtered data: ${JSON.stringify(datasource.data)}`);
+}
 exampleAsyncFunction();
@@ -855,7 +916,7 @@

- source + source

@@ -937,7 +998,7 @@

- source + source

@@ -982,7 +1043,7 @@

- source + source

diff --git a/projects/mitch-datasource-documentation/docs/class/js/DatasourceBase.js~DatasourceBase.html b/projects/mitch-datasource-documentation/docs/class/js/DatasourceBase.js~DatasourceBase.html index 21fb2e7..6086d3d 100644 --- a/projects/mitch-datasource-documentation/docs/class/js/DatasourceBase.js~DatasourceBase.html +++ b/projects/mitch-datasource-documentation/docs/class/js/DatasourceBase.js~DatasourceBase.html @@ -833,7 +833,7 @@

Params:

Number
  • optional
  • default: 1
-

The page Number for data pagination.

+

The page number for data pagination.

@@ -841,7 +841,7 @@

Params:

Number
  • optional
  • default: 10
-

The pagination size, i.e. the Number +

The pagination size, i.e. the number of records per page.

@@ -1361,7 +1361,7 @@

-

The pagination size, i.e. the Number +

The pagination size, i.e. the number of records per page.

@@ -1498,7 +1498,7 @@

The total amount of pages. Returns null if total wasn't provided. -A Number representing current page otherwise.

+A number representing current page otherwise.

diff --git a/projects/mitch-datasource-documentation/docs/class/js/QueryBuilder.js~QueryBuilder.html b/projects/mitch-datasource-documentation/docs/class/js/QueryBuilder.js~QueryBuilder.html index 90a29e5..b0ddb21 100644 --- a/projects/mitch-datasource-documentation/docs/class/js/QueryBuilder.js~QueryBuilder.html +++ b/projects/mitch-datasource-documentation/docs/class/js/QueryBuilder.js~QueryBuilder.html @@ -45,13 +45,13 @@
- + public class - | source + | source
@@ -84,7 +84,10 @@

Example:

With AJAX Datasource
-
let datasource = new AjaxDatasource({
+      

+import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';
+
+let datasource = new AjaxDatasource({
   // ...
   queryBuilder: new QueryBuilder({
     // ...
@@ -93,7 +96,10 @@ 

Example:

With Adding to Defaults
-
let datasource = new AjaxDatasource({
+      

+import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';
+
+let datasource = new AjaxDatasource({
   // ...
   queryBuilder: new QueryBuilder({
     // ...
@@ -102,12 +108,14 @@ 

Example:

let queryObject = QueryBuilder.prototype .defaults.serialiseToQueryObject(datasource); // ... Do your additional operations + return queryObject; }, serialiseToQueryString(objectToSerialise) { // Calls the original default serialiser let queryString = QueryBuilder.prototype .defaults.serialiseToQueryString(objectToSerialise); // ... Do your additional operations + return queryString; }, queryStringOptions: { // Keep the default options @@ -120,7 +128,10 @@

Example:

With Extra Parameter for GET/POST Request
-
let datasource = new AjaxDatasource({
+      

+import { AjaxDatasource, QueryBuilder } from 'mitch-datasource';
+
+let datasource = new AjaxDatasource({
   // ...
   queryBuilder: new QueryBuilder({
     serialiseToQueryObject(datasource) {
@@ -358,7 +369,7 @@ 

- source + source

@@ -445,7 +456,7 @@

- source + source

@@ -489,7 +500,7 @@

- source + source

@@ -533,7 +544,7 @@

- source + source

@@ -583,7 +594,7 @@

- source + source

@@ -660,7 +671,7 @@

- source + source

diff --git a/projects/mitch-datasource-documentation/docs/file/js/AjaxDatasource.js.html b/projects/mitch-datasource-documentation/docs/file/js/AjaxDatasource.js.html index da4f827..d17f58f 100644 --- a/projects/mitch-datasource-documentation/docs/file/js/AjaxDatasource.js.html +++ b/projects/mitch-datasource-documentation/docs/file/js/AjaxDatasource.js.html @@ -54,6 +54,9 @@ * data from a remote endpoint. * * @example <caption>Basic Usage</caption> + * + * import { AjaxDatasource } from 'mitch-datasource'; + * * async function exampleAsyncFunction() { * let datasource = new AjaxDatasource({ * ajax: 'https://path/to/remote/endpoint' @@ -64,6 +67,9 @@ * exampleAsyncFunction(); * * @example <caption>Basic Usage with Options Object</caption> + * + * import { AjaxDatasource } from 'mitch-datasource'; + * * async function exampleAsyncFunction() { * let datasource = new AjaxDatasource({ * ajax: { @@ -75,7 +81,8 @@ * url: 'https://jsonplaceholder.typicode.com/posts', * method: 'get', * // ... Other Axios options - * // `mapper` is a custom option unique to this library + * // `mapper` is a custom option unique to the datasource package, + * // it's not actually part of Axios * mapper: function(response) { * return { * data: response.data, @@ -90,6 +97,9 @@ * exampleAsyncFunction(); * * @example <caption>Basic Usage with Function</caption> + * + * import { AjaxDatasource } from 'mitch-datasource'; + * * async function exampleAsyncFunction() { * let datasource = new AjaxDatasource({ * ajax: async function() { diff --git a/projects/mitch-datasource-documentation/docs/file/js/ArrayDatasource.js.html b/projects/mitch-datasource-documentation/docs/file/js/ArrayDatasource.js.html index a0de5c2..735a171 100644 --- a/projects/mitch-datasource-documentation/docs/file/js/ArrayDatasource.js.html +++ b/projects/mitch-datasource-documentation/docs/file/js/ArrayDatasource.js.html @@ -51,6 +51,9 @@ * Datasource to manage an array of data. * * @example <caption>Basic Usage</caption> + * + * import { ArrayDatasource } from 'mitch-datasource'; + * * async function exampleAsyncFunction() { * let datasource = new ArrayDatasource({ * data: [ @@ -71,6 +74,62 @@ * console.log(`First page of data: ${JSON.stringify(datasource.data)}`); * } * exampleAsyncFunction(); + * + * @example <caption>Sorting</caption> + * + * import { ArrayDatasource } from 'mitch-datasource'; + * + * async function exampleAsyncFunction() { + * let datasource = new ArrayDatasource({ + * data: [ + * { + * id: 1, + * firstName: 'John', + * lastName: 'Smith' + * }, + * { + * id: 2, + * firstName: 'Mary', + * lastName: 'Jane' + * }, + * // ... More + * ], + * sort: (data, sortArguments = { 'firstName': 'asc' }) => { + * return mockSortLogic(data, sortArguments); + * } + * }); + * await datasource.sort({ 'lastName': 'asc' }); + * console.log(`First page of sorted data: ${JSON.stringify(datasource.data)}`); + * } + * exampleAsyncFunction(); + * + * @example <caption>Filtering</caption> + * + * import { ArrayDatasource } from 'mitch-datasource'; + * + * async function exampleAsyncFunction() { + * let datasource = new ArrayDatasource({ + * data: [ + * { + * id: 1, + * firstName: 'John', + * lastName: 'Smith' + * }, + * { + * id: 2, + * firstName: 'Mary', + * lastName: 'Jane' + * }, + * // ... More + * ], + * search: (data, searchText) => { + * return mockSearchLogic(data, searchText); + * } + * }); + * await datasource.search('John Smith'); + * console.log(`First page of filtered data: ${JSON.stringify(datasource.data)}`); + * } + * exampleAsyncFunction(); */ class ArrayDatasource extends DatasourceBase { /** diff --git a/projects/mitch-datasource-documentation/docs/file/js/DatasourceBase.js.html b/projects/mitch-datasource-documentation/docs/file/js/DatasourceBase.js.html index a22f8f8..2dbb7a0 100644 --- a/projects/mitch-datasource-documentation/docs/file/js/DatasourceBase.js.html +++ b/projects/mitch-datasource-documentation/docs/file/js/DatasourceBase.js.html @@ -107,9 +107,9 @@ * The pagination offset. It skips the * specified amount of items when querying. * @param {Number} [options.page=1] - * The page Number for data pagination. + * The page number for data pagination. * @param {Number} [options.size=10] - * The pagination size, i.e. the Number + * The pagination size, i.e. the number * of records per page. * @param {String} [options.searchText=null] * The text to search for. Used to filter @@ -147,7 +147,7 @@ this.offset = mergedOptions.offset; /** - * The pagination size, i.e. the Number + * The pagination size, i.e. the number * of records per page. * * @access public @@ -184,7 +184,7 @@ if (mergedOptions.page) { /** - * The page Number for data pagination. + * The page number for data pagination. * * @access public * @type {Number} @@ -264,7 +264,7 @@ } /** - * @param {Number} newPage - The new page to set to. + * @param {Number} newPage - The new page to set to. * @access public * @type {Number} */ @@ -299,7 +299,7 @@ /** * The total amount of pages. * Returns null if total wasn't provided. - * A Number representing current page otherwise. + * A number representing current page otherwise. * @access public * @type {?Number} */ diff --git a/projects/mitch-datasource-documentation/docs/file/js/QueryBuilder.js.html b/projects/mitch-datasource-documentation/docs/file/js/QueryBuilder.js.html index cddb9df..7b3f501 100644 --- a/projects/mitch-datasource-documentation/docs/file/js/QueryBuilder.js.html +++ b/projects/mitch-datasource-documentation/docs/file/js/QueryBuilder.js.html @@ -62,13 +62,20 @@ * or the query string for AJAX get requests * * @example <caption>With AJAX Datasource</caption> + * + * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource'; + * * let datasource = new AjaxDatasource({ * // ... * queryBuilder: new QueryBuilder({ * // ... * }) * }); + * * @example <caption>With Adding to Defaults</caption> + * + * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource'; + * * let datasource = new AjaxDatasource({ * // ... * queryBuilder: new QueryBuilder({ @@ -78,12 +85,14 @@ * let queryObject = QueryBuilder.prototype * .defaults.serialiseToQueryObject(datasource); * // ... Do your additional operations + * return queryObject; * }, * serialiseToQueryString(objectToSerialise) { * // Calls the original default serialiser * let queryString = QueryBuilder.prototype * .defaults.serialiseToQueryString(objectToSerialise); * // ... Do your additional operations + * return queryString; * }, * queryStringOptions: { * // Keep the default options @@ -93,7 +102,11 @@ * } * }) * }); + * * @example <caption>With Extra Parameter for GET/POST Request</caption> + * + * import { AjaxDatasource, QueryBuilder } from 'mitch-datasource'; + * * let datasource = new AjaxDatasource({ * // ... * queryBuilder: new QueryBuilder({ diff --git a/projects/mitch-datasource-documentation/docs/index.html b/projects/mitch-datasource-documentation/docs/index.html index f0a9acc..e03d674 100644 --- a/projects/mitch-datasource-documentation/docs/index.html +++ b/projects/mitch-datasource-documentation/docs/index.html @@ -43,6 +43,14 @@
  • Basic Usage
  • Array
  • Ajax
  • +
  • Minimal Configuration:
  • +
  • With Mapper
  • +
  • QueryBuilder
  • +
  • Adjust Parameters to Send
  • +
  • Full Options
  • +
  • With Components
  • +
  • Vue Example
  • +
  • React Example
  • Advanced Usage
  • Sorting
  • Multi-Column Sorting
  • @@ -164,7 +172,240 @@

    License

    MIT © Michael Tran

    -

    Usage

    Basic Usage

    Array

    Ajax

    Advanced Usage

    Sorting

    Multi-Column Sorting

    Filtering

    Multi-Column Filtering

    Events

    Making your own Custom Datasource

    Modifying the Defaults

    Additional Information

    For more information on the usage: