@abaplint/runtime 1.7.4 → 1.7.5

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.
@@ -12,5 +12,6 @@ export * from "./initial";
12
12
  export * from "./le";
13
13
  export * from "./lt";
14
14
  export * from "./ne";
15
+ export * from "./na";
15
16
  export * from "./ns";
16
17
  export { compareIn as in } from "./in";
@@ -25,6 +25,7 @@ __exportStar(require("./initial"), exports);
25
25
  __exportStar(require("./le"), exports);
26
26
  __exportStar(require("./lt"), exports);
27
27
  __exportStar(require("./ne"), exports);
28
+ __exportStar(require("./na"), exports);
28
29
  __exportStar(require("./ns"), exports);
29
30
  var in_1 = require("./in");
30
31
  Object.defineProperty(exports, "in", { enumerable: true, get: function () { return in_1.compareIn; } });
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function na(left: number | string | ICharacter | INumeric, right: string | ICharacter): boolean;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.na = void 0;
4
+ const ca_1 = require("./ca");
5
+ function na(left, right) {
6
+ return !(0, ca_1.ca)(left, right);
7
+ }
8
+ exports.na = na;
9
+ //# sourceMappingURL=na.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",