exupery-core-data 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ export { get_location_info, location_to_string, Source_Location, } from "exupery-core-internals";
2
+ export { array_literal as a, //this function is heavily used, to not clutter the code, it is abbreviated to just 'a'
3
+ dictionary_literal as d, //this function is heavily used, to not clutter the code, it is abbreviated to just 'd'
4
+ set, not_set, } from "exupery-core-internals";
package/dist/index.js ADDED
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.not_set = exports.set = exports.d = exports.a = exports.location_to_string = exports.get_location_info = void 0;
4
+ var exupery_core_internals_1 = require("exupery-core-internals");
5
+ Object.defineProperty(exports, "get_location_info", { enumerable: true, get: function () { return exupery_core_internals_1.get_location_info; } });
6
+ Object.defineProperty(exports, "location_to_string", { enumerable: true, get: function () { return exupery_core_internals_1.location_to_string; } });
7
+ var exupery_core_internals_2 = require("exupery-core-internals");
8
+ Object.defineProperty(exports, "a", { enumerable: true, get: function () { return exupery_core_internals_2.array_literal; } });
9
+ Object.defineProperty(exports, "d", { enumerable: true, get: function () { return exupery_core_internals_2.dictionary_literal; } });
10
+ Object.defineProperty(exports, "set", { enumerable: true, get: function () { return exupery_core_internals_2.set; } });
11
+ Object.defineProperty(exports, "not_set", { enumerable: true, get: function () { return exupery_core_internals_2.not_set; } });
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "exupery-core-data",
3
+ "version": "0.1.0",
4
+ "license": "ISC",
5
+ "description": "the Exupery package used for building datasets",
6
+ "author": "Corno",
7
+ "keywords": [
8
+ "exupery",
9
+ "dataset",
10
+ "data"
11
+ ],
12
+ "homepage": "https://github.com/corno/exupery-core#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/corno/exupery-core/issues"
15
+ },
16
+ "main": "./dist/index.js",
17
+ "types": "dist/index.d.ts",
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "devDependencies": {
22
+ "@types/node": "^18.15.3"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/corno/exupery-core.git"
27
+ },
28
+ "dependencies": {
29
+ "exupery-core-internals": "^0.1.2"
30
+ }
31
+ }