Socket
Socket
Sign inDemoInstall

@js-bits/typedef-utils

Package Overview
Dependencies
0
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @js-bits/typedef-utils

Utility types for TypeScript


Version published
Weekly downloads
31
increased by121.43%
Maintainers
1
Install size
58.1 kB
Created
Weekly downloads
 

Readme

Source

Utility types for TypeScript

Useful generic types for operating with string literals, numbers and tuples in TypeScript.

Installation

Install with npm:

npm install @js-bits/typedef-utils -D

Install with yarn:

yarn add @js-bits/typedef-utils -D

Examples

String utilities:

import type { Split, Trim } from '@js-bits/typedef-utils/string';

const trim: Trim<'         abc         '> = 'abc';
const split: Split<'a b c', ' '> = ['a', 'b', 'c'];

Math utilities:

import type { Add, Multiply, Parse } from '@js-bits/typedef-utils/math';

const parse: Parse<'-56.78'> = -56.78;
const add: Add<9999999, 9999999> = 19999998;
const multiply: Multiply<78, 63> = 4914;

Tuple utilities:

import type { Append, Length, Longest } from '@js-bits/typedef-utils/tuple';

const length: Length<[1, 2, 3, 4, 5]> = 5;
const longest: Longest<[1], [1, 2, 3]> = [1, 2, 3];
const append: Append<[1, 2, 3, 4], 5> = [1, 2, 3, 4, 5];

Documentation

Follow the reference docs for more information:

  • String utilities
  • Math utilities
  • Tuple utilities

Notes

  • Requires TypeScript 4.8+

Keywords

FAQs

Last updated on 12 Jun 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc