🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@dags/uid-uuid

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

@dags/uid-uuid - npm Package Compare versions

Comparing version

to
0.5.0

LICENSE

@@ -6,2 +6,19 @@ # Change Log

# [0.5.0](https://github.com/AlexanderLapygin/dags/compare/@dags/uid-uuid@0.4.1...@dags/uid-uuid@0.5.0) (2020-10-29)
### Bug Fixes
- renaming of modules
([b4ca1a9](https://github.com/AlexanderLapygin/dags/commit/b4ca1a96525edd8c366dcd0bf7d468c60c7dc0ca))
### Features
- merge with dag-split-impl by local copy between branches
([f067d9b](https://github.com/AlexanderLapygin/dags/commit/f067d9b7228325a3706773e0cd8052f8e2d8f9d5))
# Change Log
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.4.2](https://github.com/AlexanderLapygin/dags/compare/@dags/uid-uuid@0.4.1...@dags/uid-uuid@0.4.2) (2020-10-27)

@@ -8,0 +25,0 @@

1

dist/cjs/index.js

@@ -9,4 +9,5 @@ "use strict";

if (key === "default" || key === "__esModule") return;
if (key in exports && exports[key] === _uidUuid[key]) return;
exports[key] = _uidUuid[key];
});
//# sourceMappingURL=index.js.map

2

dist/types/uid-uuid.d.ts

@@ -1,2 +0,2 @@

import { UID } from '@dags/dag';
import { UID } from '@dags/dag-base';
/**

@@ -3,0 +3,0 @@ * Implements the UID interface that Dag requires.

@@ -0,0 +0,0 @@ const baseConfig = require('../../jest.config')

{
"name": "@dags/uid-uuid",
"version": "0.4.2",
"version": "0.5.0",
"description": "UID that is implemented as UUID",

@@ -35,6 +35,6 @@ "main": "dist/cjs/index.js",

"devDependencies": {
"@dags/dag": "^0.4.1"
"@dags/dag-base": "^0.2.0"
},
"peerDependencies": {
"@dags/dag": "0.x"
"@dags/dag-base": "0.x"
},

@@ -54,3 +54,4 @@ "files": [

},
"sideEffects": false
"sideEffects": false,
"gitHead": "41b21b3b6698230911a5eb8a989e25301f337033"
}

@@ -1,3 +0,17 @@

# A TypeScript library for generating UIDs, which is implemented as uuid.
# UID that is implemented in TypeScript as UUID.
This library is based on [uuid](https://github.com/uuidjs/uuid) implementation to support global uniqueness.
This library is based on [uuid](https://github.com/uuidjs/uuid) implementation to support global
uniqueness.
## Usage
```ts
import { UUID } from '@dags/core'
const uuid1 = new UUID()
const uuid2 = new UUID()
console.log(uuid1)
console.log(uuid2)
console.log(uuid1.equals(uuid2))
```

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet