@finnair/path
Advanced tools
Comparing version 0.6.2 to 0.7.0
@@ -6,2 +6,10 @@ # Change Log | ||
# [0.7.0](https://github.com/finnair/v-validation/compare/v0.6.2...v0.7.0) (2020-08-26) | ||
**Note:** Version bump only for package @finnair/path | ||
## [0.6.2](https://github.com/finnair/v-validation/compare/v0.6.1...v0.6.2) (2020-05-22) | ||
@@ -8,0 +16,0 @@ |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Path_1 = require("./Path"); | ||
exports.Path = Path_1.Path; | ||
__export(require("./PathMatcher")); | ||
__export(require("./matchers")); | ||
__export(require("./Projection")); | ||
Object.defineProperty(exports, "Path", { enumerable: true, get: function () { return Path_1.Path; } }); | ||
__exportStar(require("./PathMatcher"), exports); | ||
__exportStar(require("./matchers"), exports); | ||
__exportStar(require("./Projection"), exports); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AnyProperty = exports.AnyIndex = exports.UnionMatcher = exports.PropertyMatcher = exports.IndexMatcher = exports.Node = exports.isPathExpression = void 0; | ||
const Path_1 = require("./Path"); | ||
@@ -4,0 +5,0 @@ function isPathExpression(component) { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Path = void 0; | ||
const identifierPattern = /^[a-zA-Z_][a-zA-Z0-9_]*$/; | ||
@@ -4,0 +5,0 @@ class Path { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.UnionMatcher = exports.Node = exports.IndexMatcher = exports.PropertyMatcher = exports.AnyProperty = exports.AnyIndex = exports.PathMatcher = void 0; | ||
const Path_1 = require("./Path"); | ||
const matchers_1 = require("./matchers"); | ||
exports.Node = matchers_1.Node; | ||
exports.PropertyMatcher = matchers_1.PropertyMatcher; | ||
exports.IndexMatcher = matchers_1.IndexMatcher; | ||
exports.AnyIndex = matchers_1.AnyIndex; | ||
exports.AnyProperty = matchers_1.AnyProperty; | ||
exports.UnionMatcher = matchers_1.UnionMatcher; | ||
Object.defineProperty(exports, "Node", { enumerable: true, get: function () { return matchers_1.Node; } }); | ||
Object.defineProperty(exports, "PropertyMatcher", { enumerable: true, get: function () { return matchers_1.PropertyMatcher; } }); | ||
Object.defineProperty(exports, "IndexMatcher", { enumerable: true, get: function () { return matchers_1.IndexMatcher; } }); | ||
Object.defineProperty(exports, "AnyIndex", { enumerable: true, get: function () { return matchers_1.AnyIndex; } }); | ||
Object.defineProperty(exports, "AnyProperty", { enumerable: true, get: function () { return matchers_1.AnyProperty; } }); | ||
Object.defineProperty(exports, "UnionMatcher", { enumerable: true, get: function () { return matchers_1.UnionMatcher; } }); | ||
class PathMatcher { | ||
@@ -12,0 +13,0 @@ constructor(expressions) { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.projection = exports.Projection = void 0; | ||
const PathMatcher_1 = require("./PathMatcher"); | ||
@@ -4,0 +5,0 @@ class Projection { |
{ | ||
"name": "@finnair/path", | ||
"version": "0.6.2", | ||
"version": "0.7.0", | ||
"private": false, | ||
@@ -25,3 +25,3 @@ "description": "Simple object path as array of strings and numbers", | ||
}, | ||
"gitHead": "5d7d3ef518cd93ebb7ec0f28e084a8104a0f773b" | ||
"gitHead": "fb72cb84d63f59b6e7374f40852fb8ad212b0b53" | ||
} |
36912
623