New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@forter/helpers

Package Overview
Dependencies
Maintainers
3
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forter/helpers - npm Package Compare versions

Comparing version 1.0.1-beta.295 to 1.0.1-beta.332

decorators/index.js

10

index.js
export { query, queryAll } from './decorators/query.js';
export { DECORATORS_MODULE } from './decorators/index.js';
export { range } from './functions/range.js';

@@ -10,2 +11,7 @@ export { sleep } from './functions/sleep.js';

export { getPxString } from './functions/get-px-string.js';
export { includes, join, replace, split, toLowerCase } from './functions/pointfree.js';
export { length } from './functions/length.js';
export { last } from './functions/last.js';
export { getHost } from './functions/get-host.js';
export { FUNCTIONS_MODULE } from './functions/index.js';
export { FireMixin } from './mixins/fire-mixin.js';

@@ -15,2 +21,6 @@ export { IsSlottedMixin } from './mixins/is-slotted-mixin.js';

export { log } from './log/log.js';
export { LOG_MODULE } from './log/index.js';
export { SelectMixin } from './mixins/select-mixin.js';
export { MIXINS_MODULE } from './mixins/index.js';
export { optionTemplate } from './templates/option-template.js';
export { TEMPLATES_MODULE } from './templates/index.js';

1

mixins/select-mixin.js

@@ -7,2 +7,3 @@ import { FireMixin } from './fire-mixin.js';

import { log } from '../log/log.js';
import '../log/index.js';

@@ -9,0 +10,0 @@ const isAllowedChild = allowedChildren => ({

4

package.json
{
"name": "@forter/helpers",
"version": "1.0.1-beta.295+43bd1c3",
"version": "1.0.1-beta.332+29f5bda",
"description": "Helpers for Forter Components",

@@ -47,3 +47,3 @@ "main": "index.js",

},
"gitHead": "43bd1c352a3313066d4390ad3ad4d75863ee9d34"
"gitHead": "29f5bda92976f7c1dba91419fcc784eff8c8b95f"
}
export * from './query';
export const DECORATORS_MODULE = 'decorators';

@@ -1,8 +0,15 @@

export { range } from './range';
export { sleep } from './sleep';
export { capitalize } from './capitalize';
export { humanize } from './humanize';
export { register } from './register';
export { getTitleFromLocationSearch } from './get-title-from-location-search';
export { urlDashCaseToHuman } from './url-to-dash-case-human';
export { getPxString } from './get-px-string';
export * from './range';
export * from './sleep';
export * from './capitalize';
export * from './humanize';
export * from './register';
export * from './get-title-from-location-search';
export * from './url-to-dash-case-human';
export * from './get-px-string';
export * from './pointfree';
export * from './length';
export * from './last';
export * from './get-host';
// HACK: gets Rollup to include the index
export const FUNCTIONS_MODULE = 'functions';

@@ -5,1 +5,2 @@ export * from './decorators';

export * from './log';
export * from './templates';
export * from './log';
export const LOG_MODULE = 'log';

@@ -5,1 +5,3 @@ export * from './fire-mixin';

export * from './select-mixin';
export const MIXINS_MODULE = 'mixins';
export * from './option-template';
export const TEMPLATES_MODULE = 'templates';
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