typescript-guid
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Guid Typescript

Guid Typescript is a library that lets you generate guid code

Based on https://github.com/NicolasDeveloper/guid-typescript

original author https://github.com/NicolasDeveloper

Installation and usage

Installation

npm i typescript-guid --save

Basic usage

import { Guid } from "typescript-guid";
 
export class Example {
    public id: Guid;
    constructor() {
        this.id = Guid.create(); // ==> b77d409a-10cd-4a47-8e94-b0cd0ab50aa1
    }
}

Props and Methods

Method/Prop Description Test Status
static isGuid (guid: any): boolean Check if value is a guid code OK Ready
static create ( ): Guid Create a new guid OK Ready
static createEmpty ( ): Guid Create an empty guid OK Ready
static parse (guid: string): Guid Creates a guid instance from a given guid as string OK Ready
static raw ( ): string Create a guid code in string format OK Ready
equals (other: Guid): boolean Compare a guid code OK Ready
isEmpty ( ): boolean Validate if a guid is empty OK Ready
toString ( ): string Parse a guid instance to string format OK Ready
toJSON ( ): any Parse to JSON format OK Ready

Package Sidebar

Install

npm i typescript-guid

Weekly Downloads

1,622

Version

1.0.3

License

ISC

Unpacked Size

8.83 kB

Total Files

7

Last publish

Collaborators

  • avmaisak