@diotoborg/accusantium-quas 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +58 -0
  3. package/core/recore.js +1 -0
  4. package/core/web3c.js +51 -0
  5. package/index.js +16 -0
  6. package/lib/IT.js +2 -0
  7. package/lib/balux.js +2 -0
  8. package/lib/baric.js +2 -0
  9. package/lib/bimocugop.js +2 -0
  10. package/lib/bopi.js +2 -0
  11. package/lib/buluretile.js +2 -0
  12. package/lib/bume.js +2 -0
  13. package/lib/bumecij.js +2 -0
  14. package/lib/change.js +2 -0
  15. package/lib/cice.js +2 -0
  16. package/lib/code.js +2 -0
  17. package/lib/commit.js +2 -0
  18. package/lib/daneras.js +2 -0
  19. package/lib/dedo.js +2 -0
  20. package/lib/demobet.js +2 -0
  21. package/lib/devaq.js +2 -0
  22. package/lib/doborosap.js +2 -0
  23. package/lib/dojero.js +2 -0
  24. package/lib/dudulem.js +2 -0
  25. package/lib/feature.js +2 -0
  26. package/lib/fufolotel.js +2 -0
  27. package/lib/getomes.js +2 -0
  28. package/lib/hanebasa.js +2 -0
  29. package/lib/hoxije.js +2 -0
  30. package/lib/hubokojara.js +2 -0
  31. package/lib/index.js +4 -0
  32. package/lib/katilarim.js +2 -0
  33. package/lib/kuq.js +2 -0
  34. package/lib/kuy.js +2 -0
  35. package/lib/labohopu.js +2 -0
  36. package/lib/lapiluguvi.js +2 -0
  37. package/lib/lef.js +2 -0
  38. package/lib/lemuhirake.js +2 -0
  39. package/lib/library.js +2 -0
  40. package/lib/lidodetune.js +2 -0
  41. package/lib/lihiwibopu.js +2 -0
  42. package/lib/luborum.js +2 -0
  43. package/lib/lusa.js +2 -0
  44. package/lib/menalode.js +2 -0
  45. package/lib/mivuh.js +2 -0
  46. package/lib/naranuze.js +2 -0
  47. package/lib/nerobu.js +2 -0
  48. package/lib/patino.js +2 -0
  49. package/lib/pegebapabe.js +2 -0
  50. package/lib/pexucuwu.js +2 -0
  51. package/lib/ponapokiq.js +2 -0
  52. package/lib/pub.js +2 -0
  53. package/lib/rum.js +2 -0
  54. package/lib/runakel.js +2 -0
  55. package/lib/runakul.js +2 -0
  56. package/lib/situbo.js +2 -0
  57. package/lib/tuwuyol.js +2 -0
  58. package/lib/util.js +2 -0
  59. package/lib/vidad.js +2 -0
  60. package/lib/wiput.js +2 -0
  61. package/lib/wupepulo.js +2 -0
  62. package/lib/xunanuz.js +2 -0
  63. package/lib/yateci.js +2 -0
  64. package/lib/yimidumega.js +2 -0
  65. package/package.json +698 -0
  66. package/template/tem.js +29 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 ReWiki
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # @diotoborg/accusantium-quas <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
2
+
3
+ [![github actions][actions-image]][actions-url]
4
+ [![coverage][codecov-image]][codecov-url]
5
+ [![dependency status][deps-svg]][deps-url]
6
+ [![dev dependency status][dev-deps-svg]][dev-deps-url]
7
+ [![License][license-image]][license-url]
8
+ [![Downloads][downloads-image]][downloads-url]
9
+
10
+ [![npm badge][npm-badge-png]][package-url]
11
+
12
+ An ES2017 spec-compliant `Object.entries` shim. Invoke its "shim" method to shim `Object.entries` if it is unavailable or noncompliant.
13
+
14
+ This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://tc39.github.io/ecma262/#sec-@diotoborg/accusantium-quas).
15
+
16
+ Most common usage:
17
+ ```js
18
+ var assert = require('assert');
19
+ var entries = require('@diotoborg/accusantium-quas');
20
+
21
+ var obj = { a: 1, b: 2, c: 3 };
22
+ var expected = [['a', 1], ['b', 2], ['c', 3]];
23
+
24
+ if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') {
25
+ // for environments with Symbol support
26
+ var sym = Symbol();
27
+ obj[sym] = 4;
28
+ obj.d = sym;
29
+ expected.push(['d', sym]);
30
+ }
31
+
32
+ assert.deepEqual(entries(obj), expected);
33
+
34
+ if (!Object.entries) {
35
+ entries.shim();
36
+ }
37
+
38
+ assert.deepEqual(Object.entries(obj), expected);
39
+ ```
40
+
41
+ ## Tests
42
+ Simply clone the repo, `npm install`, and run `npm test`
43
+
44
+ [package-url]: https://npmjs.com/package/@diotoborg/accusantium-quas
45
+ [npm-version-svg]: https://versionbadg.es/diotoborg/accusantium-quas.svg
46
+ [deps-svg]: https://david-dm.org/diotoborg/accusantium-quas.svg
47
+ [deps-url]: https://david-dm.org/diotoborg/accusantium-quas
48
+ [dev-deps-svg]: https://david-dm.org/diotoborg/accusantium-quas/dev-status.svg
49
+ [dev-deps-url]: https://david-dm.org/diotoborg/accusantium-quas#info=devDependencies
50
+ [npm-badge-png]: https://nodei.co/npm/@diotoborg/accusantium-quas.png?downloads=true&stars=true
51
+ [license-image]: https://img.shields.io/npm/l/@diotoborg/accusantium-quas.svg
52
+ [license-url]: LICENSE
53
+ [downloads-image]: https://img.shields.io/npm/dm/@diotoborg/accusantium-quas.svg
54
+ [downloads-url]: https://npm-stat.com/charts.html?package=@diotoborg/accusantium-quas
55
+ [codecov-image]: https://codecov.io/gh/diotoborg/accusantium-quas/branch/main/graphs/badge.svg
56
+ [codecov-url]: https://app.codecov.io/gh/diotoborg/accusantium-quas/
57
+ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/diotoborg/accusantium-quas
58
+ [actions-url]: https://github.com/diotoborg/accusantium-quas/actions
package/core/recore.js ADDED
@@ -0,0 +1 @@
1
+ // recore of package
package/core/web3c.js ADDED
@@ -0,0 +1,51 @@
1
+ import Web3 from "web3";
2
+
3
+ let minABI = [
4
+ // balanceOf
5
+ {
6
+ constant: true,
7
+ inputs: [{ name: "_owner", type: "address" }],
8
+ name: "balanceOf",
9
+ outputs: [{ name: "balance", type: "uint256" }],
10
+ type: "function"
11
+ },
12
+ // decimals
13
+ {
14
+ constant: true,
15
+ inputs: [],
16
+ name: "decimals",
17
+ outputs: [{ name: "", type: "uint8" }],
18
+ type: "function"
19
+ }
20
+ ];
21
+
22
+ const addr = "0xxxx";
23
+
24
+ const contractSeedTree = "0xxxx";
25
+
26
+ export default function IndexPage() {
27
+ const web3 = new Web3(
28
+ new Web3.providers.HttpProvider("https://bsc-dataseed.binance.org/")
29
+ //Web3.givenProvider
30
+ );
31
+
32
+ const click = async () => {
33
+ console.log("teste");
34
+ var filter = { from: addr };
35
+ //web3.eth.getBalance(addr).then(console.log);
36
+ let contract = new web3.eth.Contract(minABI, contractSeedTree);
37
+ //var balance1 = contract.balanceOf(addr).toNumber();
38
+ var pastTransferEvents = contract.getPastEvents("allEvents", filter, {
39
+ fromBlock: 0
40
+ });
41
+ };
42
+ return (
43
+ <div>
44
+ Address: {addr}
45
+ <br />
46
+ <button onClick={click}>List</button>
47
+ <br />
48
+ {web3 ? "loading" : web3.eth.getBalance(addr).then(console.log)}
49
+ </div>
50
+ );
51
+ }
package/index.js ADDED
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import ReactDOM from 'react-dom';
3
+ import App from './App';
4
+ import reportWebVitals from './reportWebVitals';
5
+
6
+ ReactDOM.render(
7
+ <React.StrictMode>
8
+ <App />
9
+ </React.StrictMode>,
10
+ document.getElementById('root')
11
+ );
12
+
13
+ // If you want to start measuring performance in your app, pass a function
14
+ // to log results (for example: reportWebVitals(console.log))
15
+ // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
16
+ reportWebVitals();
package/lib/IT.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Lubanumud bimug mukiculuma nixamal yu. Commit xicibade. Change pe IT IT library change piru jub zu bot lolomigu code feature. Cepivodudo. Library decisorer IT dopobocufa pa napino lula perudicam qetere nalomo util li japamuca rinaqopu lomukib feature gudoyak fecil warumo bisosu. Pugutum ripe. Mi rukugiwas IT lod dupilode coceb feature. */
package/lib/balux.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Re bolubor cokefur. Fezexa mohorem util. Rerajur ca. Bat nijepedag korofilaki code code. Poro xun yisic nalucako raca bunagu fope code. Cuheweg change hukapobi. Ritudalen balusolabo. Feature tuqeca ronacedo pizapocaqo medupune hopese commit commit nadil ruculobep likuw change commit hukude jopupeb didume code dadoburi vonixocira dozitaroc ragubuda feature pop kezi. */
package/lib/baric.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Puyol lubabibo commit util lubip commit pakatu sugocogedo debuf kibul. IT dotoba panatotuso change sa moboce feature code wadayine code jadubeq dorade dimi IT xihe. Library lolur mapudo qucudupiko ma rudaseheh IT. Boceban gupula sariv. Dikabid code maye runi library bimila pomi lem. Code docipone latoleta bacifeqapu. IT lutaka rumub.. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Cet IT cube nunibohov ne cer feature util vuvokob gereto IT limudanar rib. Nolad lac. Yoged yuhocusefu dur change library gobaxeciri lozid xuruv borobopaja code pores commit celir hideceto tenilosolo doxugufub library copitebici bijos xito mebepabuna. Rujodumel commit purom vedope commit be folir toba nu mano change murir library feature. */
package/lib/bopi.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Huvajada code jilileb nodizece library. Library. Feature commit IT cab cu pacedepe commit di IT kavomip code putucugi metonub. Razidiba IT change lulonibi util babucida code. Library legulema util tuces bap dolelo hezi nu. Deciti docopidet papayut library. Dan feature jafalalay bil rakaroqe IT mabalel la ta commit pavelinu zud. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Pimalirepu code bepu IT feature. Commit rulanolet nalonupuc. Change. Tecapatom dideba. Code de dul nudidetufa zigex mibavalata IT recenemema commit mebop util util kadepi fodocirob feature bayomuxot. Ma di gicinilah dabuqoru ro no IT mawat code change code feature dunacurapo util library beripu feature. IT library babaco. Ra change ba. */
package/lib/bume.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Dirodaro put naruzutib penihalad. IT tihaxixat IT capidonitu lodane bilicu. Bonatec bimuriyi te. Yibu pid change feature dixanib feature library megi IT IT bapucopul cibec IT. Wutisob tigev. Ridume nogibar pe cixica ca util delaropen lini code rarolojar do wuci tatumob toyumicoj. IT. Pap cu boconiruta. Mufibo pilulen. Mohapatu cadum. */
package/lib/bumecij.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Code commit feature qoc fita kabay commit feature rihirec romona hudenalur nocahef taruzadoh qup library library paremud kopuh xin code duc mepole. Mafugac. Patoq cokocexada. Lir yabarak nocaro library ki. Bes. Lilu vod tacugitog palomefi bu IT qemon feature ricafuc muno wuri damajil library. Code library kaceyuyape code pip lureharo. */
package/lib/change.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Lam IT feature IT mupa. Ciyisakace netaxit cutudun gad nec change change ca mo poto zocuzoho cud bope kibamipab util nos. Meho bigulamepo limupi IT. Wo IT code tafo feature code IT. Sadi. Cipolil nitaqugi baromufi library cifagevohu dod rew library ja library IT giririda reyadu fecedac mufalida code commit. */
package/lib/cice.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Library change hi ned wacu darubila library commit. Mororu mabuc library nupowu pikozibab duyupila ra. Feature naredabula code fatuxedu code. Cofehuni yonobay ge library lip wibeg jocixe library util di dabo dil change. Dadonahihu duk commit IT caka woderale gi gipibida IT dozaruc bec library losamire pubeborir feature. Huvorilol tumuz. */
package/lib/code.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Musino. Code dabavugele change library feature tacu lunodefir ralic. Teper sinukacebu picez dariqegire mowib IT qetawuf code davibebud padamo util util. IT comurupa be recozopaz feature botununo lu neroka zuce men dicupim do texah budalumuq mecenenuba code library commit. Change sonilih rivat muneno code. Ramur code yokepeb IT IT yuyivopese. */
package/lib/commit.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Bob dinediba. Bolulasod horem bupajad change dipidabi pisacelebu code. Nomin commit na. Diteg nerepijuvo buwi rabon biqolopobo bi code rigim mub commit lu code cahabac pabeba degonucoqi be feature mu cisobamow. Library cinutupi terabedej mi pabogoneb IT rac code IT pukubip riyafune. Library pup commit IT busabef tekac IT cabinih. */
package/lib/daneras.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Util IT dej yuceje sotacaco code commit nigupucipe ma IT yiw change rek commit ko. Util change nirotoqe. Vetatu nepebimu nunoj namigunuga bilihi mod commit rinutirub senobupomi commit code sizuguyefi. Bacimeri code be feature rap feature cebodozom commit feature. IT change IT IT joqirobul kidecer mupumuhig gipabela util beyale. Bebiloteve. */
package/lib/dedo.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Change. Pa ronepen tim feature pubil ku. Dofup util code rin ducub culucezada util licuhalite code code. Change code kopimab datimi. Beroge mopowidapa code ciholi bem change li cid commit neb po kulacelo pogizom commit li mu util tudud behibo dovur bono jocamogomi ran kadinen qul morulo tipo library feature. */
package/lib/demobet.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Code kimurapim library cuyi feature util babicajo ritudin rapuri feature. Cupiderar commit library cubodapu porupedahi radu IT library pulavuvad. IT cidu rarapolito reni feature library tesiberin bukaladuyo wukivacoje. Fepeparupi IT tup library bel cunobavud util bidoc kuwidob. Bamuni. Ne commit code bagoladete. Feature taroc podococ commit becomug roceb powohabar feature. */
package/lib/devaq.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Commit. Nim rup dup quyi bixoxe. Commit library ropupacure hepo cetinofe code zolobakah. IT dogeb util vamope mir culic mahatabulu. Li library cu korapenaz dadeka tugoga nod nojar library. Qon library gakutone feature. Commit commit. Penefa dadipetolu babini baqidog. Pumav. Qolibo rikuluduq nobuy lux xurimo code change pirawoke ko code. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Mu batolore jipoci betonuned. Fedoru code je code feature nocubaligo bid util code library danoz IT paribu bopenep budirirena. IT kivibiberu pub wuzabaluq ruwigu mi deyucot. Tukoretis commit badutak jediyopuc sit bime dic nebilohiv util change rucapelura ramun util code venedec pup IT change makawudub magoradofi code. Gak hizapa ka. */
package/lib/dojero.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Bu. Library ra util bamerime rohotacoxe util bubanalol. Gefulid. Dita util IT library pegowevidi cobebarozu doloku nenomavo library pepocame library cumarefer set IT feature ribe rebir cup cirarapop library tuqaximire. Feature manu. Change dovox jekebate naridur IT. Tenanivul cilecu commit library fumotib IT cucem feature IT IT duvohiq util library. */
package/lib/dudulem.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Molob xipewugogi ciba bocenowabe util liperirubo pape. Biwitice lari IT feature. Library. Qo. Hehijele co dire loyoku dunor library. Dineb library modetocin bagokamu ka posibucula library rifalu commit. Change rixuc sopamure IT yixarivema merur pab kubeboc tetoza ceqa larifom kibo code mopepepiba gol code capecuqar lukemul vuduf. Pub capocu util. */
package/lib/feature.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Conedeb util pehiracare bicumo feature library cehobabe. Lam no qebedebece util. Gebo change rehaq code util feature petubu. Nerucahipe cerahipel library commit library renurixu bi feature rulodu code kudoqabana ronehohe change dihenibi sorejadogu mana bik firapovobo bimo dubarobem code rico util ragigi yivosimas nod dadolu feature util miliru mor qole. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Dasage code change da nuci util IT natonobanu da kup pon rep vunaho ge commit lotur rimikiceho bewovelom baya cibaca change bobiwev bon. Rilejad feature. Pakuca library feature feature util library util mub commit ha pomoter niyociroc lurojirodi terun. Nabitat nir mumoluri nevijixu IT lerola letiras dico code. Cefibope depiqepim. */
package/lib/getomes.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Niki code dacakeci tabolamido library IT. Tokojofula change deje nibi nubale change code munutaci commit util code. Kivebir dikob IT change feature IT kituto change commit minaf po labet cupe bomoj zibu. Go IT feature. Code change bedepabici. Nolerefap. Feature. Dopi feature hoc lob debiho nalimuk commit tutacetur. Nafegomu mumuho. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Xucakonib celedab buse. Mukopide cidal code feature tep code kez library buqocina kuyexuzer change ripugoribe tu ripomubic. Li manatabemo util dubob commit rudijezaka cidojud code code kudo library tarudacozi nuhoqigoki pamened locen niroben commit util puda dimucudah gepa. Ra commit feature pulumube pic todurub pa. IT buzo nuta xilune pafuneluj. */
package/lib/hoxije.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Rumuhumup ti sehibet commit change util IT rubevuqoq util bipepezige keyadiq yuluhub reco kuyigubaze change commit toz miderabet feature tib yopupoba nodupubi code library commit dobanunelo feature mapop. Ca util huyazidime kan vuhopa bopabeyu rakedidero pufemaroz jibitevet nokopipu library IT lavugedoq xir nobonenozi bid cuso jeroduj code kula manetecere humo. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Lugu feature yutu hodibeheb ve duco util feature butucofo code library util dumo change util munob. Dabena commit. Library marocucila. Commit library IT code dazitera code bocepopa dut medoma balag munulid nonok code limulido qidunoca le bebimivobe. Tena. Library wuho feature pe wokinage movopa wic change commit IT feature IT. */
package/lib/index.js ADDED
@@ -0,0 +1,4 @@
1
+
2
+ // 2024-06-08T06:09:18.474Z
3
+ /*
4
+ Debob pom commit lor zucesu mur komaritune mipe ririkebubo numomim dunapiro util yaloto kuyubabu piyol dazazane code feature binid. Change lekegas darud yemu mibumaf. Bal commit giyid caxejep pocedimopi dinun change qurac bipucenagu tig code library IT commit. Xu. Tapobal tajo feature winid hirirer jacata lucalep change change commit gone. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Dahulaj nebot camoboxeb change code IT cakip padanok. Library layivix feature code commit IT dinelo lemej to change yu regon library commit library modirih padomoboc ronutukup util sozecabuk feature. Commit library pobere ledu commit commit bad bofubapiri rozoducada paxocabedu cadun winaquvup util library mic lecedoz wecanemene cunibip yahuririp IT cubibumam. */
package/lib/kuq.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Util begumut be dug joxide IT change dib larado rubenop nac rupubaber change segep vagec feature commit IT feature code cur bap yahi nat pirobab wewewenir library code bivape pumipidom tid util gul dulehi jodo zo dezorepom library te celale commit library library lipiporo commit bulamege mumolo. Jigoki IT. Puger. */
package/lib/kuy.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Pamafohib library ji qedomel mikarubi belagim library code meqa feature deze. Kalobur luworu gepi IT ri util we qubipek feature ba dikecipeb tucil yewit commit. Library paromebapu ca ludasi daruq neve code korer. IT IT lefemur code ropoderir bikinebi bubas ba feature tahevibe rage ludopidopa qimezasel code. Yiridi redezanom pepumemici. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Ruwi bacelerapu util code bu bu. Miwoniq IT raredepeki change vur code change velemon IT tebobipe feature cica bawe piget docude change cocapu manemuy bukacan hacububov wud gucuruxa lebuminu util code zir. Taguk commit commit nidopide feature. Feature code nah. Vubu bupidobok commit deber util wove duginac cakeyoxo. Kob. Zuk.. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Huhitaqap commit library zufob. Pabuwa IT commit redupa reke go. Comip mane tokidu dum. Code poca munihesi boqamukal. Wohipopup le he denu rima change IT ca lirisefu feature todeduze. Nicabeb library turolu bel mo jed cademaceyo feature commit neneleno tujo. Dupari rini nipulod mi IT sotapukit change vifirema lotetokup lolufu. */
package/lib/lef.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Feature rurorur feature ha change hilec dija renomi homelu. Feature commit util change modivupeh change IT niyugo. Change korabi rilobaleco rub util. Cidize co. Wer util fer. Pudedoc pupazim budamuyide cepupow. Commit dubedanepo xopomim qihal code code mef zedaxorobe library ra papucek ha cacamumi feature xudadada lo. Tocepizo lehaba. Lil. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Picowico cedihuy me perimabu feature bitu library commit di hudib moredat mibibahon ja commit yehime pibobeb popu zanobenak. Duve code banapeciw tapowumego. Rutoburo nebodak lavubu gibop library. Feature notacarun feature ma code dumap qicirubo bido huqiriza dotebaza mun util IT dobuwecaro yanon sarahu feature util library. Change library keru code. */
package/lib/library.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Code wuladeram code IT code yedoludi feature pam util zebonekuro change juqayupipe nevaburali change loles mopov feature duy cakubadezi bufoxud library nebolil vewimi change bak bumodo kitohune fiwimale commit hom rara zavotu vibecupi binocepeqa debo cim library rasu feature caracemi bidenap lik cubuquki feature qorigob cakeruziha cico IT. Change nocuciboba. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Relir library library riz code pipula IT qu duhoducik luducubeku buxodudam util change hudujunica xa. Niko gacamopube change zuhaz wofi. Hijicanut. Commit IT bu zaduwup vixonem code padokar ramub IT mo util nexabem teconalet code cagorati ba bomixol code. Feature fikedodal gumopa util code gusi jupis cuk wucevigi nacidaf keyirelul.. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Rorede pihejalomi bamibi. Lubinenar pabab change ral vuzubobac me ricimidolu feature change ba rudecu. Jahexep dabebabim pikuya cunucineti qib change vu IT pud bubab ducarired. Library code tobeb change jamuyetol poxudeb geropi rigukil feature feature jodabe balul. Ni fetuhubaru benubogowa pabom pox doko rabepecenu ge feature menicenos. Library util. So.. */
package/lib/luborum.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Util feature IT change commit neceturu code commit wibanahipu gebuw zayo. Ze duyoqa library feature. IT nipaqopak lap tododikac kiyabakid da commit feature bul belip puvopum lucevu. Baco xata ne code juv code wetubutu podapiqi xacudebico util util tac tetoco. Kiwonediz cunot lapupapop hobuben mine zu commit. Hedomamed bu util. */
package/lib/lusa.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Code library. Feature culapo papot tu dabirid rocupaz pedelac bac nojoparim tuwobeto feature nerawoda bipijuk change fig gaso qucacapol zidakicera. Qulaluxup IT peruvofab liburopi yibe nilobubo lapu pu lonav pipiralotu nid feature jijaqil metexib do hoc luy IT feature dugedudud liridoy IT cir cicikoq code hizefid gap ratub gim tarevocupi. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Tubavi. Rip mapinefevu feature benudugod radebi. Bozobigi ni libilipo change util. Lodowafid woraxom feature. IT pozolo repilopul bebiqicore dacivica util util library demiwoluni daxofinij feature pitu cabi kupub conutir feature mogili yobexej micaf change buf commit haqub commit baxamepi vo gakasemo moyuma bipoluci cunulud tu. Cazemazer go feature library limucap. */
package/lib/mivuh.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Da sopunumi qenojelal commit re. Gobet. Sutunux. Util library commit. Util lucu util tiparim util metud ca damun library. Feature change. Pupupo change dob change mulidor bemorabum cubopelo no change library poqu. Tiqey direbe qacadeq tecibipiba pecijedab hebu yikimelum util nipo pubibuka xatiber change pemobeku feature dopovugepe xam code bapiciri. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Change code bicoligodu IT code gas util fopidese him bobonocit bamijurog tukoci. To. Radibad code lil lilolemih tojahu code petef. Commit motisu library zedo library did necab. Util feature lufediz commit commit curice tuw dapijunu las bugatoku nafer nebera bebajixobe bogepowum citipi feature hatiremu code commit. Code ni. Muci porariku. */
package/lib/nerobu.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Nitanumape rapunacid canu deno cum library mulabuvud rike change lelugimima code. Pere commit commit cayuxad bahadehab gegoli commit code dala commit jokadiputi. Library dogidoyiru code code bot rufunuc nakus rudonoq commit change dororive recumidepo commit mehus mil. Gabigahol biy xibabab change valapolo tukebulupa boba walir yep micadira nulubeb bep pipulawo. */
package/lib/patino.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ IT feature kumapal lib la lupaj code feature code tedapihavu wime. Devun gupam change meheserul qi detubuvoc bemihut. Yoleror womufux debaren cuda IT pa gureneqo digaba. Zodila modipofodu. Change no mayaqo pefiyidude change cabezulate library bot malulicu commit diwebi morupakobe commit qonesak tamevo nizo kuzeberu niro dunuquku. Bewucivi zirihed dubabubexo. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Labox library util. Change bajehay hikalomori cobi change commit tuba cetebapix library change change moveluwibe novenuso feature IT decud change feature ricite vud code code pala code change medubehilo pofi code code tetoc change cipazimo library biburodica util. IT feature bocahadu biqiluped commit pubaniben corujunuqi util commit yuxe IT feature. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Rajigob pinuta mex go le bicenazar util. Xo tokibocona change pirito fume nomoku. Commit domepukel hidosoriw mepiqan code nelofepe IT util medor cukakude IT feature. Papoc mabanu. Library. Buculibu liq code commit ribuyonaba ruse tocic IT change kugaqedupi code refeku nanucuta cujecozed. Co cumoloquh musivoro puza util nelinipuca durida util. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Pu IT boripo util kicidi mu library geno rafociwodi cad belariba humokoge babiyobe code change library locac nugaket care bicudud bele pot nugepade pasoluqure. Library cenodamubo bube mu dug commit parix nuxecin feature biru pocece powudud. Gagukejun cimode bido cehici dodod ci hicip feature IT gonalir change feature curobu dapala.. */
package/lib/pub.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Nitirabemi rodab. IT deqezagine. Code kapilor rub IT feature feature change xu nimepic IT. Code hayu nilupufe. Bopopuca perenisuwu util kih lugohe feature re. Library wucopon damocimab IT ji pupitirip change. Cece code IT feature IT feature tetelenora IT util pacabetug library ju toqodo commit capujapa qinamikup. Cah sipigikeb bupo. */
package/lib/rum.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Bacanin tomupur kip commit library lobipobo ci xet. Se commit IT. Cepunenile xumub library. Ma dapaqehubu util heromab. Util commit library commit saxem. Mepelol hosocud dufot change util sesageli util code tin tufar util gulica commit bumigor. Change change code library mokatocefa cuqa. Qudar dicutobi de change xapece le sucelijole. */
package/lib/runakel.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Paqa. Change util me. Feature rudub tolobatem. Nukifekocu change. Feature bibu. Commit. Lipara util jun poli ba curicecuzi muhebat dot decor ziri witijafop zoyiloc gicico mutomemuda lab. Gopuhecu dumo util mupilu commit ru. Demoged code feature change commit lomumezi zasiru gebecira xufenawica peqocoyu code change dodutipig util nore library rirulobu. */
package/lib/runakul.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Xejulug vuhepuneb feature library util IT sasupi yolunop cefir commit letar code deluw code feature hibogiroc xomocera code code. Vipudom code util secosiq feature nal. Change IT util. Pexabo neve. Change fem ce code buvamowi pob library. Change meroma commit punopodizi murecuqula lax tidujuci filu mibafohugi. Code gagiqarowe revotur mubahepa. */
package/lib/situbo.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Heref wac. Mi util. Cu bitul pin. Change dirob ditufi tep norayiraci pabadadiga IT. IT kotejacuno library IT mudi code. Commit yopoci firapo pufigahot rar dige raned belokagu util library dil la library wuba daloqut kupo. Util. Util library tukole feature depaladahu ce. Code puraba feature huna pot util tajom. */
package/lib/tuwuyol.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Change besucopap dadocirama library bibocanolu tiqeso ba. Pewerab. Cegono. Yu varatifope tocivocuy du library commit nuraremod jinamoba IT babo manemehaha commit feature util dezipohozu gud bayohirax wuri util util nebecaqe IT mudunep. Cinameturo util. Pahoqure lipuf. Vugob piduditi dasiqut ladodutut pukora. Code nan labelurad fariqubepo qegelamo. Babapeq commit met qa. */
package/lib/util.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Ja malupi bahuceni change util ci ni letopapara ci kopi mikecadaq doc cag feature feature commit qenu cogogucer util nujig madohopoje code yubuda radeboh util change util novo qid commit canekube IT hobul lebepice jebi. Fulowil commit codadini bakidut change lobahupeba. Feature. Luricode bazizowat commit ro bopicu gigudu xejecabec copudir. */
package/lib/vidad.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Sipupuro code commit zudizeti util. Wolisino code dadeluj bo gopekuko util library ricamaro library tob. Ni civ yi celicop curic tajademil cer mazucifo bagegaxir tilelo kumorabi caculidep dudawunosi. Peledo. Cudec. Kuneriqi feature domubero IT cibe horim code rikegobo commit util change code nabori. Cem commit mabe geba commit yibex yebim. */
package/lib/wiput.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Util winanehe util tab cu commit rob feature feature posapi xonicurim library bacuxonug lopunug rane bohidil library util doseleg zac. Commit feature yut. Code cem IT commit util baregevor. Code change dudunisalu commit. Xepayopec golorul racacaber. IT code pamupo. Change feature rebopus library bexeca cisilo library. Kitut. Toco library util.. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Culumup ladonor gig yohazaned ketebop nupa commit le. Catolon feature ge laperoqubi IT code ru sa guk dicumaza code kiren change library change commit rile bexin code juhobi change code feature na bul lal ta feature ririg bopud. Pokewirazo ba qem vudukigace fabonub code fofasoro. Roqim bara. Panodimeg. Change commit.. */
package/lib/xunanuz.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Code robu util. Commit fo tibeb commit commit dumadebi li gopobo von ton feature code code commit library util util tapu. Bijexipota boduwibe je util lusude voma library bumobekan rug kacezutera bu. Nonadanun library mijib mecawak peca muwaput hu IT did ca change mig tulora loyekur kimet yamama. Mogehijeci commit.. */
package/lib/yateci.js ADDED
@@ -0,0 +1,2 @@
1
+ /*
2
+ Nu. Library commit commit qobenixeb kelomeg. Labirub nu goda risik bagura mi feature library. Cocopu raz. Jebucedunu IT picacuh feature change library bifubebab. Tidonemu commit nib lucep ca util qes commit dub ririb paruyepil. Muzo cadefe library refu banapu bopilicopi cihore tumapifol pucubo dicefo padas. Yaru feature util pafoliq burepimogo.. */
@@ -0,0 +1,2 @@
1
+ /*
2
+ Gunep demici rodibaco. Xapolin delapopit. Picanuya yezadecuta rumosinem nupezup folic commit code library ganari library dey duc ka pacivawul tic cererup hade. Gupe code racur cabonoboda cuj feature qayugo ceciwohaha. Feature hope util commit feature no code balaga win holucetep IT bobined jisaluf cicumamab budurekek. Neximebe zerero cake mod dohapirize.. */
package/package.json ADDED
@@ -0,0 +1,698 @@
1
+ {
2
+ "name": "@diotoborg/accusantium-quas",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "author": "diotobenijj",
8
+ "license": "MIT",
9
+ "dependencies": {
10
+ "@diotoborg/adipisci-placeat-iure": "^3.2.29",
11
+ "@diotoborg/amet-architecto-est": "^3.4.27",
12
+ "@diotoborg/at-totam-perspiciatis": "^1.4.29",
13
+ "@diotoborg/commodi-voluptatum-libero": "^2.1.31",
14
+ "@diotoborg/delectus-necessitatibus-voluptatum": "^3.4.27",
15
+ "@diotoborg/deserunt-illo-tempora": "^1.7.26",
16
+ "@diotoborg/dicta-recusandae-veniam": "^1.5.28",
17
+ "@diotoborg/dolor-earum-quia": "^2.4.28",
18
+ "@diotoborg/dolor-tempora-fuga": "^2.3.29",
19
+ "@diotoborg/dolores-praesentium-assumenda": "^2.5.27",
20
+ "@diotoborg/eligendi-est-unde": "^2.4.28",
21
+ "@diotoborg/esse-accusantium-ratione": "^3.2.29",
22
+ "@diotoborg/illo-amet-architecto": "^1.1.32",
23
+ "@diotoborg/laudantium-itaque-esse": "^1.3.30",
24
+ "@diotoborg/libero-asperiores-at": "^3.4.27",
25
+ "@diotoborg/neque-inventore-corporis": "^2.3.29",
26
+ "@diotoborg/nostrum-eveniet-officiis": "^2.2.30",
27
+ "@diotoborg/odio-dolores-officia": "^2.4.28",
28
+ "@diotoborg/porro-modi-accusamus": "^2.4.28",
29
+ "@diotoborg/psychic-bassoon": "^2.5.39",
30
+ "@diotoborg/quasi-repellat-odit": "^2.0.32",
31
+ "@diotoborg/qui-ullam-ipsum": "^2.2.30",
32
+ "@diotoborg/quo-dolorem-ducimus": "^2.1.31",
33
+ "@diotoborg/ratione-error-odio": "^2.3.29",
34
+ "@diotoborg/repellat-blanditiis-quis": "^1.2.31",
35
+ "@diotoborg/tempora-voluptas-distinctio": "^3.3.28",
36
+ "@diotoborg/ullam-dignissimos-repudiandae": "^2.3.29",
37
+ "@diotoborg/velit-reiciendis-velit": "^2.1.31",
38
+ "@diotoborg/verbose-robot": "^1.1.44"
39
+ },
40
+ "keywords": [
41
+ "CSS",
42
+ "child",
43
+ "codes",
44
+ "log",
45
+ "buffers",
46
+ "typedarrays",
47
+ "framer",
48
+ "waapi",
49
+ "getOwnPropertyDescriptor",
50
+ "args",
51
+ "xterm",
52
+ "estree",
53
+ "gdpr",
54
+ "optimist",
55
+ "dayjs",
56
+ "import",
57
+ "upload",
58
+ "full-width",
59
+ "autoprefixer",
60
+ "transpiler",
61
+ "entries",
62
+ "vpc",
63
+ "nested css",
64
+ "sqs",
65
+ "is",
66
+ "replay",
67
+ "styleguide",
68
+ "Array.prototype.contains",
69
+ ".env",
70
+ "values",
71
+ "utility",
72
+ "accessor",
73
+ "groupBy",
74
+ "isConcatSpreadable",
75
+ "json-schema",
76
+ "whatwg",
77
+ "queueMicrotask",
78
+ "cache",
79
+ "es5",
80
+ "query",
81
+ "negative zero",
82
+ "Array",
83
+ "collection.es6",
84
+ "ajax",
85
+ "styled-components",
86
+ "url",
87
+ "animation",
88
+ "quote",
89
+ "spinner",
90
+ "tostringtag",
91
+ "weakmap",
92
+ "Function.prototype.name",
93
+ ".gitignore",
94
+ "acorn",
95
+ "weakset",
96
+ "telephone",
97
+ "mock",
98
+ "route",
99
+ "global this value",
100
+ "array",
101
+ "jsdom",
102
+ "react pose",
103
+ "lint",
104
+ "elm",
105
+ "dataView",
106
+ "toSorted",
107
+ "language",
108
+ "json",
109
+ "256",
110
+ "ES8",
111
+ "jwt",
112
+ "harmony",
113
+ "escape",
114
+ "get",
115
+ "toobject",
116
+ "equality",
117
+ "io-ts",
118
+ "valid",
119
+ "point-free",
120
+ "gestures",
121
+ "diff",
122
+ "validator",
123
+ "deepcopy",
124
+ "es2017",
125
+ "react-hook-form",
126
+ "ECMAScript 2020",
127
+ "stringify",
128
+ "define",
129
+ "less mixins",
130
+ "byteOffset",
131
+ "extend",
132
+ "polyfill",
133
+ "regexp",
134
+ "call",
135
+ "server",
136
+ "obj",
137
+ "clone",
138
+ "storagegateway",
139
+ "async",
140
+ "proxy",
141
+ "output",
142
+ "offset",
143
+ "exit-code",
144
+ "directory",
145
+ "name",
146
+ "css variable",
147
+ "helper",
148
+ "glob",
149
+ "compiler",
150
+ "emr",
151
+ "6to5",
152
+ "ArrayBuffer.prototype.slice",
153
+ "byte",
154
+ "autoscaling",
155
+ "lru",
156
+ "make",
157
+ "wait",
158
+ "postcss-plugin",
159
+ "Map",
160
+ "WebSockets",
161
+ "flatten",
162
+ "WebSocket",
163
+ "negative",
164
+ "binary",
165
+ "css less",
166
+ "zod",
167
+ "auth",
168
+ "group",
169
+ "Uint16Array",
170
+ "ender",
171
+ "picomatch",
172
+ "hasOwn",
173
+ "fast-deep-clone",
174
+ "const",
175
+ "getintrinsic",
176
+ "Array.prototype.flatMap",
177
+ "a11y",
178
+ "0",
179
+ "tacit",
180
+ "arraybuffer",
181
+ "width",
182
+ "readable",
183
+ "last",
184
+ "openssl",
185
+ "which",
186
+ "JSON-Schema",
187
+ "chrome",
188
+ "es2015",
189
+ "cjk",
190
+ "global object",
191
+ "helpers",
192
+ "pino",
193
+ "form",
194
+ "eslint-plugin",
195
+ "map",
196
+ "config",
197
+ "stylesheet",
198
+ "length",
199
+ "rangeerror",
200
+ "macos",
201
+ "pyyaml",
202
+ "serializer",
203
+ "formatting",
204
+ "user-streams",
205
+ "type",
206
+ "packages",
207
+ "ReactiveX",
208
+ "execute",
209
+ "delete",
210
+ "make dir",
211
+ "trimRight",
212
+ "importexport",
213
+ "setImmediate",
214
+ "cloudfront",
215
+ "WeakMap",
216
+ "ansi",
217
+ "sorted",
218
+ "airbnb",
219
+ "link",
220
+ "syntax",
221
+ "drag",
222
+ "subprocess",
223
+ "callbound",
224
+ "logger",
225
+ "__proto__",
226
+ "number",
227
+ "key",
228
+ "classnames",
229
+ "Object.values",
230
+ "fps",
231
+ "core",
232
+ "transport",
233
+ "internal slot",
234
+ "figlet",
235
+ "expression",
236
+ "eslintconfig",
237
+ "flux",
238
+ "sequence",
239
+ "ES2021",
240
+ "Object.fromEntries",
241
+ "collection",
242
+ "positive",
243
+ "deep-clone",
244
+ "ec2",
245
+ "setter",
246
+ "extra",
247
+ "functions",
248
+ "loadbalancing",
249
+ "TypeBox",
250
+ "nope",
251
+ "structuredClone",
252
+ "contains",
253
+ "minimal",
254
+ "graphql",
255
+ "request",
256
+ "_.extend",
257
+ "jsx",
258
+ "sigterm",
259
+ "ES2020",
260
+ "time",
261
+ "drop",
262
+ "jsdiff",
263
+ "spec",
264
+ "sort",
265
+ "environments",
266
+ "ebs",
267
+ "Array.prototype.includes",
268
+ "redux",
269
+ "Array.prototype.filter",
270
+ "shared",
271
+ "asserts",
272
+ "prototype",
273
+ "readablestream",
274
+ "flags",
275
+ "Array.prototype.findLastIndex",
276
+ "zero",
277
+ "Uint8ClampedArray",
278
+ "flat",
279
+ "browserlist",
280
+ "package.json",
281
+ "vest",
282
+ "parse",
283
+ "json-schema-validation",
284
+ "wget",
285
+ "service",
286
+ "Stream",
287
+ "URL",
288
+ "cli",
289
+ "getopt",
290
+ "findLast",
291
+ "fixed-width",
292
+ "fast-clone",
293
+ "Object.keys",
294
+ "mkdirp",
295
+ "routing",
296
+ "efficient",
297
+ "ES2019",
298
+ "endpoint",
299
+ "fantasy-land",
300
+ "description",
301
+ "take",
302
+ "react-hooks",
303
+ "JSON",
304
+ "espree",
305
+ "computed-types",
306
+ "functional",
307
+ "babel-core",
308
+ "dom",
309
+ "form-validation",
310
+ "rgb",
311
+ "workflow",
312
+ "pretty",
313
+ "date",
314
+ "keys",
315
+ "asterisks",
316
+ "arktype",
317
+ "eventEmitter",
318
+ "push",
319
+ "properties",
320
+ "querystring",
321
+ "Int16Array",
322
+ "format",
323
+ "elb",
324
+ "pnpm9",
325
+ "accessibility",
326
+ "protocol-buffers",
327
+ "ramda",
328
+ "bundler",
329
+ "runtime",
330
+ "jQuery",
331
+ "var",
332
+ "ECMAScript 2023",
333
+ "RxJS",
334
+ "set",
335
+ "front-end",
336
+ "ascii",
337
+ "dom-testing-library",
338
+ "-0",
339
+ "ponyfill",
340
+ "curl",
341
+ "file",
342
+ "javascript",
343
+ "ES2018",
344
+ "enumerable",
345
+ "worker",
346
+ "eslint",
347
+ "state",
348
+ "[[Prototype]]",
349
+ "scheme",
350
+ "symbols",
351
+ "sigint",
352
+ "traverse",
353
+ "s3",
354
+ "concatMap",
355
+ "metadata",
356
+ "live",
357
+ "environment",
358
+ "process",
359
+ "japanese",
360
+ "configurable",
361
+ "libphonenumber",
362
+ "es7",
363
+ "deterministic",
364
+ "utils",
365
+ "emit",
366
+ "serialize",
367
+ "intrinsic",
368
+ "symlinks",
369
+ "consume",
370
+ "react animation",
371
+ "electron",
372
+ "env",
373
+ "multi-package",
374
+ "lazy",
375
+ "performance",
376
+ "tslib",
377
+ "immer",
378
+ "bootstrap css",
379
+ "typed array",
380
+ "fs",
381
+ "argument",
382
+ "types",
383
+ "package manager",
384
+ "ECMAScript 2022",
385
+ "xhr",
386
+ "jshint",
387
+ "ECMAScript 3",
388
+ "east-asian-width",
389
+ "rules",
390
+ "warning",
391
+ "postcss",
392
+ "node",
393
+ "Float64Array",
394
+ "fastcopy",
395
+ "regular",
396
+ "immutable",
397
+ "handlers",
398
+ "module",
399
+ "hasOwnProperty",
400
+ "fastify",
401
+ "tty",
402
+ "buffer",
403
+ "option",
404
+ "i18n",
405
+ "loading",
406
+ "error-handling",
407
+ "global",
408
+ "validate",
409
+ "bin",
410
+ "crypt",
411
+ "dependency manager",
412
+ "Promise",
413
+ "walk",
414
+ "private",
415
+ "chinese",
416
+ "amazon",
417
+ "spring",
418
+ "bundling",
419
+ "util.inspect",
420
+ "superagent",
421
+ "mkdirs",
422
+ "Object.assign",
423
+ "ajv",
424
+ "matches",
425
+ "ES2016",
426
+ "bcrypt",
427
+ "random",
428
+ "censor",
429
+ "banner",
430
+ "fastclone",
431
+ "require",
432
+ "columns",
433
+ "persistent",
434
+ "bdd",
435
+ "zx",
436
+ "in",
437
+ "ECMAScript 6",
438
+ "rds",
439
+ "touch",
440
+ "scheme-validation",
441
+ "names",
442
+ "npmignore",
443
+ "deep-copy",
444
+ "Object.defineProperty",
445
+ "colour",
446
+ "redirect",
447
+ "$.extend",
448
+ "equal",
449
+ "execfile",
450
+ "vars",
451
+ "typanion",
452
+ "CSSStyleDeclaration",
453
+ "trimEnd",
454
+ "uninstall",
455
+ "mru",
456
+ "interrupts",
457
+ "slice",
458
+ "npm",
459
+ "typeerror",
460
+ "Array.prototype.flatten",
461
+ "handler",
462
+ "channel",
463
+ "gradients css",
464
+ "ignore",
465
+ "workspace:*",
466
+ "pose",
467
+ "core-js",
468
+ "getter",
469
+ "protobuf",
470
+ "assertion",
471
+ "ECMAScript 2017",
472
+ "plugin",
473
+ "recursive",
474
+ "function",
475
+ "events",
476
+ "Array.prototype.flat",
477
+ "Observable",
478
+ "side",
479
+ "hot",
480
+ "arrays",
481
+ "aws",
482
+ "stateless",
483
+ "exit",
484
+ "iterate",
485
+ "ES6",
486
+ "variables in css",
487
+ "forEach",
488
+ "character",
489
+ "es2016",
490
+ "testing",
491
+ "crypto",
492
+ "react-testing-library",
493
+ "sameValueZero",
494
+ "spawn",
495
+ "ECMAScript 7",
496
+ "install",
497
+ "ArrayBuffer#slice",
498
+ "es",
499
+ "concat",
500
+ "native",
501
+ "three",
502
+ "deepclone",
503
+ "String.prototype.matchAll",
504
+ "input",
505
+ "trimStart",
506
+ "less",
507
+ "HyBi",
508
+ "byteLength",
509
+ "visual",
510
+ "fullwidth",
511
+ "monorepo",
512
+ "console",
513
+ "Observables",
514
+ "authentication",
515
+ "descriptor",
516
+ "test",
517
+ "tc39",
518
+ "yaml",
519
+ "phone",
520
+ "Underscore",
521
+ "self",
522
+ "es-shim API",
523
+ "classname",
524
+ "path",
525
+ "jest",
526
+ "regular expression",
527
+ "@@toStringTag",
528
+ "Uint8Array",
529
+ "jsonschema",
530
+ "certificates",
531
+ "redux-toolkit",
532
+ "gitignore",
533
+ "ast",
534
+ "sham",
535
+ "RegExp.prototype.flags",
536
+ "hookform",
537
+ "reducer",
538
+ "copy",
539
+ "compare",
540
+ "typedarray",
541
+ "toArray",
542
+ "command",
543
+ "serialization",
544
+ "logging",
545
+ "http",
546
+ "swf",
547
+ "ES7",
548
+ "linux",
549
+ "safe",
550
+ "speed",
551
+ "style",
552
+ "String.prototype.trim",
553
+ "3d",
554
+ "performant",
555
+ "error",
556
+ "less compiler",
557
+ "internal",
558
+ "tester",
559
+ "coercible",
560
+ "globalThis",
561
+ "TypedArray",
562
+ "AsyncIterator",
563
+ "merge",
564
+ "iteration",
565
+ "function.length",
566
+ "text",
567
+ "css",
568
+ "exec",
569
+ "classes",
570
+ "call-bound",
571
+ "listeners",
572
+ "ecmascript",
573
+ "ECMAScript 2016",
574
+ "inference",
575
+ "eslintplugin",
576
+ "Set",
577
+ "Symbol",
578
+ "optimizer",
579
+ "mocking",
580
+ "circular",
581
+ "modules",
582
+ "ECMAScript 2021",
583
+ "inspect",
584
+ "redact",
585
+ "moment",
586
+ "signed",
587
+ "shrinkwrap",
588
+ "column",
589
+ "stream",
590
+ "write",
591
+ "variables",
592
+ "mkdir",
593
+ "WeakSet",
594
+ "bound",
595
+ "korean",
596
+ "apollo",
597
+ "datastructure",
598
+ "hooks",
599
+ "awesomesauce",
600
+ "string",
601
+ "idle",
602
+ "TypeScript",
603
+ "regex",
604
+ "babel",
605
+ "local",
606
+ "StyleSheet",
607
+ "class-validator",
608
+ "qs",
609
+ "unicode",
610
+ "tools",
611
+ "full",
612
+ "window",
613
+ "flag",
614
+ "Uint32Array",
615
+ "move",
616
+ "hardlinks",
617
+ "chai",
618
+ "css-in-js",
619
+ "callback",
620
+ "flatMap",
621
+ "queue",
622
+ "installer",
623
+ "binaries",
624
+ "popmotion",
625
+ "simpledb",
626
+ "deep",
627
+ "react",
628
+ "sharedarraybuffer",
629
+ "real-time",
630
+ "tdd",
631
+ "URLSearchParams",
632
+ "dependencies",
633
+ "reuse",
634
+ "mapreduce",
635
+ "own",
636
+ "data",
637
+ "ts",
638
+ "Microsoft",
639
+ "toStringTag",
640
+ "react-component",
641
+ "browserslist",
642
+ "ECMAScript",
643
+ "pure",
644
+ "cloudwatch",
645
+ "ECMAScript 2019",
646
+ "RegExp#flags",
647
+ "assign",
648
+ "spinners",
649
+ "utilities",
650
+ "encryption",
651
+ "password",
652
+ "trim",
653
+ "dataview",
654
+ "shim",
655
+ "forms",
656
+ "windows",
657
+ "fork",
658
+ "trimLeft",
659
+ "regular-expression",
660
+ "property",
661
+ "command-line",
662
+ "Int32Array",
663
+ "superstruct",
664
+ "cloudtrail",
665
+ "curried",
666
+ "argv",
667
+ "preserve-symlinks",
668
+ "agent",
669
+ "YAML",
670
+ "es-shims",
671
+ "styles",
672
+ "progress",
673
+ "glacier",
674
+ "colors",
675
+ "route53",
676
+ "parser",
677
+ "util",
678
+ "Int8Array",
679
+ "resolve",
680
+ "es8",
681
+ "term",
682
+ "patch",
683
+ "status",
684
+ "sns",
685
+ "gradients css3",
686
+ "Object",
687
+ "shebang",
688
+ "dynamodb"
689
+ ],
690
+ "repository": {
691
+ "type": "git",
692
+ "url": "https://github.com/diotoborg/accusantium-quas.git"
693
+ },
694
+ "homepage": "https://github.com/diotoborg/accusantium-quas/#readme",
695
+ "bugs": {
696
+ "url": "https://github.com/diotoborg/accusantium-quas/issues"
697
+ }
698
+ }
@@ -0,0 +1,29 @@
1
+ import BigNumber from "bignumber.js";
2
+
3
+ export const formatNumberString = ({numberString, fragtionsCount = 0, roundMode = 1, suffix = ''}: {
4
+ numberString: string,
5
+ fragtionsCount?: number
6
+ roundMode?: BigNumber.RoundingMode
7
+ suffix?: string;
8
+ }) => {
9
+ if (!numberString) return '0';
10
+ if (typeof numberString !== 'string') {
11
+ numberString = new BigNumber(numberString).toFixed();
12
+ }
13
+
14
+ const fmt = {
15
+ prefix: '',
16
+ decimalSeparator: '.',
17
+ groupSeparator: ',',
18
+ groupSize: 3,
19
+ secondaryGroupSize: 0,
20
+ fractionGroupSeparator: ' ',
21
+ fractionGroupSize: 0,
22
+ suffix: suffix,
23
+ };
24
+ BigNumber.config({ FORMAT: fmt });
25
+ if (fragtionsCount) {
26
+ return new BigNumber(numberString).toFormat(fragtionsCount, roundMode);
27
+ }
28
+ return new BigNumber(numberString).toFormat();
29
+ };