This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
Copyright Mathias Bynens <https://mathiasbynens.be/>
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.

86
node_modules/unicode-emoji-modifier-base/index.js generated vendored Executable file
View File

@@ -0,0 +1,86 @@
// Generated using `npm run build`. Do not edit!
module.exports = new Set([
0x261D,
0x26F9,
0x270A,
0x270B,
0x270C,
0x270D,
0x1F385,
0x1F3C3,
0x1F3C4,
0x1F3CA,
0x1F3CB,
0x1F442,
0x1F443,
0x1F446,
0x1F447,
0x1F448,
0x1F449,
0x1F44A,
0x1F44B,
0x1F44C,
0x1F44D,
0x1F44E,
0x1F44F,
0x1F450,
0x1F466,
0x1F467,
0x1F468,
0x1F469,
0x1F46E,
0x1F470,
0x1F471,
0x1F472,
0x1F473,
0x1F474,
0x1F475,
0x1F476,
0x1F477,
0x1F478,
0x1F47C,
0x1F481,
0x1F482,
0x1F483,
0x1F485,
0x1F486,
0x1F487,
0x1F4AA,
0x1F575,
0x1F57A,
0x1F590,
0x1F595,
0x1F596,
0x1F645,
0x1F646,
0x1F647,
0x1F64B,
0x1F64C,
0x1F64D,
0x1F64E,
0x1F64F,
0x1F6A3,
0x1F6B4,
0x1F6B5,
0x1F6B6,
0x1F6C0,
0x1F918,
0x1F919,
0x1F91A,
0x1F91B,
0x1F91C,
0x1F91D,
0x1F91E,
0x1F926,
0x1F930,
0x1F933,
0x1F934,
0x1F935,
0x1F936,
0x1F937,
0x1F938,
0x1F939,
0x1F93C,
0x1F93D,
0x1F93E
]);

44
node_modules/unicode-emoji-modifier-base/package.json generated vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "unicode-emoji-modifier-base",
"version": "1.0.0",
"description": "The set of Unicode symbols that can serve as a base for emoji modifiers, i.e. those with the `Emoji_Modifier_Base` property set to `Yes`.",
"homepage": "https://github.com/mathiasbynens/unicode-emoji-modifier-base",
"main": "index.js",
"engines": {
"node": ">=4"
},
"files": [
"LICENSE-MIT.txt",
"index.js"
],
"keywords": [
"unicode",
"unicode-data",
"emoji",
"modifier",
"Emoji_Modifier_Base"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/unicode-emoji-modifier-base.git"
},
"bugs": "https://github.com/mathiasbynens/unicode-emoji-modifier-base/issues",
"devDependencies": {
"codecov": "^1.0.1",
"istanbul": "^0.4.4",
"jsesc": "^2.2.0",
"lodash.range": "^3.1.5",
"mocha": "^2.2.1"
},
"scripts": {
"download": "curl http://unicode.org/Public/emoji/3.0/emoji-data.txt > data/emoji-data.txt",
"build": "node scripts/build.js",
"test": "mocha tests",
"cover": "istanbul cover --report html node_modules/.bin/_mocha tests -- -u exports -R spec"
}
}