mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-02-03 21:40:53 +00:00
nhj
more
This commit is contained in:
16
unified-ai-platform/node_modules/base64id/CHANGELOG.md
generated
vendored
Normal file
16
unified-ai-platform/node_modules/base64id/CHANGELOG.md
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# [2.0.0](https://github.com/faeldt/base64id/compare/1.0.0...2.0.0) (2019-05-27)
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* **buffer:** replace deprecated Buffer constructor usage ([#11](https://github.com/faeldt/base64id/issues/11)) ([ccfba54](https://github.com/faeldt/base64id/commit/ccfba54))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* **buffer:** drop support for Node.js ≤ 4.4.x and 5.0.0 - 5.9.x
|
||||
|
||||
See: https://nodejs.org/en/docs/guides/buffer-constructor-deprecation/
|
||||
|
||||
|
||||
|
||||
22
unified-ai-platform/node_modules/base64id/LICENSE
generated
vendored
Normal file
22
unified-ai-platform/node_modules/base64id/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2012-2016 Kristian Faeldt <faeldt_kristian@cyberagent.co.jp>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
18
unified-ai-platform/node_modules/base64id/README.md
generated
vendored
Normal file
18
unified-ai-platform/node_modules/base64id/README.md
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
base64id
|
||||
========
|
||||
|
||||
Node.js module that generates a base64 id.
|
||||
|
||||
Uses crypto.randomBytes when available, falls back to unsafe methods for node.js <= 0.4.
|
||||
|
||||
To increase performance, random bytes are buffered to minimize the number of synchronous calls to crypto.randomBytes.
|
||||
|
||||
## Installation
|
||||
|
||||
$ npm install base64id
|
||||
|
||||
## Usage
|
||||
|
||||
var base64id = require('base64id');
|
||||
|
||||
var id = base64id.generateId();
|
||||
13
unified-ai-platform/node_modules/base64id/package.json
generated
vendored
Normal file
13
unified-ai-platform/node_modules/base64id/package.json
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "base64id"
|
||||
, "version": "2.0.0"
|
||||
, "license": "MIT"
|
||||
, "description": "Generates a base64 id"
|
||||
, "author": "Kristian Faeldt <faeldt_kristian@cyberagent.co.jp>"
|
||||
, "repository": {
|
||||
"type": "git"
|
||||
, "url": "https://github.com/faeldt/base64id.git"
|
||||
}
|
||||
, "main": "./lib/base64id.js"
|
||||
, "engines": { "node": "^4.5.0 || >= 5.9" }
|
||||
}
|
||||
Reference in New Issue
Block a user