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

@fluentfixture/shared

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentfixture/shared - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

lib/src/types/type-utils.d.ts

@@ -13,3 +13,3 @@ export declare class TypeUtils {

static isArray(arr: unknown): arr is Array<any>;
static isAssigned(val: unknown): boolean;
static isAssigned<T>(val: T): val is NonNullable<T>;
static isNonEmptyString(str: unknown): str is string;

@@ -16,0 +16,0 @@ static isNonBlankString(str: unknown): str is string;

@@ -1,14 +0,14 @@

export declare const NON_NUMBER_DATA_SET: {}[];
export declare const NON_INTEGER_DATA_SET: {}[];
export declare const NON_FUNCTION_DATA_SET: {}[];
export declare const NON_DATE_DATA_SET: {}[];
export declare const NON_OBJECT_DATA_SET: (string | number | boolean | symbol | RegExp | any[] | Date | (() => boolean))[];
export declare const NON_STRING_DATA_SET: {}[];
export declare const NON_BOOLEAN_DATA_SET: {}[];
export declare const NON_SYMBOL_DATA_SET: {}[];
export declare const NON_NON_EMPTY_STRING_DATA_SET: {}[];
export declare const NON_NON_BLANK_STRING_DATA_SET: {}[];
export declare const NON_NULL_DATA_SET: {}[];
export declare const NON_UNDEFINED_DATA_SET: {}[];
export declare const NON_NUMBER_DATA_SET: ({} | null | undefined)[];
export declare const NON_INTEGER_DATA_SET: ({} | null | undefined)[];
export declare const NON_FUNCTION_DATA_SET: ({} | null | undefined)[];
export declare const NON_DATE_DATA_SET: ({} | null | undefined)[];
export declare const NON_OBJECT_DATA_SET: (string | number | boolean | symbol | RegExp | Date | never[] | (() => boolean) | null | undefined)[];
export declare const NON_STRING_DATA_SET: ({} | null | undefined)[];
export declare const NON_BOOLEAN_DATA_SET: ({} | null | undefined)[];
export declare const NON_SYMBOL_DATA_SET: ({} | null | undefined)[];
export declare const NON_NON_EMPTY_STRING_DATA_SET: ({} | null | undefined)[];
export declare const NON_NON_BLANK_STRING_DATA_SET: ({} | null | undefined)[];
export declare const NON_NULL_DATA_SET: ({} | undefined)[];
export declare const NON_UNDEFINED_DATA_SET: ({} | null)[];
export declare const NON_NON_ASSIGNED_DATA_SET: {}[];
export declare const NON_ARRAY_DATA_SET: {}[];
export declare const NON_ARRAY_DATA_SET: ({} | null | undefined)[];
{
"name": "@fluentfixture/shared",
"description": "Shared utils of @fluentfixture project. Contains common string, date ,and type utilities.",
"version": "1.0.1",
"version": "1.0.2",
"license": "MIT",

@@ -46,3 +46,3 @@ "main": "lib/index.js",

},
"gitHead": "b414f55233e71ff6d96ae99966b506011130a7c9"
"gitHead": "3d36014a07943a552ed4369e5faf63d807acb22c"
}

@@ -7,10 +7,14 @@ <p align="center">

[![CircleCI](https://circleci.com/gh/fluentfixture/fluentfixture/tree/main.svg?style=svg)](https://circleci.com/gh/fluentfixture/fluentfixture/tree/main)
[![npm version](https://badge.fury.io/js/@fluentfixture%2Fshared.svg)](https://badge.fury.io/js/@fluentfixture%2Fshared)
[![Coverage Status](https://coveralls.io/repos/github/fluentfixture/fluentfixture/badge.svg?branch=main)](https://coveralls.io/github/fluentfixture/fluentfixture?branch=main)
[![Known Vulnerabilities](https://snyk.io/test/github/fluentfixture/fluentfixture/badge.svg)](https://snyk.io/test/github/fluentfixture/fluentfixture)
[![CodeFactor](https://www.codefactor.io/repository/github/fluentfixture/fluentfixture/badge)](https://www.codefactor.io/repository/github/fluentfixture/fluentfixture)
[![npm bundle size](https://img.shields.io/bundlephobia/minzip/@fluentfixture/shared)](https://bundlephobia.com/package/@fluentfixture/shared)
<p align="center">
<a href="https://www.npmjs.com/package/@fluentfixture/shared" target="_blank"><img src="https://img.shields.io/npm/v/@fluentfixture/shared.svg" alt="NPM Version"/></a>
<a href="https://www.npmjs.com/package/@fluentfixture/shared" target="_blank"><img src="https://img.shields.io/npm/l/@fluentfixture/shared.svg" alt="Package License" /></a>
<a href="https://dl.circleci.com/status-badge/redirect/gh/fluentfixture/fluentfixture/tree/main" target="_blank"><img src="https://dl.circleci.com/status-badge/img/gh/fluentfixture/fluentfixture/tree/main.svg?style=svg" alt="CircleCI" /></a>
<a href="https://coveralls.io/github/fluentfixture/fluentfixture?branch=main" target="_blank"><img src="https://coveralls.io/repos/github/fluentfixture/fluentfixture/badge.svg?branch=main#9" alt="Coverage" /></a>
<a href="https://snyk.io/test/github/fluentfixture/fluentfixture" target="_blank"><img src="https://snyk.io/test/github/fluentfixture/fluentfixture/badge.svg" alt="Known Vulnerabilities"/></a>
<a href="https://www.codefactor.io/repository/github/fluentfixture/fluentfixture" target="_blank"><img src="https://www.codefactor.io/repository/github/fluentfixture/fluentfixture/badge" alt="CodeFactor"/></a>
<a href="https://codesandbox.io/s/github/fluentfixture/fluentfixture/tree/main/sample/02-core" target="_blank"><img src="https://img.shields.io/badge/Open%20in-CodeSandbox-blue?style=flat-square&logo=codesandbox" alt="Open in CodeSandbox"/></a>
<a href="https://docs.fluentfixture.com" target="_blank"><img src="https://img.shields.io/badge/Open%20in-GitBook-yellow?style=flat-square&logo=gitbook" alt="Open in CodeSandbox"/></a>
</p>
## @fluentfixture/shared
## Introduction

@@ -26,8 +30,4 @@ Shared utils of the [@fluentfixture](https://github.com/fluentfixture) project. Provides common string, date, and type utilities.

## Follow Us!
- Project [@fluentfixture](https://github.com/fluentfixture)
## License
@fluentfixture is [MIT](https://github.com/fluentfixture/fluentfixture/blob/main/LICENSE) licensed.
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