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

agilite-utils

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agilite-utils - npm Package Compare versions

Comparing version 7.6.0-rc-13 to 7.6.0-rc-14

1

dist/index.d.ts

@@ -14,4 +14,5 @@ declare const _default: {

compileTemplate: (data: any, params: any, agiConfig?: any) => string;
generateUUID: () => string;
};
export default _default;
//# sourceMappingURL=index.d.ts.map

11

dist/index.js

@@ -17,6 +17,7 @@ 'use strict';

const type_detect_1 = __importDefault(require("type-detect"));
const validate_js_1 = __importDefault(require("validate.js"));
const handlebars_1 = __importDefault(require("handlebars"));
const enums_type_detect_1 = __importDefault(require("./enums-type-detect"));
const enums_validations_1 = __importDefault(require("./enums-validations"));
const validate_js_1 = __importDefault(require("validate.js"));
const handlebars_1 = __importDefault(require("handlebars"));
const uuid_1 = require("uuid");
const getQueryParams = (url) => {

@@ -313,2 +314,5 @@ const newUrl = new URL(url);

};
const generateUUID = () => {
return (0, uuid_1.v1)();
};
// PRIVATE FUNCTIONS

@@ -352,4 +356,5 @@ const _trimObjectValuesExtended = (dataObject) => {

trimObjectValues,
compileTemplate
compileTemplate,
generateUUID
};
//# sourceMappingURL=index.js.map
{
"name": "agilite-utils",
"license": "MIT",
"version": "7.6.0-rc-13",
"version": "7.6.0-rc-14",
"description": "Various 3rd party utilities, functions and services that we simplify and use throughout the Agilit-e ecosystem",

@@ -70,5 +70,5 @@ "homepage": "https://agilite.io",

"type-detect": "4.0.8",
"uuid": "^8.3.2",
"uuid": "^9.0.1",
"validate.js": "0.13.1"
}
}

@@ -19,3 +19,2 @@ # agilite-utils

- [type-detect](https://www.npmjs.com/package/type-detect)
- [uuid](https://www.npmjs.com/package/uuid)
- [validate.js](https://www.npmjs.com/package/validate.js)

@@ -22,0 +21,0 @@

@@ -5,6 +5,7 @@ 'use strict'

import TypeDetect from 'type-detect'
import Validate from 'validate.js'
import Handlebars from 'handlebars'
import EnumsTypeDetect from './enums-type-detect'
import EnumsValidations from './enums-validations'
import Validate from 'validate.js'
import Handlebars from 'handlebars'
import { v1 } from 'uuid'

@@ -333,2 +334,6 @@ const getQueryParams = (url) => {

const generateUUID = () => {
return v1()
}
// PRIVATE FUNCTIONS

@@ -374,3 +379,4 @@ const _trimObjectValuesExtended = (dataObject) => {

trimObjectValues,
compileTemplate
compileTemplate,
generateUUID
}

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