Socket
Socket
Sign inDemoInstall

pure-uuid

Package Overview
Dependencies
0
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.7 to 1.4.8

2

bower.json
{
"name": "pure-uuid",
"version": "1.4.6",
"version": "1.4.8",
"homepage": "http://github.com/rse/pure-uuid",

@@ -5,0 +5,0 @@ "description": "Pure JavaScript Based Universally Unique Identifier (UUID)",

@@ -5,3 +5,3 @@ {

"description": "Pure JavaScript Based Universally Unique Identifier (UUID)",
"version": "1.4.7",
"version": "1.4.8",
"license": "MIT",

@@ -29,8 +29,8 @@ "author": {

"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~3.0.1",
"grunt-contrib-uglify": "~3.1.0",
"grunt-contrib-clean": "~1.1.0",
"grunt-eslint": "~20.0.0",
"grunt-eslint": "~20.1.0",
"grunt-mocha-test": "~0.13.2",
"chai": "~4.1.0",
"mocha": "~3.4.2"
"chai": "~4.1.2",
"mocha": "~3.5.3"
},

@@ -37,0 +37,0 @@ "dependencies" : {

@@ -26,29 +26,19 @@ /*!

interface UUID {
/* default construction */
(): UUID;
/* parsing construction */
(uuid: String): UUID;
/* making construction */
(version: Number): UUID;
(version: Number, ns: String, data: String): UUID;
/* making */
make(version: Number, ...params: any[]): UUID;
make(version: number, ...params: any[]): UUID;
/* parsing */
parse(str: String): UUID;
parse(str: string): UUID;
/* formatting */
format(type?: String): String;
format(type?: string): string;
/* formatting (alias) */
toString(type?: String): String;
tostring(type?: string): string;
/* importing */
import(arr: Number[]): UUID;
import(arr: number[]): UUID;
/* exporting */
export(): Number[];
export(): number[];

@@ -59,1 +49,16 @@ /* byte-wise comparison */

export interface UUIDConstructor {
/* default construction */
new(): UUID;
/* parsing construction */
new(uuid: string): UUID;
/* making construction */
new(version: number): UUID;
new(version: number, ns: string, data: string): UUID;
}
declare var UUID: UUIDConstructor;
export default UUID;
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