Alphabets package test

This commit is contained in:
Romein van Buren 2023-05-05 12:39:27 +02:00
parent efb92dd11c
commit 6db210554a
Signed by: romein
GPG Key ID: 0EFF8478ADDF6C49
3 changed files with 28 additions and 0 deletions

5
js/alphabets/index.js Normal file
View File

@ -0,0 +1,5 @@
// const ab = require('alphabets');
import ab from 'alphabets';
console.log(ab.ukrainian.join(''));
console.log(ab.latin.length);

17
js/alphabets/package-lock.json generated Normal file
View File

@ -0,0 +1,17 @@
{
"name": "alphabets",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"alphabets": "^2.0.2"
}
},
"node_modules/alphabets": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/alphabets/-/alphabets-2.0.2.tgz",
"integrity": "sha512-tgPLNXO8oZXK57/xDf6zmzp0rGYTeueB3YDHQBxGuUbDoWyJoxEuaHDnnWcz4PNFHHEAra0V7GaF7xjZFEgNvw=="
}
}
}

View File

@ -0,0 +1,6 @@
{
"dependencies": {
"alphabets": "^2.0.2"
},
"type": "module"
}