Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@journeyapps/evaluator

Package Overview
Dependencies
Maintainers
2
Versions
266
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@journeyapps/evaluator - npm Package Compare versions

Comparing version 0.0.0-dev.fe2a926.7f52885 to 0.0.0-dev.fe96da7

5

dist/@types/src/TypeInterface.d.ts
export interface TypeInterface {
name: string;
options: object;
isPrimitiveType: boolean;
objectType?: TypeInterface;
getVariable(expression: string): any;

@@ -8,5 +10,4 @@ getVariableTypeAndNameWithParent(expression: string): any;

toJSON(): any;
stringify(): string;
format(value: any, format?: string): string;
options: object;
stringify(): string;
}

2

dist/@types/src/VariableFormatStringScope.d.ts

@@ -9,3 +9,3 @@ /**

import { TypeInterface } from './TypeInterface';
export declare type VariableScope = Record<string, any> & {
export type VariableScope = Record<string, any> & {
type: TypeInterface;

@@ -12,0 +12,0 @@ _display?(): Promise<string>;

@@ -11,3 +11,3 @@ "use strict";

this.expression = expression || '';
this.tokens = tools_1.compile(this.expression);
this.tokens = (0, tools_1.compile)(this.expression);
this.type = FormatString.TYPE;

@@ -44,3 +44,3 @@ }

var expression = token.expression;
tools_1.extract(type, expression, result, depth);
(0, tools_1.extract)(type, expression, result, depth);
}

@@ -177,3 +177,3 @@ }

const type = scope.getExpressionType(expression);
const text = tools_1.formatValue(value, type, token.format);
const text = (0, tools_1.formatValue)(value, type, token.format);
result += text;

@@ -180,0 +180,0 @@ }

"use strict";
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]; } });
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {

@@ -6,0 +10,0 @@ if (k2 === undefined) k2 = k;

@@ -30,3 +30,3 @@ "use strict";

const type = scope.getExpressionType(expression);
return tools_1.formatValueAsync(value, type, this.format);
return (0, tools_1.formatValueAsync)(value, type, this.format);
}

@@ -33,0 +33,0 @@ }

@@ -23,3 +23,3 @@ "use strict";

const type = scope.getExpressionType(expression);
return tools_1.formatValueAsync(value, type, this.format);
return (0, tools_1.formatValueAsync)(value, type, this.format);
}

@@ -26,0 +26,0 @@ }

{
"name": "@journeyapps/evaluator",
"version": "0.0.0-dev.fe2a926.7f52885",
"description": "Journey JS library",
"version": "0.0.0-dev.fe96da7",
"description": "Journey Evaluator library",
"main": "./dist/src/index.js",
"typings": "./dist/@types/src/index",
"scripts": {
"build": "../node_modules/.bin/tsc --build",
"test": "yarn build && yarn test:node && yarn test:browser",
"test:browser": "karma start karma.conf.js --single-run",
"test:node": "jasmine dist/test/unit/all.js"
},
"dependencies": {
"@journeyapps/core-xml": "0.0.0-dev.fe2a926.7f52885"
},
"files": [

@@ -20,3 +11,13 @@ "dist/src",

],
"gitHead": "593e0ab03a834f1ed7461ee9e1d0440817ab8bcf"
}
"dependencies": {
"@journeyapps/core-xml": "0.0.0-dev.fe96da7"
},
"devDependencies": {},
"scripts": {
"build": "tsc --build",
"clean": "tsc -b --clean && rm -rf dist",
"test": "pnpm build && pnpm test:node && pnpm test:browser",
"test:browser": "vitest --run --config vitest.config.browser.ts ",
"test:node": "vitest --run --config vitest.config.unit.ts"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc