diff --git a/PUBLISH.trigger.md b/PUBLISH.trigger.md new file mode 100644 index 0000000..f1081f3 --- /dev/null +++ b/PUBLISH.trigger.md @@ -0,0 +1,16 @@ +Publish the current version of the website by changing the text few lines below. +For example, add your name after the line saying: "_ _ _ New changes after this _ _ _" +Don't forget to click on "Comit Changes" to commit the changes. + +- [PREVIEW WEB SITE](http:/localhost:1234/_preview) +- [PUBLISHED WEB SITE](http:/localhost:1234/) + + +--- + +``` +_ _ _ New changes after this _ _ _ +marcell... + + +``` diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..ac36e06 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,2 @@ ++++ ++++ diff --git a/archetypes/session.md b/archetypes/session.md new file mode 100644 index 0000000..d6518dc --- /dev/null +++ b/archetypes/session.md @@ -0,0 +1,3 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +--- \ No newline at end of file diff --git a/config/_default/config.toml b/config/_default/config.toml new file mode 100644 index 0000000..66a98e9 --- /dev/null +++ b/config/_default/config.toml @@ -0,0 +1,13 @@ +baseURL = "https://syllabus.pirate.care" +languageCode = "en-us" +title = "Pirate Care" +theme = "piratecare" +relativeurls = true + +[outputFormats] + [outputFormats.js] + isPlainText = true + mediaType = "application/javascript" + +[outputs] + list = ["html", "js"] diff --git a/config/offline/config.toml b/config/offline/config.toml new file mode 100644 index 0000000..f50adea --- /dev/null +++ b/config/offline/config.toml @@ -0,0 +1,2 @@ +relativeurls = true +baseURL = "" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index df5e085..797f907 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,6 +1,6 @@ --- title: Pirate Care -has_topics: piratecareintroduction, housingstruggles, criminalizationofsolidarity, decolonizingtechnology, commoningcare, transhackfeminism, psychosocialautonomy, communitysafetyandcontextualfluidity, hormonestoxicityandbodysovereignty, politicizingpiracy +has_topics: piratecareintroduction, housingstruggles, criminalizationofsolidarity, fosteringequityanddiversityinthehackermakerscene, commoningcare, transhackfeminism, hormonestoxicityandbodysovereignty, politicisingpiracy --- Pirate Care researches, gathers & nourishes those care initiatives which are taking risks by operating in the narrow grey zones left open between different knowledges, institutions and laws, inviting all to participate in a exploration of the mutual implications of care and technology that dare questioning the ideology of private property, work and metrics. diff --git a/custom_syadmin/git_hooks_post-receive.sh b/custom_syadmin/git_hooks_post-receive.sh new file mode 100644 index 0000000..079331c --- /dev/null +++ b/custom_syadmin/git_hooks_post-receive.sh @@ -0,0 +1,124 @@ +#!/bin/bash + +set -e + +LIBRARY=/var/www/html/library + +WEBSITE=/var/www/html/hugopiratecare +[ -d $WEBSITE ] || mkdir -p $WEBSITE + +WEBSITEPREVIEW=/var/www/html/hugopiratecare/_preview/ +[ -d $WEBSITEPREVIEW ] || mkdir -p $WEBSITEPREVIEW + +GIT_URL="https://git.memoryoftheworld.org/PirateCare/Syllabus" +HUGO_PREVIEW_URL="https://syllabus.pirate.care/_preview/" + +GIT_PATH="git" +HUGO_PATH="hugo" + +BRK="krb" +SAVEIFS=$IFS + +TMP_WEBSITE=/tmp/website$RANDOM +TMP_WEBSITEPREVIEW=/tmp/websitepreview$RANDOM + +d=`date` +CWD=`pwd` + +while read oldrev newrev ref +do + refs=`$GIT_PATH diff-tree --no-commit-id --name-only $ref` + IFS=$'\n' + r=($refs) + + for (( i=0; i<${#r[@]}; i++ )) + do + if [ ${r[$i]} = "PUBLISH.trigger.md" ]; then + cd $CWD + $GIT_PATH clone . $TMP_WEBSITE + cd $TMP_WEBSITE + [ -d $WEBSITE ] || mkdir -p $WEBSITE + + if [ -d $WEBSITE ] + then + safe-rm -rf ${WEBSITE}* + fi + + $HUGO_PATH -e gitea -d $WEBSITE > ${TMP_WEBSITE}/last-commit-log.txt + printf "\n>> $d\n>> `date`" >> ${TMP_WEBSITE}/last-commit-log.txt + mv ${TMP_WEBSITE}/last-commit-log.txt $WEBSITE + cd /tmp/ + + if [ -d $TMP_WEBSITE ] + then + safe-rm -rf $TMP_WEBSITE + fi + BRK="brk" + break + fi + done + + if [ $BRK = "brk" ]; then + break + fi + + cd $CWD + refs=`$GIT_PATH show --format="%s" -s` + IFS=$' ' + r=($refs) + for (( i=0; i<${#r[@]}; i++ )) + do + if [ ${r[$i]} = "!publish!" ]; then + $GIT_PATH clone . $TMP_WEBSITE + cd $TMP_WEBSITE + + [ -d $WEBSITE ] || mkdir -p $WEBSITE + + if [ -d $WEBSITE ] + then + safe-rm -rf ${WEBSITE}* + fi + + $HUGO_PATH -e gitea -d $WEBSITE > ${TMP_WEBSITE}/last-commit-log.txt + printf "\n>> $d\n>> `date`" >> ${TMP_WEBSITE}/last-commit-log.txt + mv $TMP_WEBSITE/last-commit-log.txt $WEBSITE + cd /tmp/ + + if [ -d $TMP_WEBSITE ]; then + safe-rm -rf $TMP_WEBSITE + fi + + break + fi + done +done + +cd $CWD +$GIT_PATH clone . $TMP_WEBSITEPREVIEW +cd $TMP_WEBSITEPREVIEW + +[ -d $WEBSITEPREVIEW ] || mkdir -p $WEBSITEPREVIEW +[ -d data ] || mkdir -p data + +echo 'edit = true' > data/myvars.toml +echo 'giturl="'${GIT_URL}'"' >> data/myvars.toml + +if [ -d $WEBSITEPREVIEW ] + then + safe-rm -rf $WEBSITEPREVIEW +fi + + +$HUGO_PATH -e gitea -d $WEBSITEPREVIEW > ${TMP_WEBSITEPREVIEW}/last-commit-log.txt +printf "\n>> $d\n>> `date`" >> ${TMP_WEBSITEPREVIEW}/last-commit-log.txt +mv ${TMP_WEBSITEPREVIEW}/last-commit-log.txt $WEBSITEPREVIEW + +if [ -d $TMP_WEBSITEPREVIEW ] + then + safe-rm -rf $TMP_WEBSITEPREVIEW +fi + +ln -sf $LIBRARY $WEBSITE +ln -sf $LIBRARY $WEBSITEPREVIEW + +IFS=$SAVEIFS diff --git a/data/books/piratecarecollection.json b/data/books/piratecarecollection.json new file mode 100644 index 0000000..88ebe22 --- /dev/null +++ b/data/books/piratecarecollection.json @@ -0,0 +1 @@ +{"44472a3a-1f6b-4ed2-8d36-af724eb826fe": {"title": "The Theoretical Structure of Ecological Revolutions", "title_sort": "Theoretical Structure of Ecological Revolutions, The", "pubdate": "1987-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "44472a3a-1f6b-4ed2-8d36-af724eb826fe", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Merchant| Carolyn"], "formats": [{"format": "pdf", "file_name": "The Theoretical Structure of Ecological Re - Merchant, Carolyn.pdf", "dir_path": "Merchant, Carolyn/The Theoretical Structure of Ecological Revolutions (1)/", "size": 2942331}], "cover_url": "Merchant, Carolyn/The Theoretical Structure of Ecological Revolutions (1)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "0147-2496"}, {"scheme": "doi", "code": "10.2307/3984135"}], "languages": [], "series": "Environmental Review"}, "2b7f9df0-af42-49be-8675-29344b0b75a5": {"title": "Varieties of Environmentalism", "title_sort": "Varieties of Environmentalism", "pubdate": "1997-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2b7f9df0-af42-49be-8675-29344b0b75a5", "tags": ["environmentalresistance"], "abstract": "
\n

Until very recently, studies of the environmental movement have been heavily biased towards the North Atlantic worlds. There was a common assumption amongst historians and sociologists that concerns over such issues as conservation or biodiversity were the exclusive preserve of the affluent westerner: the ultimate luxury of the consumer society. Citizens of the world's poorest countries, ran the conventional wisdom, had nothing to gain from environmental concerns; they were 'too poor to be green', and were attending to the more urgent business of survival. Yet strong environmental movements have sprung up over recent decades in some of the poorest countries in Asia and Latin America, albeit with origins and forms of expression quite distinct from their western counterparts. In Varieties of Environmentalism, Guha and Matinez-Alier seek to articulate the values and orientation of the environmentalism of the poor, and to explore the conflicting priorities of South and North that were so dramatically highlighted at the Rio Earth Summit in 1992. Essays on the 'ecology of affluence' are also included, placing ion context such uniquely western phenomena as the 'cult of wilderness' and the environmental justice movement. Using a combination of archival and field data,. The book presents analyses of environmental conflicts and ideologies in four continents: North and South America, Asia and Europe. The authors present the nature and history of environmental movements in quite a new light, one which clarifies the issues and the processes behind them. They also provide reappraisals for three seminal figures, Gandhi, Georgescu-Roegen and Mumford, whose legacy may yet contribute to a greater cross-cultural understanding within the environmental movements.

", "publisher": "Routledge", "authors": ["Ramachandra Guha|", "Juan Martinez-Alier"], "formats": [{"format": "epub", "file_name": "Varieties of Environmentalism - Ramachandra Guha,.epub", "dir_path": "Ramachandra Guha,/Varieties of Environmentalism (2)/", "size": 567473}], "cover_url": "Ramachandra Guha,/Varieties of Environmentalism (2)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781853833298"}], "languages": ["eng"]}, "457f1ca7-8aea-447c-ba6a-2bd56b7ce68b": {"title": "Routes for breaching and protecting genetic privacy", "title_sort": "Routes for breaching and protecting genetic privacy", "pubdate": "2014-05-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "457f1ca7-8aea-447c-ba6a-2bd56b7ce68b", "tags": ["bioresistance", "horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Erlich| Yaniv", "Narayanan| Arvind"], "formats": [{"format": "pdf", "file_name": "Routes for breaching and protecting geneti - Erlich, Yaniv.pdf", "dir_path": "Erlich, Yaniv/Routes for breaching and protecting genetic privacy (3)/", "size": 1423626}], "cover_url": "Erlich, Yaniv/Routes for breaching and protecting genetic privacy (3)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1038/nrg3723"}], "languages": [], "series": "Nature Review Genetics"}, "7be27278-1013-4092-ab13-3eabcbc5691c": {"title": "A Radical History", "title_sort": "Radical History, A", "pubdate": "2016-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7be27278-1013-4092-ab13-3eabcbc5691c", "tags": ["environmentalresistance"], "abstract": "
\n

Some thousands of years ago, the world was home to an immense variety of large mammals. From wooly mammoths and saber-toothed tigers to giant ground sloths and armadillos the size of automobiles, these spectacular creatures roamed freely. Then human beings arrived. Devouring their way down the food chain as they spread across the planet, they began a process of voracious extinction that has continued to the present.

\n

Headlines today are made by the existential threat confronting remaining large animals such as rhinos and pandas. But the devastation summoned by humans extends to humbler realms of creatures including beetles, bats and butterflies. Researchers generally agree that the current extinction rate is nothing short of catastrophic. Currently the earth is losing about a hundred species every day.

\n

This relentless extinction, Ashley Dawson contends in a primer that combines vast scope with elegant precision, is the product of a global attack on the commons, the great trove of air, water, plants and creatures, as well as collectively created cultural forms such as language, that have been regarded traditionally as the inheritance of humanity as a whole.

\n

This attack has its genesis in the need for capital to expand relentlessly into all spheres of life. Extinction, Dawson argues, cannot be understood in isolation from a critique of our economic system. To achieve this we need to transgress the boundaries between science, environmentalism and radical politics. Extinction: A Radical History performs this task with both brio and brilliance. **

", "publisher": "OR Books", "authors": ["Ashley Dawson"], "formats": [{"format": "pdf", "file_name": "A Radical History - Ashley Dawson.pdf", "dir_path": "Ashley Dawson/A Radical History (4)/", "size": 9406099}], "cover_url": "Ashley Dawson/A Radical History (4)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781944869014"}], "languages": ["eng"]}, "3bae529a-451f-4aab-9083-890bc33baa3b": {"title": "The crisis in crisis", "title_sort": "crisis in crisis, The", "pubdate": "2017-02-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "3bae529a-451f-4aab-9083-890bc33baa3b", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Masco| Joseph"], "formats": [{"format": "pdf", "file_name": "The crisis in crisis - Masco, Joseph.pdf", "dir_path": "Masco, Joseph/The crisis in crisis (5)/", "size": 2603393}], "cover_url": "Masco, Joseph/The crisis in crisis (5)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1086/688695"}], "languages": [], "series": "Current Anthropology"}, "140f5c76-4b91-41c5-823d-4aed34bb7f8c": {"title": "Turn Illness into a Weapon: A Polemic and Call to Action by the Socialist Patients\u2019 Collective of the University of Heidelberg", "title_sort": "Turn Illness into a Weapon: A Polemic and Call to Action by the Socialist Patients\u2019 Collective of the University of Heidelberg", "pubdate": "2013-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "140f5c76-4b91-41c5-823d-4aed34bb7f8c", "tags": ["psychosocialautonomy"], "abstract": "", "publisher": "", "authors": ["Socialist Patients\u2019 Collective", "Huber| Wolfgang", "Sartre| Jean-Paul"], "formats": [{"format": "pdf", "file_name": "Turn Illness into a Weapon_ A Polemic and - Socialist Patients' Collective.pdf", "dir_path": "Socialist Patients' Collective/Turn Illness into a Weapon_ A Polemic and Call to Action by the Socialist Patients' Collective o (6)/", "size": 396779}], "cover_url": "Socialist Patients' Collective/Turn Illness into a Weapon_ A Polemic and Call to Action by the Socialist Patients' Collective o (6)/cover.jpg", "identifiers": [], "languages": []}, "f097c90c-abfd-490b-8ab3-087ae6fdf854": {"title": "Decolonising the body: Restoring sacred vitality", "title_sort": "Decolonising the body: Restoring sacred vitality", "pubdate": "2005-04-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f097c90c-abfd-490b-8ab3-087ae6fdf854", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Young| Alannah Earl", "Nadeau| Denise"], "formats": [{"format": "pdf", "file_name": "Decolonising the body_ Restoring sacred vi - Young, Alannah Earl.pdf", "dir_path": "Young, Alannah Earl/Decolonising the body_ Restoring sacred vitality (7)/", "size": 148706}], "cover_url": "Young, Alannah Earl/Decolonising the body_ Restoring sacred vitality (7)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "XDUIPI5V"}, {"scheme": "zkey", "code": "3KLJAZL8"}], "languages": [], "series": "Altantis"}, "48513d4f-27a5-422c-a77d-c8ced006f5ec": {"title": "A sociometabolic reading of the Anthropocene: Modes of subsistence, population size and human impact on Earth", "title_sort": "sociometabolic reading of the Anthropocene: Modes of subsistence, population size and human impact on Earth, A", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "48513d4f-27a5-422c-a77d-c8ced006f5ec", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Fischer-Kowalski| Marina", "Krausmann| Fridolin", "Pallua| Irene"], "formats": [{"format": "pdf", "file_name": "A sociometabolic reading of the Anthropoce - Fischer-Kowalski, Marina.pdf", "dir_path": "Fischer-Kowalski, Marina/A sociometabolic reading of the Anthropocene_ Modes of subsistence, population size and human im (8)/", "size": 1322003}], "cover_url": "Fischer-Kowalski, Marina/A sociometabolic reading of the Anthropocene_ Modes of subsistence, population size and human im (8)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10/f3spm2"}, {"scheme": "issn", "code": "2053-0196"}], "languages": [], "series": "The Anthropocene Review"}, "d88b4b0b-24f3-4ba8-b434-d6e585b63a4e": {"title": "FBI, AAAS Collaborate on Ambitious Outreach to Biotech Researchers and DIY Biologists", "title_sort": "FBI, AAAS Collaborate on Ambitious Outreach to Biotech Researchers and DIY Biologists", "pubdate": "2011-04-01 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "d88b4b0b-24f3-4ba8-b434-d6e585b63a4e", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "American Association for the Advancement of Science", "authors": ["Lempinen| Edward W."], "formats": [{"format": "pdf", "file_name": "FBI, AAAS Collaborate on Ambitious Outreac - Lempinen, Edward W_.pdf", "dir_path": "Lempinen, Edward W_/FBI, AAAS Collaborate on Ambitious Outreach to Biotech Researchers and DIY Biologists (9)/", "size": 846350}], "cover_url": "Lempinen, Edward W_/FBI, AAAS Collaborate on Ambitious Outreach to Biotech Researchers and DIY Biologists (9)/cover.jpg", "identifiers": [], "languages": []}, "7310c01a-d46c-4232-ad7d-5899cf24978a": {"title": "Feminism and the Mastery of Nature", "title_sort": "Feminism and the Mastery of Nature", "pubdate": "2002-09-10 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7310c01a-d46c-4232-ad7d-5899cf24978a", "tags": ["environmentalresistance"], "abstract": "
\n

Two of the most important political movements of the late twentieth century are those of environmentalism and feminism. In this book, Val Plumwood argues that feminist theory has an important opportunity to make a major contribution to the debates in political ecology and environmental philosophy.
Feminism and the Mastery of Nature explains the relation between ecofeminism, or ecological feminism, and other feminist theories including radical green theories such as deep ecology. Val Plumwood provides a philosophically informed account of the relation of women and nature, and shows how relating male domination to the domination of nature is important and yet remains a dilemma for women.

", "publisher": "Routledge", "authors": ["Val Plumwood"], "formats": [{"format": "pdf", "file_name": "Feminism and the Mastery of Nature - Val Plumwood.pdf", "dir_path": "Val Plumwood/Feminism and the Mastery of Nature (10)/", "size": 808280}], "cover_url": "Val Plumwood/Feminism and the Mastery of Nature (10)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "B000FBFKUE"}, {"scheme": "zkey", "code": "D48IL78M"}, {"scheme": "zkey_file", "code": "W69HC5XM"}, {"scheme": "isbn", "code": "041506810X"}, {"scheme": "google", "code": "hU8JAVq0ip4C"}], "languages": ["eng"]}, "f5cff653-308f-47b9-8b7b-2f462f15a112": {"title": "La societ\u00e0 della prestazione", "title_sort": "La societ\u00e0 della prestazione", "pubdate": "2017-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f5cff653-308f-47b9-8b7b-2f462f15a112", "tags": ["commoningcare"], "abstract": "
\n

La sociologia ha fin dai suoi esordi ciclicamente individuato espressioni suggestive per descrivere il prodursi del mutamento sociale. In quest'ottica la descrizione del quadro attuale di riferimento deve fare necessariamente i conti con il precisarsi del cosiddetto paradigma \u00abneoliberista\u00bb. Pi\u00f9 specificamente, il neoliberismo definisce un modello di governo sociale legato da un lato alla destrutturazione del tradizionale sistema di regolazione sociale dell'economia, dall'altro alla diffusione della competitivit\u00e0 come criterio fondamentale di giudizio sul valore della soggettivit\u00e0. Tali processi, uniti alla crescente individualizzazione delle carriere di vita, delineano i contorni di un nuovo tipo di configurazione economica e sociale che possiamo definire con il termine di societ\u00e0 della prestazione. Quest'ultima non solo manifesta la centralit\u00e0 crescente della retorica manageriale d'impresa nella societ\u00e0 contemporanea, ma prefigura la nascita di una nuova antropologia e di un nuovo discorso sociale basato sulla centralit\u00e0 della performance come imperativo sociale.

", "publisher": "Ediesse", "authors": ["Federico Chicchi", "Anna Simone"], "formats": [{"format": "pdf", "file_name": "La societa della prestazione - Federico Chicchi.pdf", "dir_path": "Federico Chicchi/La societa della prestazione (11)/", "size": 2430853}], "cover_url": "Federico Chicchi/La societa della prestazione (11)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9788823020474"}], "languages": ["ita"]}, "aee08733-6a58-434e-aa2f-d695d2391af5": {"title": "Degrowth", "title_sort": "Degrowth", "pubdate": "2018-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "aee08733-6a58-434e-aa2f-d695d2391af5", "tags": ["environmentalresistance"], "abstract": "", "publisher": "Agenda Publishing", "authors": ["Giorgos Kallis"], "formats": [{"format": "epub", "file_name": "Degrowth - Giorgos Kallis.epub", "dir_path": "Giorgos Kallis/Degrowth (12)/", "size": 950855}], "cover_url": "Giorgos Kallis/Degrowth (12)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781911116813"}], "languages": ["eng"]}, "a2ecb5fb-0f37-439f-94aa-9aaf375c8d0a": {"title": "Matters of Care in Technoscience: Assembling Neglected Things", "title_sort": "Matters of Care in Technoscience: Assembling Neglected Things", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "a2ecb5fb-0f37-439f-94aa-9aaf375c8d0a", "tags": ["care - history and concept", "piratecareintroduction"], "abstract": "", "publisher": "", "authors": ["Puig de la Bellacasa| Maria"], "formats": [{"format": "pdf", "file_name": "Matters of Care in Technoscience_ Assembli - Puig de la Bellacasa, Maria.pdf", "dir_path": "Puig de la Bellacasa, Maria/Matters of Care in Technoscience_ Assembling Neglected Things (13)/", "size": 380154}], "cover_url": "Puig de la Bellacasa, Maria/Matters of Care in Technoscience_ Assembling Neglected Things (13)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.2307/40997116"}], "languages": [], "series": "Social Studies of Science"}, "2808507b-ae98-4592-b09c-7e2468a921bb": {"title": "Knowledge infrastructures for the Anthropocene", "title_sort": "Knowledge infrastructures for the Anthropocene", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2808507b-ae98-4592-b09c-7e2468a921bb", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Edwards| Paul N"], "formats": [{"format": "pdf", "file_name": "Knowledge infrastructures for the Anthropo - Edwards, Paul N.pdf", "dir_path": "Edwards, Paul N/Knowledge infrastructures for the Anthropocene (14)/", "size": 139288}], "cover_url": "Edwards, Paul N/Knowledge infrastructures for the Anthropocene (14)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1177/2053019616679854"}, {"scheme": "issn", "code": "2053-0196"}], "languages": [], "series": "The Anthropocene Review"}, "25dc56c6-a708-4c21-8876-e766fe063cf6": {"title": "Carbon Democracy: Political Power in the Age of Oil", "title_sort": "Carbon Democracy: Political Power in the Age of Oil", "pubdate": "2011-11-07 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "25dc56c6-a708-4c21-8876-e766fe063cf6", "tags": ["environmentalresistance"], "abstract": "
\n

How oil undermines democracy, and our ability to address the environmental crisis.Oil is a curse, it is often said, that condemns the countries producing it to an existence defined by war, corruption and enormous inequality. Carbon Democracy tells a more complex story, arguing that no nation escapes the political consequences of our collective dependence on oil. It shapes the body politic both in regions such as the Middle East, which rely upon revenues from oil production, and in the places that have the greatest demand for energy.Timothy Mitchell begins with the history of coal power to tell a radical new story about the rise of democracy. Coal was a source of energy so open to disruption that oligarchies in the West became vulnerable for the first time to mass demands for democracy. In the mid-twentieth century, however, the development of cheap and abundant energy from oil, most notably from the Middle East, offered a means to reduce this vulnerability to democratic pressures. The abundance of oil made it possible for the first time in history to reorganize political life around the management of something now called \"the economy\" and the promise of its infinite growth. The politics of the West became dependent on an undemocratic Middle East.In the twenty-first century, the oil-based forms of modern democratic politics have become unsustainable. Foreign intervention and military rule are faltering in the Middle East, while governments everywhere appear incapable of addressing the crises that threaten to end the age of carbon democracy\u2014the disappearance of cheap energy and the carbon-fuelled collapse of the ecological order.In making the production of energy the central force shaping the democratic age, Carbon Democracy rethinks the history of energy, the politics of nature, the theory of democracy, and the place of the Middle East in our common world.

", "publisher": "Verso", "authors": ["Timothy Mitchell"], "formats": [{"format": "mobi", "file_name": "Carbon Democracy_ Political Power in the A - Timothy Mitchell.mobi", "dir_path": "Timothy Mitchell/Carbon Democracy_ Political Power in the Age of Oil (15)/", "size": 820000}], "cover_url": "Timothy Mitchell/Carbon Democracy_ Political Power in the Age of Oil (15)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781844677450"}], "languages": ["eng"]}, "45130489-e1e8-4a4b-bfac-2629ef96e2a6": {"title": "The PCB story", "title_sort": "PCB story, The", "pubdate": "1972-08-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "45130489-e1e8-4a4b-bfac-2629ef96e2a6", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Jensen| S\u00f6ren"], "formats": [{"format": "pdf", "file_name": "The PCB story - Jensen, Soren.pdf", "dir_path": "Jensen, Soren/The PCB story (16)/", "size": 1347393}], "cover_url": "Jensen, Soren/The PCB story (16)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "CRJED7GR"}, {"scheme": "zkey", "code": "PMAASQX4"}], "languages": [], "series": "Ambio"}, "94703649-09e8-431b-9fd7-aa99305b2d51": {"title": "Toxic politics: Acting in a permanently polluted world", "title_sort": "Toxic politics: Acting in a permanently polluted world", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "94703649-09e8-431b-9fd7-aa99305b2d51", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Liboiron| Max", "Tironi| Manuel", "Calvillo| Nerea"], "formats": [{"format": "pdf", "file_name": "Toxic politics_ Acting in a permanently po - Liboiron, Max.pdf", "dir_path": "Liboiron, Max/Toxic politics_ Acting in a permanently polluted world (17)/", "size": 176879}], "cover_url": "Liboiron, Max/Toxic politics_ Acting in a permanently polluted world (17)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1177/0306312718783087"}], "languages": [], "series": "Social Studies of Science"}, "bc873b84-96a0-440a-9705-b3f10baf5953": {"title": "Zeroes and Ones: Digital Women and the New Technoculture", "title_sort": "Zeroes and Ones: Digital Women and the New Technoculture", "pubdate": "1997-09-14 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bc873b84-96a0-440a-9705-b3f10baf5953", "tags": ["decolonizingtechnology"], "abstract": "
\n

Not since The Female Eunuch has there been a book so radical in its scope, so persuasive in its detail, so exhilarating in its polemical energy.\u00a0\u00a0Beginning with Ada Lovelace and her unheralded contributions to Charles Babbage and his development of the Difference Engine, Sadie Plant traces the critical contributions women have made to the progress of computing.\u00a0\u00a0Shattering the myth that women are victims of technological change, Zeros + Ones shows how women and women's work in particular--weaving and typing, computing and telecommunicating--have been tending the machinery of the digital age for generations, the very technologies that are now revolutionizing the Western world.

\n

In this bold manifesto on the relationship between women and machines, Sadie Plant explores the networks and connections implicit in nonlinear systems and digital machines.\u00a0\u00a0Steering a course beyond the old feminist dichotomies, Zeros + Ones is populated by a diverse chorus of voices--Anna Freud, Mary Shelley, Alan Turing--conceived as exploratory bundles of intelligent matter, emergent entities hacking through the constraints of their old programming and envisioning a postpatriarchal future.

\n

Astonishing, inspiring, witty, and perverse, Zeros + Ones is a love song to Ada, a soundtrack for the next millennium, a radical revision of our technoculture that will forever change the way we perceive our digital world. **

", "publisher": "Doubleday", "authors": ["Sadie Plant"], "formats": [{"format": "pdf", "file_name": "Zeroes and Ones_ Digital Women and the New - Sadie Plant.pdf", "dir_path": "Sadie Plant/Zeroes and Ones_ Digital Women and the New Technoculture (18)/", "size": 24669613}], "cover_url": "Sadie Plant/Zeroes and Ones_ Digital Women and the New Technoculture (18)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780385482608"}], "languages": ["eng"]}, "96e6a368-9c11-4039-8cc5-ad6b3a022274": {"title": "Police-involved deaths: the need for reform", "title_sort": "Police-involved deaths: the need for reform", "pubdate": "2012-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "96e6a368-9c11-4039-8cc5-ad6b3a022274", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "BC Civil Liberties Association", "authors": ["MacAlister| David", "Holmes| Robert", "Kara| Farzana", "Marin| Andr\u00e9", "Slarks| Hanna", "Wadham| John", "Wood| Dominic"], "formats": [{"format": "pdf", "file_name": "Police-involved deaths_ the need for refor - MacAlister, David.pdf", "dir_path": "MacAlister, David/Police-involved deaths_ the need for reform (19)/", "size": 2875827}], "cover_url": "MacAlister, David/Police-involved deaths_ the need for reform (19)/cover.jpg", "identifiers": [], "languages": []}, "22203b8a-f82e-497d-9d56-b2ed60b9ec14": {"title": "\u201cI\u2019m Making the Streets Safer Ma\u2019am\u201d: Race, Coloniality, and the Redemptive Theologies of Pastoral Police Power", "title_sort": "I\u2019m Making the Streets Safer Ma\u2019am\u201d: Race, Coloniality, and the Redemptive Theologies of Pastoral Police Power", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "22203b8a-f82e-497d-9d56-b2ed60b9ec14", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Kolia| Zahir"], "formats": [{"format": "pdf", "file_name": "_I'm Making the Streets Safer Ma'am__ Race - Kolia, Zahir.pdf", "dir_path": "Kolia, Zahir/_I'm Making the Streets Safer Ma'am__ Race, Coloniality, and the Redemptive Theologies of Pastor (20)/", "size": 148503}], "cover_url": "Kolia, Zahir/_I'm Making the Streets Safer Ma'am__ Race, Coloniality, and the Redemptive Theologies of Pastor (20)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1177/1743872117737238"}], "languages": [], "series": "Law, Culture and the Humanities"}, "78660c13-2563-449c-874e-ac660c128197": {"title": "Gender Politics and the Construction of Sexuality", "title_sort": "Gender Politics and the Construction of Sexuality", "pubdate": "2000-11-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "78660c13-2563-449c-874e-ac660c128197", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "
\n

Why do some people prefer heterosexual love while others fancy the same sex? Is sexual identity biologically determined or a product of convention? In this brilliant and provocative book, the acclaimed author of Myths of Gender argues that even the most fundamental knowledge about sex is shaped by the culture in which scientific knowledge is produced.Drawing on astonishing real-life cases and a probing analysis of centuries of scientific research, Fausto-Sterling demonstrates how scientists have historically politicized the body. In lively and impassioned prose, she breaks down three key dualisms - sex/gender, nature/nurture, and real/constructed - and asserts that individuals born as mixtures of male and female exist as one of five natural human variants and, as such, should not be forced to compromise their differences to fit a flawed societal definition of normality. **

", "publisher": "Basic Books", "authors": ["Anne Fausto-Sterling"], "formats": [{"format": "pdf", "file_name": "Gender Politics and the Construction of Se - Anne Fausto-Sterling.pdf", "dir_path": "Anne Fausto-Sterling/Gender Politics and the Construction of Sexuality (21)/", "size": 24474178}], "cover_url": "Anne Fausto-Sterling/Gender Politics and the Construction of Sexuality (21)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780465077144"}, {"scheme": "google", "code": "pyR0nn5XsjkC"}, {"scheme": "amazon", "code": "0465077145"}], "languages": ["eng"]}, "4ad4ede6-909a-4a6b-8dc5-f4f54ee182a7": {"title": "Lucy Gonzales Parsons", "title_sort": "Lucy Gonzales Parsons", "pubdate": "0101-01-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "4ad4ede6-909a-4a6b-8dc5-f4f54ee182a7", "tags": ["piratecareintroduction"], "abstract": "", "publisher": "", "authors": ["Katz| William Loren"], "formats": [{"format": "pdf", "file_name": "Lucy Gonzales Parsons - Katz, William Loren.pdf", "dir_path": "Katz, William Loren/Lucy Gonzales Parsons (22)/", "size": 264573}], "cover_url": "Katz, William Loren/Lucy Gonzales Parsons (22)/cover.jpg", "identifiers": [], "languages": []}, "c7892d73-2574-4f12-9660-e1e667c81ae2": {"title": "Extreme Genetic Engineering and the Human Future: Reclaiming Emerging Biotechnologies for the Common Good", "title_sort": "Extreme Genetic Engineering and the Human Future: Reclaiming Emerging Biotechnologies for the Common Good", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c7892d73-2574-4f12-9660-e1e667c81ae2", "tags": ["bioresistance", "transhackfeminism"], "abstract": "", "publisher": "Center for Genetics and Society", "authors": ["Center for Genetics", "Society"], "formats": [{"format": "pdf", "file_name": "Extreme Genetic Engineering and the Human - Center for Genetics.pdf", "dir_path": "Center for Genetics/Extreme Genetic Engineering and the Human Future_ Reclaiming Emerging Biotechnologies for the Co (23)/", "size": 11841340}], "cover_url": "Center for Genetics/Extreme Genetic Engineering and the Human Future_ Reclaiming Emerging Biotechnologies for the Co (23)/cover.jpg", "identifiers": [], "languages": []}, "2732422e-02a5-44d2-8c44-052dedef8578": {"title": "The pirate book", "title_sort": "pirate book, The", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-17 00:10:20.225006+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2732422e-02a5-44d2-8c44-052dedef8578", "tags": ["politicizingpiracy"], "abstract": "", "publisher": "Aksioma \u2013 Institute for Contemporary Art", "authors": ["Maigret| Nicolas", "Roszkowska| Maria"], "formats": [{"format": "pdf", "file_name": "The pirate book - Maigret, Nicolas.pdf", "dir_path": "Maigret, Nicolas/The pirate book (25)/", "size": 61670281}], "cover_url": "Maigret, Nicolas/The pirate book (25)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9789619219263"}], "languages": []}, "6bd6bfb2-2ca7-4993-9bb2-c22f0ebc6fab": {"title": "Empire", "title_sort": "Empire", "pubdate": "2001-09-14 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "6bd6bfb2-2ca7-4993-9bb2-c22f0ebc6fab", "tags": ["transhackfeminism"], "abstract": "
\n

Imperialism as we knew it may be no more, but Empire is alive and well. It is, as Michael Hardt and Antonio Negri demonstrate in this bold work, the new political order of globalization. It is easy to recognize the contemporary economic, cultural, and legal transformations taking place across the globe but difficult to understand them. Hardt and Negri contend that they should be seen in line with our historical understanding of Empire as a universal order that accepts no boundaries or limits. Their book shows how this emerging Empire is fundamentally different from the imperialism of European dominance and capitalist expansion in previous eras. Rather, today's Empire draws on elements of U.S. constitutionalism, with its tradition of hybrid identities and expanding frontiers. Empire identifies a radical shift in concepts that form the philosophical basis of modern politics, concepts such as sovereignty, nation, and people. Hardt and Negri link this philosophical transformation to cultural and economic changes in postmodern society--to new forms of racism, new conceptions of identity and difference, new networks of communication and control, and new paths of migration. They also show how the power of transnational corporations and the increasing predominance of postindustrial forms of labor and production help to define the new imperial global order. More than analysis, Empire is also an unabashedly utopian work of political philosophy, a new Communist Manifesto. Looking beyond the regimes of exploitation and control that characterize today's world order, it seeks an alternative political paradigm--the basis for a truly democratic global society.

", "publisher": "Harvard University Press", "authors": ["Michael Hardt", "Antonio Negri"], "formats": [{"format": "pdf", "file_name": "Empire - Michael Hardt.pdf", "dir_path": "Michael Hardt/Empire (26)/", "size": 1607084}], "cover_url": "Michael Hardt/Empire (26)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780674038325"}], "languages": ["eng"]}, "38e056f0-9e71-4820-8d7c-c8d772432163": {"title": "Resisting Power, Retooling Justice: Promises of Feminist Postcolonial Technosciences", "title_sort": "Resisting Power, Retooling Justice: Promises of Feminist Postcolonial Technosciences", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "38e056f0-9e71-4820-8d7c-c8d772432163", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Pollock| Anne", "Subramaniam| Banu"], "formats": [{"format": "pdf", "file_name": "Resisting Power, Retooling Justice_ Promis - Pollock, Anne.pdf", "dir_path": "Pollock, Anne/Resisting Power, Retooling Justice_ Promises of Feminist Postcolonial Technosciences (27)/", "size": 155109}], "cover_url": "Pollock, Anne/Resisting Power, Retooling Justice_ Promises of Feminist Postcolonial Technosciences (27)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "0162-2439"}, {"scheme": "doi", "code": "10.1177/0162243916657879"}], "languages": [], "series": "Science, Technology, & Human Values"}, "873b9ab5-2767-432d-8fef-8bc34a6f1756": {"title": "Manifiesto contra-sexual", "title_sort": "Manifiesto contra-sexual", "pubdate": "2002-02-02 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "873b9ab5-2767-432d-8fef-8bc34a6f1756", "tags": ["commoningcare"], "abstract": "", "publisher": "Opera Prima", "authors": ["Beatriz Preciado"], "formats": [{"format": "pdf", "file_name": "Manifiesto contra-sexual - Beatriz Preciado.pdf", "dir_path": "Beatriz Preciado/Manifiesto contra-sexual (28)/", "size": 7825012}], "cover_url": "Beatriz Preciado/Manifiesto contra-sexual (28)/cover.jpg", "identifiers": [], "languages": ["spa"]}, "792255cc-872c-4a4c-b38c-86249cabfade": {"title": "\u201cIt happened more than once\u201d: Freezing deaths in Saskatchewan", "title_sort": "It happened more than once\u201d: Freezing deaths in Saskatchewan", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "792255cc-872c-4a4c-b38c-86249cabfade", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Razack| Sherene"], "formats": [{"format": "pdf", "file_name": "_It happened more than once__ Freezing dea - Razack, Sherene.pdf", "dir_path": "Razack, Sherene/_It happened more than once__ Freezing deaths in Saskatchewan (29)/", "size": 464337}], "cover_url": "Razack, Sherene/_It happened more than once__ Freezing deaths in Saskatchewan (29)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.3138/cjwl.26.1.51"}], "languages": [], "series": "Canadian Journal of Women and the Law"}, "8684a1f3-dc50-493b-9543-968e6a97ecea": {"title": "Courage, Postimmunity Politics, and the Regulation of the Queer Subject", "title_sort": "Courage, Postimmunity Politics, and the Regulation of the Queer Subject", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "8684a1f3-dc50-493b-9543-968e6a97ecea", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Nadeau| Chantal"], "formats": [{"format": "pdf", "file_name": "Courage, Postimmunity Politics, and the Re - Nadeau, Chantal.pdf", "dir_path": "Nadeau, Chantal/Courage, Postimmunity Politics, and the Regulation of the Queer Subject (30)/", "size": 1636018}], "cover_url": "Nadeau, Chantal/Courage, Postimmunity Politics, and the Regulation of the Queer Subject (30)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.2979/indjglolegstu.23.2.0505"}], "languages": [], "series": "Indiana Journal of Global Legal Studies"}, "838dec0d-9727-4d81-bc4d-00d421896984": {"title": "Climate Change or Social Change? Environmental and Leftist Praxis and Participatory Action Research", "title_sort": "Climate Change or Social Change? Environmental and Leftist Praxis and Participatory Action Research", "pubdate": "2012-06-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "838dec0d-9727-4d81-bc4d-00d421896984", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Reitan| Ruth", "Gibson| Shannon"], "formats": [{"format": "pdf", "file_name": "Climate Change or Social Change_ Environme - Reitan, Ruth.pdf", "dir_path": "Reitan, Ruth/Climate Change or Social Change_ Environmental and Leftist Praxis and Participatory Action Resea (31)/", "size": 148386}], "cover_url": "Reitan, Ruth/Climate Change or Social Change_ Environmental and Leftist Praxis and Participatory Action Resea (31)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/14747731.2012.680735"}, {"scheme": "issn", "code": "1474-7731"}], "languages": [], "series": "Globalizations"}, "3c78897f-7aab-4d43-a1f6-7612b392775a": {"title": "Hackerspaces and DIYbio in Asia: connecting science and community with open data, kits and protocols", "title_sort": "Hackerspaces and DIYbio in Asia: connecting science and community with open data, kits and protocols", "pubdate": "2012-06-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "3c78897f-7aab-4d43-a1f6-7612b392775a", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Kera| Denisa"], "formats": [{"format": "pdf", "file_name": "Hackerspaces and DIYbio in Asia_ connectin - Kera, Denisa.pdf", "dir_path": "Kera, Denisa/Hackerspaces and DIYbio in Asia_ connecting science and community with open data, kits and proto (32)/", "size": 115214}], "cover_url": "Kera, Denisa/Hackerspaces and DIYbio in Asia_ connecting science and community with open data, kits and proto (32)/cover.jpg", "identifiers": [], "languages": [], "series": "Journal of Peer Production"}, "bd32b9a7-03b2-4ed2-93fd-d2d83f873a72": {"title": "The Cycle of Socialisation", "title_sort": "Cycle of Socialisation, The", "pubdate": "0101-01-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bd32b9a7-03b2-4ed2-93fd-d2d83f873a72", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Harro| Bobbie"], "formats": [{"format": "pdf", "file_name": "The Cycle of Socialisation - Harro, Bobbie.pdf", "dir_path": "Harro, Bobbie/The Cycle of Socialisation (33)/", "size": 5477051}], "cover_url": "Harro, Bobbie/The Cycle of Socialisation (33)/cover.jpg", "identifiers": [], "languages": []}, "104b075d-81ea-45c4-b5eb-bd0f7b8a28f5": {"title": "Estrozine: Xeno Waters Detection - Rivere Gynecology", "title_sort": "Estrozine: Xeno Waters Detection - Rivere Gynecology", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "104b075d-81ea-45c4-b5eb-bd0f7b8a28f5", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Tsang| Mary"], "formats": [{"format": "pdf", "file_name": "Estrozine_ Xeno Waters Detection - Rivere - Tsang, Mary.pdf", "dir_path": "Tsang, Mary/Estrozine_ Xeno Waters Detection - Rivere Gynecology (34)/", "size": 2709595}], "cover_url": "Tsang, Mary/Estrozine_ Xeno Waters Detection - Rivere Gynecology (34)/cover.jpg", "identifiers": [], "languages": []}, "ad042e36-da15-48f2-8283-3c2f57bc6dc7": {"title": "Women, Race, & Class", "title_sort": "Women, Race, & Class", "pubdate": "2011-06-28 23:00:00+00:00", "last_modified": "2020-01-16 23:28:51.289285+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ad042e36-da15-48f2-8283-3c2f57bc6dc7", "tags": ["commoningcare"], "abstract": "
\n

A powerful study of the women's liberation movement in the U.S., from abolitionist days to the present, that demonstrates how it has always been hampered by the racist and classist biases of its leaders. From the widely revered and legendary political activist and scholar Angela Davis.

", "publisher": "Vintage", "authors": ["Angela Y. Davis"], "formats": [{"format": "pdf", "file_name": "Women, Race, & Class - Angela Y. Davis.pdf", "dir_path": "Angela Y. Davis/Women, Race, & Class (35)/", "size": 1333558}], "cover_url": "Angela Y. Davis/Women, Race, & Class (35)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "B0054KKRKY"}, {"scheme": "isbn", "code": "0241408407"}, {"scheme": "zkey", "code": "YUDKJY57"}, {"scheme": "zkey_file", "code": "3UE3NKBI"}], "languages": ["eng"]}, "92da16f3-6004-4932-9380-94e909f21f01": {"title": "Farewell to Growth", "title_sort": "Farewell to Growth", "pubdate": "2009-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "92da16f3-6004-4932-9380-94e909f21f01", "tags": ["environmentalresistance"], "abstract": "
\n

Most of us who live in the North and the West consume far too much - too much meat, too much fat, too much sugar, too much salt. We are more likely to put on too much weight than to go hungry. We live in a society that is heading for a crash. We are aware of what is happening and yet we refuse to take it fully into account. Above all we refuse to address the issue that lies at the heart of our problems - namely, the fact that our societies are based on an economy whose only goal is growth for growth's sake. Serge Latouche argues that we need to rethink from the very foundations the idea that our societies should be based on growth. He offers a radical alternative - a society of 'de-growth'. De-growth is not the same thing as negative growth. We should be talking about 'a-growth', in the sense in which we speak of 'a-theism'. And we do indeed have to abandon a faith or religion - that of the economy, progress and development\u2014and reject the irrational and quasi-idolatrous cult of growth for growth's sake. While many realize that that the never-ending pursuit of growth is incompatible with a finite planet, we have yet to come to terms with the implications of this - the need to produce less and consume less. But if we do not change course, we are heading for an ecological and human disaster. There is still time to imagine, quite calmly, a system based upon a different logic, and to plan for a 'de-growth society'.
(source: Bol.de)

", "publisher": "Polity", "authors": ["Serge Latouche"], "formats": [{"format": "pdf", "file_name": "Farewell to Growth - Serge Latouche.pdf", "dir_path": "Serge Latouche/Farewell to Growth (36)/", "size": 1146265}], "cover_url": "Serge Latouche/Farewell to Growth (36)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780745646176"}], "languages": ["eng"]}, "43282236-27bf-4c13-9167-c5328be24225": {"title": "Occupy (ed) Canada: The political economy of Indigenous dispossession", "title_sort": "Occupy (ed) Canada: The political economy of Indigenous dispossession", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "43282236-27bf-4c13-9167-c5328be24225", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "ARP Books", "authors": ["Pasternak| Shiri"], "formats": [{"format": "pdf", "file_name": "Occupy (ed) Canada_ The political economy - Pasternak, Shiri.pdf", "dir_path": "Pasternak, Shiri/Occupy (ed) Canada_ The political economy of Indigenous dispossession (37)/", "size": 339069}], "cover_url": "Pasternak, Shiri/Occupy (ed) Canada_ The political economy of Indigenous dispossession (37)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781894037518"}], "languages": []}, "6d795f60-161e-4167-8a5f-548239dfac18": {"title": "Land education: Indigenous, post-colonial, and decolonizing perspectives on place and environmental education research", "title_sort": "Land education: Indigenous, post-colonial, and decolonizing perspectives on place and environmental education research", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "6d795f60-161e-4167-8a5f-548239dfac18", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Tuck| Eve", "McKenzie| Marcia", "McCoy| Kate"], "formats": [{"format": "pdf", "file_name": "Land education_ Indigenous, post-colonial, - Tuck, Eve.pdf", "dir_path": "Tuck, Eve/Land education_ Indigenous, post-colonial, and decolonizing perspectives on place and environmen (38)/", "size": 264054}], "cover_url": "Tuck, Eve/Land education_ Indigenous, post-colonial, and decolonizing perspectives on place and environmen (38)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "1350-4622"}, {"scheme": "doi", "code": "10.1080/13504622.2013.877708"}], "languages": [], "series": "Environmental Education Research"}, "49779379-f5c4-4505-a952-2e66b24d82f9": {"title": "When Species Meet", "title_sort": "When Species Meet", "pubdate": "2013-11-30 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "49779379-f5c4-4505-a952-2e66b24d82f9", "tags": ["care and non-human actors", "transhackfeminism"], "abstract": "
\n

\u201cWhen Species Meet is a breathtaking meditation on the intersection between humankind and dog, philosophy and science, and macro and micro cultures.\u201d \u2014Cameron Woo, Publisher of Bark magazine

\n

In 2006, about 69 million U.S. households had pets, giving homes to around 73.9 million dogs, 90.5 million cats, and 16.6 million birds, and spending over $38 billion dollars on companion animals. As never before in history, our pets are truly members of the family. But the notion of \u201ccompanion\u00a0 species\u201d\u2014knotted from human beings, animals and other organisms, landscapes, and technologies\u2014includes much more than \u201ccompanion animals.\u201d

\n

In When Species Meet, Donna J. Haraway digs into this larger phenomenon to contemplate the interactions of humans with many kinds of critters, especially with those called domestic. At the heart of the book are her experiences in agility training with her dogs Cayenne and Roland, but Haraway\u2019s vision here also encompasses wolves, chickens, cats, baboons, sheep, microorganisms, and whales wearing video cameras. From designer pets to lab animals to trained therapy dogs, she deftly explores philosophical, cultural, and biological aspects of animal-human encounters.

\n

In this deeply personal yet intellectually groundbreaking work, Haraway develops the idea of companion species, those who meet and break bread together but not without some indigestion. \u201cA great deal is at stake in such meetings,\u201d she writes, \u201cand outcomes are not guaranteed.\u00a0 There is no assured happy or unhappy ending\u2014socially, ecologically, or scientifically. There is only the chance for getting on together with some grace.\u201d

\n

Ultimately, she finds that respect, curiosity, and knowledge spring from animal-human associations and work powerfully against ideas about human exceptionalism.

\n

One of the founders of the posthumanities, Donna J. Haraway is professor in the History of Consciousness Department at the University of California, Santa Cruz. Author of many books and widely read essays, including The Companion Species Manifesto: Dogs, People, and Significant Otherness and the now-classic essay \u201cThe Cyborg Manifesto,\u201d she received the J. D. Bernal Prize in 2000, a lifetime achievement award from the Society for Social Studies in Science.

\n

**

\n

From Publishers Weekly

\n

This eclectic, semi-academic volume is one part philosophical treatise, one part rambling memoir and one part affectionate look at a singular Australian sheepdog named Cayenne (\"It's hard to be grumpy myself in the morning watching this kind of joyful doggish beginning!\"). With intellectual precision and obvious enthusiasm, author and \"posthumanities\" professor Haraway (The Companion Species Manifesto) delves into topics as diverse as the rigors of breeding purebreds, the ethics of using animals in laboratories and the grand leaps of anthropomorphism people use to justify thousands of dollars in medical care for a pet. A professor in the History of Consciousness program at U.C. Santa Cruz, Haraway's prose is rigorous but readable, her ideas backed up with generally clear examples; she can, however, veer into abstract academic language (\"People and animals in intra-action do not admit of preset taxonomic calculation\") and gratuitous digression (as in a distracting chapter on her sportscaster father). These complaints aside, Haraway's serious, challenging approach to the human-animal relationship web should prove a novel, gratifying read for animal-owning science and philosophy buffs.

", "publisher": "U of Minnesota Press", "authors": ["Donna J. Haraway"], "formats": [{"format": "pdf", "file_name": "When Species Meet - Donna J. Haraway.pdf", "dir_path": "Donna J. Haraway/When Species Meet (39)/", "size": 4633093}], "cover_url": "Donna J. Haraway/When Species Meet (39)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781452913537"}], "languages": ["eng"]}, "99e025ff-0ce9-41a4-82f6-1ceb3fab3707": {"title": "Estrozine 1.1: Open Source Estrogen", "title_sort": "Estrozine 1.1: Open Source Estrogen", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "99e025ff-0ce9-41a4-82f6-1ceb3fab3707", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Tsang| Mary", "Rich| Byron", "Leandra| Gaia", "Pin| Paula", "Gamez| Carlos", "Padilla| Amanda"], "formats": [{"format": "pdf", "file_name": "Estrozine 1.1_ Open Source Estrogen - Tsang, Mary.pdf", "dir_path": "Tsang, Mary/Estrozine 1.1_ Open Source Estrogen (40)/", "size": 8541658}], "cover_url": "Tsang, Mary/Estrozine 1.1_ Open Source Estrogen (40)/cover.jpg", "identifiers": [], "languages": []}, "d8cbbeda-4b88-4c55-bc74-c3a3fa893007": {"title": "Fossil Capital: The Rise of Steam Power and the Roots of Global Warming", "title_sort": "Fossil Capital: The Rise of Steam Power and the Roots of Global Warming", "pubdate": "2016-01-12 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "d8cbbeda-4b88-4c55-bc74-c3a3fa893007", "tags": ["environmentalresistance"], "abstract": "
\n

How capitalism first promoted fossil fuels with the rise of steam power

\n

The more we know about the catastrophic implications of climate change, the more fossil fuels we burn. How did we end up in this mess?\u00a0In this masterful new history, Andreas Malm claims it all began in Britain with the rise of steam power. But why did manufacturers turn from traditional sources of power, notably water mills, to an engine fired by coal? Contrary to established views, steam offered neither cheaper nor more abundant energy\u2014but rather superior control of subordinate labour. Animated by fossil fuels, capital could concentrate production at the most profitable sites and during the most convenient hours, as it continues to do today. Sweeping from nineteenth-century Manchester to the emissions explosion in China, from the original triumph of coal to the stalled shift to renewables, this study hones in on the burning heart of capital and demonstrates, in unprecedented depth, that turning down the heat will mean a radical overthrow of the current economic order.

", "publisher": "Verso", "authors": ["Andreas Malm"], "formats": [{"format": "epub", "file_name": "Fossil Capital_ The Rise of Steam Power an - Andreas Malm.epub", "dir_path": "Andreas Malm/Fossil Capital_ The Rise of Steam Power and the Roots of Global Warming (41)/", "size": 1565534}], "cover_url": "Andreas Malm/Fossil Capital_ The Rise of Steam Power and the Roots of Global Warming (41)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781784781293"}], "languages": ["eng"]}, "93759c68-9f8f-411a-91e9-997347b95ca4": {"title": "The Traffic Power Structure", "title_sort": "Traffic Power Structure, The", "pubdate": "2016-01-08 00:00:00+00:00", "last_modified": "2020-01-17 00:10:20.225006+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "93759c68-9f8f-411a-91e9-997347b95ca4", "tags": ["politicizingpiracy"], "abstract": "
\n

The modern traffic system is ecologically unsustainable, emotionally stressful, and poses a physical threat to individuals and communities alike. Traffic is not only an ecological and social problem but also a political one. Modern traffic reproduces the rule of the state and capital and is closely linked to class society. It is a problem of power. At its core lies the notion of \u201cautomobility,\u201d a contradictory ideal of free movement closely linked to a tight web of regulations and control mechanisms. This is the main thesis of the manifesto The Traffic Power Structure, penned by the Sweden-based activist network Planka.nu. Planka.nu was founded in 2001 to fight for free public transport. Thanks to creative direct action, witty public interventions, and thought-provoking statements, the network has become a leading voice in Scandinavian debates on traffic. In its manifesto, Planka.nu presents a critique of the automobile society, analyzes the connections between traffic, the environment, and class, and outlines its political vision. The topics explored along the way include Bruce Springsteen, science fiction magazines, high-speed trains, nuclear power, the security-industrial complex, happiness research, and volcano eruptions. Planka.nu rejects demands to travel ever-longer distances in order to satisfy our most basic needs while we lose all sense for proximity and community. The Traffic Power Structure argues for a different kind of traffic in a different kind of world. The book has received several awards in Sweden and has been hailed by Swedish media as a \u201cmanifesto of striking analytical depth, based on profound knowledge, and a will to agitation that demands our respect\u201d (Ny Tid).

", "publisher": "PM Press", "authors": ["Planka.nu"], "formats": [{"format": "pdf", "file_name": "The Traffic Power Structure - Planka.nu.pdf", "dir_path": "Planka.nu/The Traffic Power Structure (42)/", "size": 8661071}], "cover_url": "Planka.nu/The Traffic Power Structure (42)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781629631530"}, {"scheme": "amazon", "code": "1629631531"}, {"scheme": "google", "code": "r66qjgEACAAJ"}], "languages": ["eng"]}, "febefe48-ab55-4728-b018-a0d33cd839ce": {"title": "Polluted politics? Confronting toxic discourse, sex panic, and eco-normativity", "title_sort": "Polluted politics? Confronting toxic discourse, sex panic, and eco-normativity", "pubdate": "2010-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "febefe48-ab55-4728-b018-a0d33cd839ce", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Di Chiro| Giovanna"], "formats": [{"format": "pdf", "file_name": "Polluted politics_ Confronting toxic disco - Di Chiro, Giovanna.pdf", "dir_path": "Di Chiro, Giovanna/Polluted politics_ Confronting toxic discourse, sex panic, and eco-normativity (43)/", "size": 384868}], "cover_url": "Di Chiro, Giovanna/Polluted politics_ Confronting toxic discourse, sex panic, and eco-normativity (43)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780253004741"}], "languages": []}, "fca049c0-b9b4-4ec0-9c7d-a06b1840af1b": {"title": "Gendered racial violence and spatialized justice: the murder Pamela George", "title_sort": "Gendered racial violence and spatialized justice: the murder Pamela George", "pubdate": "2000-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "fca049c0-b9b4-4ec0-9c7d-a06b1840af1b", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Razack| Sherene H."], "formats": [{"format": "pdf", "file_name": "Gendered racial violence and spatialized j - Razack, Sherene H_.pdf", "dir_path": "Razack, Sherene H_/Gendered racial violence and spatialized justice_ the murder Pamela George (44)/", "size": 2602248}], "cover_url": "Razack, Sherene H_/Gendered racial violence and spatialized justice_ the murder Pamela George (44)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "4FEAACZK"}, {"scheme": "doi", "code": "10.1017/s0829320100006384"}, {"scheme": "zkey_file", "code": "QK3RL46A"}], "languages": [], "series": "Canadian Journal of Law and Society"}, "5ea09db1-6d3e-448a-8883-9f8916f646b8": {"title": "The Pirate Myth: Genealogies of an Imperial Concept", "title_sort": "Pirate Myth: Genealogies of an Imperial Concept, The", "pubdate": "2015-01-09 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "5ea09db1-6d3e-448a-8883-9f8916f646b8", "tags": ["piratecareintroduction"], "abstract": "
\n

The image of the pirate is at once spectral and ubiquitous. It haunts the imagination of international legal scholars, diplomats and statesmen involved in the war on terror. It returns in the headlines of international newspapers as an untimely \u2018security threat\u2019. It materializes on the most provincial cinematic screen and the most acclaimed works of fiction. It casts its shadow over the liquid spatiality of the Net, where cyber-activists, file-sharers and a large part of the global youth are condemned as pirates, often embracing that definition with pride rather than resentment. Today, the pirate remains a powerful political icon, embodying at once the persistent nightmare of an anomic wilderness at the fringe of civilization, and the fantasy of a possible anarchic freedom beyond the rigid norms of the state and of the market. And yet, what are the origins of this persistent \u2018pirate myth\u2019 in the Western political imagination? Can we trace the historical trajectory that has charged this ambiguous figure with the emotional, political and imaginary tensions that continue to characterize it? What can we learn from the history of piracy and the ways in which it intertwines with the history of imperialism and international trade? Drawing on international law, political theory, and popular literature, The Pirate Myth offers an authoritative genealogy of this immortal political and cultural icon, showing that the history of piracy \u2013 the different ways in which pirates have been used, outlawed and suppressed by the major global powers, but also fantasized, imagined and romanticised by popular culture \u2013 can shed unexpected light on the different forms of violence that remain at the basis of our contemporary global order. **

", "publisher": "Routledge", "authors": ["Amedeo Policante"], "formats": [{"format": "pdf", "file_name": "The Pirate Myth_ Genealogies of an Imperia - Amedeo Policante.pdf", "dir_path": "Amedeo Policante/The Pirate Myth_ Genealogies of an Imperial Concept (45)/", "size": 2303788}], "cover_url": "Amedeo Policante/The Pirate Myth_ Genealogies of an Imperial Concept (45)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781138797314"}], "languages": ["eng"]}, "f9e9b3af-23f4-492d-ad3b-50d6552e0bc0": {"title": "The proper copy: The insides and outsides of domains made public", "title_sort": "proper copy: The insides and outsides of domains made public, The", "pubdate": "2010-01-02 12:00:00+00:00", "last_modified": "2020-01-17 00:10:20.225006+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f9e9b3af-23f4-492d-ad3b-50d6552e0bc0", "tags": ["politicizingpiracy"], "abstract": "", "publisher": "", "authors": ["Hayden| Cori"], "formats": [{"format": "pdf", "file_name": "The proper copy_ The insides and outsides - Hayden, Cori.pdf", "dir_path": "Hayden, Cori/The proper copy_ The insides and outsides of domains made public (46)/", "size": 266466}], "cover_url": "Hayden, Cori/The proper copy_ The insides and outsides of domains made public (46)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/17530351003617602"}], "languages": [], "series": "Journal of Cultural Economy"}, "7d2cde50-c9fa-48de-979e-a83024c42619": {"title": "Makers", "title_sort": "Makers", "pubdate": "2009-10-27 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7d2cde50-c9fa-48de-979e-a83024c42619", "tags": ["decolonizingtechnology"], "abstract": "
\n

Perry and Lester invent things: seashell robots that make toast, Boogie Woogie Elmo dolls that drive cars. They also invent entirely new economic systems. When Kodak and Duracell are broken up for parts by sharp venture capitalists, Perry and Lester help to invent the \"New Work,\" a New Deal for the technological era. Barefoot bankers cross the nation, microinvesting in high-tech communal mini-startups. Together, they transform the nation and blogger Andrea Fleeks is there to document it. Then it slides into collapse. The New Work bust puts the dot-bomb to shame. Perry and Lester build a network of interactive rides in abandoned Walmarts across the land. As their rides gain in popularity, a rogue Disney executive engineers a savage attack on the rides by convincing the police that their 3D printers are being used to make AK-47s. Lawsuits multiply as venture capitalists take on a new investment strategy: backing litigation against companies like Disney. Lester and Perry's friendship falls to pieces when Lester gets the fatkins treatment, which turns him into a sybaritic gigolo. Then things get really interesting.

\n

At the Publisher's request, this title is being sold without Digital Rights Management Software (DRM) applied. **

\n

From Publishers Weekly

\n

Starred Review. In this tour de force, Doctorow ( Little Brother ) uses the contradictions of two overused SF themes\u2014the decline and fall of America and the boundless optimism of open source/hacker culture\u2014to draw one of the most brilliant reimaginings of the near future since cyberpunk wore out its mirror shades. Perry Gibbons and Lester Banks, typical brilliant geeks in a garage, are trash-hackers who find inspiration in the growing pile of technical junk. Attracting the attention of suits and smart reporter Suzanne Church, the duo soon get involved with cheap and easy 3D printing, a cure for obesity and crowd-sourced theme parks. The result is bitingly realistic and miraculously avoids clich\u00e9 or predictability. While dates and details occasionally contradict one another, Doctorow's combination of business strategy, brilliant product ideas and laugh-out-loud moments of insight will keep readers powering through this quick-moving tale.

", "publisher": "Tor Books", "authors": ["Cory Doctorow"], "formats": [{"format": "pdf", "file_name": "Makers - Cory Doctorow.pdf", "dir_path": "Cory Doctorow/Makers (47)/", "size": 3274156}], "cover_url": "Cory Doctorow/Makers (47)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780007327898"}], "languages": ["eng"]}, "c4f68260-e837-4070-869d-442c7696b1d2": {"title": "Queer Ecologies", "title_sort": "Queer Ecologies", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c4f68260-e837-4070-869d-442c7696b1d2", "tags": ["care and non-human actors", "transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Unknown"], "formats": [{"format": "pdf", "file_name": "Queer Ecologies - Unknown.pdf", "dir_path": "Unknown/Queer Ecologies (48)/", "size": 6735777}], "cover_url": "Unknown/Queer Ecologies (48)/cover.jpg", "identifiers": [], "languages": []}, "aff94885-9bda-443d-a082-09ed046b3741": {"title": "The Refusal of Work: The Theory and Practice of Resistance to Work", "title_sort": "Refusal of Work: The Theory and Practice of Resistance to Work, The", "pubdate": "2015-11-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "aff94885-9bda-443d-a082-09ed046b3741", "tags": ["commoningcare"], "abstract": "
\n

Paid work is absolutely central to the culture and politics of capitalist societies, yet today\u2019s work-centred world is becoming increasingly hostile to the human need for autonomy, spontaneity and community. The grim reality of a society in which some are overworked, whilst others are condemned to intermittent work and unemployment, is progressively more difficult to tolerate. In this thought-provoking book, David Frayne questions the central place of work in mainstream political visions of the future, laying bare the ways in which economic demands colonise our lives and priorities. Drawing on his original research into the lives of people who are actively resisting nine-to-five employment, Frayne asks what motivates these people to disconnect from work, whether or not their resistance is futile, and whether they might have the capacity to inspire an alternative form of development, based on a reduction and social redistribution of work. A crucial dissection of the work-centred nature of modern society and emerging resistance to it, The Refusal of Work is a bold call for a more humane and sustainable vision of social progress. **

\n

Review

\n

\u201cThis is the start of a conversation. . . . A liberating and a worthy provocation.\u201d ( Financial Times )

\n

\u201cFrayne scrutinises the emergence of a working culture that sees some condemned to work harder than ever while others must cope with unemployment or underemployment. By exploring the motivations of those who resist the nine-to-five, Frayne explores the world of work that props up present-day capitalism.\u201d ( Guardian (UK) )

\n

\u201cI found Frayne\u2019s The Refusal of Work a fascinating book. Coming from a position of little exposure in these theories, it gave me a very concise run down of philosophical ideas and accounts around work, and the possibility for resistance and change. Again, it also opened up many more areas for further reading and research around these ideas. What I enjoyed most was Frayne\u2019s main thrust and provocation in this text, the notion of freedom and, not just the possibility of, but the elevation and championing of leisure time.\u201d ( Reflections on Learning )

\n

\u201c The Refusal to Work documents a century\u2019s worth of thought on work. The majority of the thinkers and theorists he covers predicated a radically different future.\u201d ( Times Literary Supplement )

\n

\u201cWhere other writers elaborate the scourge of neoliberalism\u2014surely an important and pressing topic\u2014they are less clear about how we, as individuals and political movements, might begin to build alternatives. Addressing this lacuna, Frayne\u2019s approach is a refreshing addition to the conversation.?\u201d ( Contrivers' Review )

\n

About the Author

\n

David Frayne works as a part-time lecturer in sociology at Cardiff University and as a freelance research associate for Public Health Wales.

", "publisher": "Zed Books", "authors": ["David Frayne"], "formats": [{"format": "pdf", "file_name": "The Refusal of Work_ The Theory and Practi - David Frayne.pdf", "dir_path": "David Frayne/The Refusal of Work_ The Theory and Practice of Resistance to Work (49)/", "size": 2601219}], "cover_url": "David Frayne/The Refusal of Work_ The Theory and Practice of Resistance to Work (49)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781783601202"}], "languages": ["eng"]}, "2ed9c39f-8d34-4a1f-955c-3c27760cbc58": {"title": "Open source hardware (OSHW) for open science in the global south: geek diplomacy?", "title_sort": "Open source hardware (OSHW) for open science in the global south: geek diplomacy?", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2ed9c39f-8d34-4a1f-955c-3c27760cbc58", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Kera| Denisa"], "formats": [{"format": "pdf", "file_name": "Open source hardware (OSHW) for open scien - Kera, Denisa.pdf", "dir_path": "Kera, Denisa/Open source hardware (OSHW) for open science in the global south_ geek diplomacy_ (50)/", "size": 2533683}], "cover_url": "Kera, Denisa/Open source hardware (OSHW) for open science in the global south_ geek diplomacy_ (50)/cover.jpg", "identifiers": [], "languages": []}, "a0c3d901-ae5d-433a-9350-8f2349a7e831": {"title": "Nature's queer performativity", "title_sort": "Nature's queer performativity", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "a0c3d901-ae5d-433a-9350-8f2349a7e831", "tags": ["care and non-human actors", "transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Barad| Karen"], "formats": [{"format": "pdf", "file_name": "Nature's queer performativity - Barad, Karen.pdf", "dir_path": "Barad, Karen/Nature's queer performativity (51)/", "size": 287401}], "cover_url": "Barad, Karen/Nature's queer performativity (51)/cover.jpg", "identifiers": [], "languages": []}, "2a4d0e81-884f-442c-8727-2333fd10eb3a": {"title": "The Abolition of Work and Other Essays", "title_sort": "Abolition of Work and Other Essays, The", "pubdate": "1986-05-31 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2a4d0e81-884f-442c-8727-2333fd10eb3a", "tags": ["commoningcare"], "abstract": "", "publisher": "Loompanics Unltd", "authors": ["Bob Black"], "formats": [{"format": "pdf", "file_name": "The Abolition of Work and Other Essays - Bob Black.pdf", "dir_path": "Bob Black/The Abolition of Work and Other Essays (52)/", "size": 84088}], "cover_url": "Bob Black/The Abolition of Work and Other Essays (52)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780915179411"}], "languages": ["eng"]}, "20568bff-f65c-4ce6-ab32-8fa67f260441": {"title": "Criticism without Critique: A Climate Camp Reader", "title_sort": "Criticism without Critique: A Climate Camp Reader", "pubdate": "2010-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "20568bff-f65c-4ce6-ab32-8fa67f260441", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Shift Magazine"], "formats": [{"format": "pdf", "file_name": "Criticism without Critique_ A Climate Camp - Shift Magazine.pdf", "dir_path": "Shift Magazine/Criticism without Critique_ A Climate Camp Reader (53)/", "size": 343671}], "cover_url": "Shift Magazine/Criticism without Critique_ A Climate Camp Reader (53)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "FBMH94KJ"}, {"scheme": "zkey_file", "code": "HRZPJM4Z"}], "languages": []}, "7d9528f4-f031-4223-bfbd-d14b75acfa76": {"title": "Separate Beds: A History of Indian Hospitals in Canada, 1920s-1980s", "title_sort": "Separate Beds: A History of Indian Hospitals in Canada, 1920s-1980s", "pubdate": "2016-01-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7d9528f4-f031-4223-bfbd-d14b75acfa76", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

Separate Beds is the shocking story of Canada\u2019s system of segregated health care. Operated by the same bureaucracy that was expanding health care opportunities for most Canadians, the \u201cIndian Hospitals\u201d were underfunded, understaffed, overcrowded, and rife with coercion and medical experimentation. Established to keep the Aboriginal tuberculosis population isolated, they became a means of ensuring that other Canadians need not share access to modern hospitals with Aboriginal patients. Tracing the history of the system from its fragmentary origins to its gradual collapse, Maureen K. Lux describes the arbitrary and contradictory policies that governed the \u201cIndian Hospitals,\u201d the experiences of patients and staff, and the vital grassroots activism that pressed the federal government to acknowledge its treaty obligations. A disturbing look at the dark side of the liberal welfare state, Separate Beds reveals a history of racism and negligence in health care for Canada\u2019s First Nations that should never be forgotten.

", "publisher": "University of Toronto Press", "authors": ["Maureen K. Lux"], "formats": [{"format": "epub", "file_name": "Separate Beds_ A History of Indian Hospita - Maureen K. Lux.epub", "dir_path": "Maureen K. Lux/Separate Beds_ A History of Indian Hospitals in Canada, 1920s-1980s (54)/", "size": 946588}], "cover_url": "Maureen K. Lux/Separate Beds_ A History of Indian Hospitals in Canada, 1920s-1980s (54)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781442613867"}], "languages": ["eng"]}, "0a9c0ef7-301c-461f-a334-db39d37a4f20": {"title": "On the value of social reproduction: Informal labour, the majority world and the need for inclusive theories and politics", "title_sort": "On the value of social reproduction: Informal labour, the majority world and the need for inclusive theories and politics", "pubdate": "2019-04-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0a9c0ef7-301c-461f-a334-db39d37a4f20", "tags": ["commoningcare"], "abstract": "", "publisher": "", "authors": ["Mezzadri| Alessandra"], "formats": [{"format": "pdf", "file_name": "On the value of social reproduction_ Infor - Mezzadri, Alessandra.pdf", "dir_path": "Mezzadri, Alessandra/On the value of social reproduction_ Informal labour, the majority world and the need for inclus (55)/", "size": 327867}], "cover_url": "Mezzadri, Alessandra/On the value of social reproduction_ Informal labour, the majority world and the need for inclus (55)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "CNYJUXJP"}, {"scheme": "zkey_file", "code": "2H42DSYV"}, {"scheme": "issn", "code": "0300-211x"}], "languages": [], "series": "Radical Philosophy"}, "24e4314a-3694-48b2-b84b-8845ba12d199": {"title": "A survey based on fingerprint, face and iris biometric recognition system, image quality assessment and fake biometric", "title_sort": "survey based on fingerprint, face and iris biometric recognition system, image quality assessment and fake biometric, A", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "24e4314a-3694-48b2-b84b-8845ba12d199", "tags": ["bioresistance", "horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Shende| Pradnya M.", "Sarode| Milind V.", "Ghonge| Mangesh M."], "formats": [{"format": "pdf", "file_name": "A survey based on fingerprint, face and ir - Shende, Pradnya M_.pdf", "dir_path": "Shende, Pradnya M_/A survey based on fingerprint, face and iris biometric recognition system, image quality assessm (56)/", "size": 1116623}], "cover_url": "Shende, Pradnya M_/A survey based on fingerprint, face and iris biometric recognition system, image quality assessm (56)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "2231-0711"}], "languages": [], "series": "International Journal of Computer Science Engineering and Technology"}, "8d72a86f-b154-4b56-8382-5f34e644ded6": {"title": "Cultures of Eugenics", "title_sort": "Cultures of Eugenics", "pubdate": "2008-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "8d72a86f-b154-4b56-8382-5f34e644ded6", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["subRosa Collective"], "formats": [{"format": "pdf", "file_name": "Cultures of Eugenics - subRosa Collective.pdf", "dir_path": "subRosa Collective/Cultures of Eugenics (57)/", "size": 1468967}], "cover_url": "subRosa Collective/Cultures of Eugenics (57)/cover.jpg", "identifiers": [], "languages": []}, "dc34182a-4bc8-4066-a5a8-100a43fc69cf": {"title": "Vaughurt Recipe", "title_sort": "Vaughurt Recipe", "pubdate": "2013-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "dc34182a-4bc8-4066-a5a8-100a43fc69cf", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Vandeleur-Boorer| Alice"], "formats": [{"format": "pdf", "file_name": "Vaughurt Recipe - Vandeleur-Boorer, Alice.pdf", "dir_path": "Vandeleur-Boorer, Alice/Vaughurt Recipe (58)/", "size": 58413}], "cover_url": "Vandeleur-Boorer, Alice/Vaughurt Recipe (58)/cover.jpg", "identifiers": [], "languages": []}, "2f977284-79b9-43be-b382-9a8501a355fd": {"title": "\u201cNewsworthy\u201d victims? Exploring differences in Canadian local press coverage of missing/murdered Aboriginal and White women", "title_sort": "Newsworthy\u201d victims? Exploring differences in Canadian local press coverage of missing/murdered Aboriginal and White women", "pubdate": "2010-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2f977284-79b9-43be-b382-9a8501a355fd", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Gilchrist| Kristen"], "formats": [{"format": "pdf", "file_name": "_Newsworthy_ victims_ Exploring difference - Gilchrist, Kristen.pdf", "dir_path": "Gilchrist, Kristen/_Newsworthy_ victims_ Exploring differences in Canadian local press coverage of missing_murdered (59)/", "size": 167419}], "cover_url": "Gilchrist, Kristen/_Newsworthy_ victims_ Exploring differences in Canadian local press coverage of missing_murdered (59)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/14680777.2010.514110"}], "languages": [], "series": "Feminist Media Studies"}, "71a94fee-c75b-47ef-90e6-bce20e48276c": {"title": "Biotechnology for all / DIY in bioanalytics: doing and grasping it yourself", "title_sort": "Biotechnology for all / DIY in bioanalytics: doing and grasping it yourself", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "71a94fee-c75b-47ef-90e6-bce20e48276c", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "Schweizerische Akademie der Technischen Wissenschaften", "authors": ["Hackteria"], "formats": [{"format": "pdf", "file_name": "Biotechnology for all _ DIY in bioanalytic - Hackteria.pdf", "dir_path": "Hackteria/Biotechnology for all _ DIY in bioanalytics_ doing and grasping it yourself (60)/", "size": 519449}], "cover_url": "Hackteria/Biotechnology for all _ DIY in bioanalytics_ doing and grasping it yourself (60)/cover.jpg", "identifiers": [], "languages": ["eng"]}, "1a7a1d66-1135-4e4c-bc70-fd3ca65e3063": {"title": "The Arrest Handbook: A Guide to Your Rights", "title_sort": "Arrest Handbook: A Guide to Your Rights, The", "pubdate": "2008-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1a7a1d66-1135-4e4c-bc70-fd3ca65e3063", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "British Columbia Civil Liberties Association", "authors": ["David R. Eby"], "formats": [{"format": "pdf", "file_name": "The Arrest Handbook_ A Guide to Your Right - David R. Eby.pdf", "dir_path": "David R. Eby/The Arrest Handbook_ A Guide to Your Rights (61)/", "size": 406460}], "cover_url": "David R. Eby/The Arrest Handbook_ A Guide to Your Rights (61)/cover.jpg", "identifiers": [{"scheme": "google", "code": "IaRXAQAACAAJ"}], "languages": ["eng"]}, "0c929de8-5124-4e2e-a04e-68506b2371bb": {"title": "The Ecological Rift", "title_sort": "Ecological Rift, The", "pubdate": "2011-11-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0c929de8-5124-4e2e-a04e-68506b2371bb", "tags": ["environmentalresistance"], "abstract": "
\n

Humanity in the twenty-first century is facing what might be described as its ultimate environmental catastrophe: the destruction of the climate that has nurtured human civilization and with it the basis of life on earth as we know it. All ecosystems on the planet are now in decline. Enormous rifts have been driven through the delicate fabric of the biosphere. The economy and the earth are headed for a fateful collision\u2014if we don't alter course. In The Ecological Rift: Capitalism's War on the Earth environmental sociologists John Bellamy Foster, Brett Clark, and Richard York offer a radical assessment of both the problem and the solution. They argue that the source of our ecological crisis lies in the paradox of wealth in capitalist society, which expands individual riches at the expense of public wealth, including the wealth of nature. In the process, a huge ecological rift is driven between human beings and nature, undermining the conditions of sustainable existence: a rift in the metabolic relation between humanity and nature that is irreparable within capitalist society, since integral to its very laws of motion. Critically examining the sanguine arguments of mainstream economists and technologists, Foster, Clark, and York insist instead that fundamental changes in social relations must occur if the ecological (and social) problems presently facing us are to be transcended. Their analysis relies on the development of a deep dialectical naturalism concerned with issues of ecology and evolution and their interaction with the economy. Importantly, they offer reasons for revolutionary hope in moving beyond the regime of capital and toward a society of sustainable human development.
(source: Bol.de)

", "publisher": "NYU Press", "authors": ["John Bellamy Foster|", "Brett Clark|", "Richard York"], "formats": [{"format": "epub", "file_name": "The Ecological Rift - John Bellamy Foster,.epub", "dir_path": "John Bellamy Foster,/The Ecological Rift (62)/", "size": 552039}], "cover_url": "John Bellamy Foster,/The Ecological Rift (62)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781583673881"}], "languages": ["eng"]}, "73811b34-3f83-4300-8cc1-15b175837770": {"title": "Pedagogy of the Oppressed: 30th Anniversary Edition", "title_sort": "Pedagogy of the Oppressed: 30th Anniversary Edition", "pubdate": "2014-08-17 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "73811b34-3f83-4300-8cc1-15b175837770", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

First published in Portuguese in 1968, Pedagogy of the Oppressed was translated and published in English in 1970. The methodology of the late Paulo Freire has helped to empower countless impoverished and illiterate people throughout the world. Freire's work has taken on especial urgency in the United States and Western Europe, where the creation of a permanent underclass among the underprivileged and minorities in cities and urban centers is increasingly accepted as the norm.

\n

With a substantive new introduction on Freire's life and the remarkable impact of this book by writer and Freire confidant and authority Donaldo Macedo, this anniversary edition of Pedagogy of the Oppressed will inspire a new generation of educators, students, and general readers for years to come.

", "publisher": "Bloomsbury Academic", "authors": ["Paulo Freire"], "formats": [{"format": "pdf", "file_name": "Pedagogy of the Oppressed_ 30th Anniversar - Paulo Freire.pdf", "dir_path": "Paulo Freire/Pedagogy of the Oppressed_ 30th Anniversary Edition (63)/", "size": 5880202}], "cover_url": "Paulo Freire/Pedagogy of the Oppressed_ 30th Anniversary Edition (63)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781501305320"}], "languages": ["eng"]}, "b802442c-3ba7-47f1-a917-098103edb388": {"title": "Global Magic: Technologies of Appropriation From Ancient Rome to Wall Street", "title_sort": "Global Magic: Technologies of Appropriation From Ancient Rome to Wall Street", "pubdate": "2016-03-08 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b802442c-3ba7-47f1-a917-098103edb388", "tags": ["environmentalresistance"], "abstract": "
\n

Modern thought on economics and technology is no less magical than the world views of non-modern peoples. This book reveals how our ideas about growth and progress ignore how money and machines throughout history have been used to exploit less affluent parts of world society. The argument critically explores a middle ground between Marxist political ecology and Actor-Network Theory.

", "publisher": "Palgrave Macmillan", "authors": ["Alf Hornborg"], "formats": [{"format": "pdf", "file_name": "Global Magic_ Technologies of Appropriatio - Alf Hornborg.pdf", "dir_path": "Alf Hornborg/Global Magic_ Technologies of Appropriation From Ancient Rome to Wall Street (64)/", "size": 8846570}], "cover_url": "Alf Hornborg/Global Magic_ Technologies of Appropriation From Ancient Rome to Wall Street (64)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781137567864"}], "languages": ["eng"]}, "e5a8afe2-ebe9-41e6-aff9-888f9f82f0d4": {"title": "Being Indigenous: Resurgences against contemporary colonialism", "title_sort": "Being Indigenous: Resurgences against contemporary colonialism", "pubdate": "2005-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "e5a8afe2-ebe9-41e6-aff9-888f9f82f0d4", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Alfred| Taiaiake", "Corntassel| Jeff"], "formats": [{"format": "pdf", "file_name": "Being Indigenous_ Resurgences against cont - Alfred, Taiaiake.pdf", "dir_path": "Alfred, Taiaiake/Being Indigenous_ Resurgences against contemporary colonialism (65)/", "size": 80662}], "cover_url": "Alfred, Taiaiake/Being Indigenous_ Resurgences against contemporary colonialism (65)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1111/j.1477-7053.2005.00166.x"}], "languages": []}, "315757c0-9502-48dc-8c61-e3e1d20a0ec6": {"title": "The Afterlife of Reproductive Slavery: Biocapitalism and Black Feminism\u2019s Philosophy of History", "title_sort": "Afterlife of Reproductive Slavery: Biocapitalism and Black Feminism\u2019s Philosophy of History, The", "pubdate": "2019-02-14 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "315757c0-9502-48dc-8c61-e3e1d20a0ec6", "tags": ["commoningcare"], "abstract": "
\n

In The Afterlife of Reproductive Slavery Alys Eve Weinbaum investigates the continuing resonances of Atlantic slavery in the cultures and politics of human reproduction that characterize contemporary biocapitalism. As a form of racial capitalism that relies on the commodification of the human reproductive body, biocapitalism is dependent upon what Weinbaum calls the slave episteme\u2014the racial logic that drove four centuries of slave breeding in the Americas and Caribbean. Weinbaum outlines how the slave episteme shapes the practice of reproduction today, especially through use of biotechnology and surrogacy. Engaging with a broad set of texts, from Toni Morrison's Beloved and Octavia Butler's dystopian speculative fiction\u00a0to black Marxism, histories of slavery, and legal cases involving surrogacy, Weinbaum shows how black feminist contributions from the 1970s, 1980s, and 1990s constitute a powerful philosophy of history\u2014one that provides the means through which to understand how reproductive slavery haunts the present.

", "publisher": "Duke University Press", "authors": ["Alys Eve Weinbaum"], "formats": [{"format": "pdf", "file_name": "The Afterlife of Reproductive Slavery_ Bio - Alys Eve Weinbaum.pdf", "dir_path": "Alys Eve Weinbaum/The Afterlife of Reproductive Slavery_ Biocapitalism and Black Feminism's Philosophy of History (66)/", "size": 15908116}], "cover_url": "Alys Eve Weinbaum/The Afterlife of Reproductive Slavery_ Biocapitalism and Black Feminism's Philosophy of History (66)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781478003281"}, {"scheme": "amazon", "code": "B07NDVXX58"}, {"scheme": "zkey", "code": "ATMQWZQ3"}, {"scheme": "google", "code": "2tKGDwAAQBAJ"}, {"scheme": "zkey_file", "code": "JLXZMMK8"}], "languages": ["eng"]}, "e2809c4b-7c1c-42b9-8b7d-c70b0467812a": {"title": "Energy Transitions: Global and National Perspectives, 2nd Edition", "title_sort": "Energy Transitions: Global and National Perspectives, 2nd Edition", "pubdate": "2016-12-05 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "e2809c4b-7c1c-42b9-8b7d-c70b0467812a", "tags": ["environmentalresistance"], "abstract": "
\n

This book provides a detailed, global examination of energy transitions, supplying a long-term historical perspective, an up-to-date assessment of recent and near-term advances in energy production technology and implementation, and an explanation of why efforts to limit global warming and to shift away from fossil fuels have been gradual. Based on the best international and national statistical sources, the second edition of Energy Transitions: Global and National Perspectives supplies an in-depth evaluation of how economies and nations around the world are striving to move away from traditional energy sources, the unfolding decarbonization process, and problems with intermittent energies and national transition plans. It supplies readers with a clear introduction to the basic properties of energy systems and key concepts of their appraisal, puts energy transition patterns in long-term historical perspective, and looks at the energy transition in eight of the world's leading economies. The last chapters focus on the advances in the decarbonization of the global energy supply and consider how the energy transition will continue in the coming decades. This fully updated and substantially expanded edition addresses the many new developments affecting energy supply, such as the recent expansion of hydraulic fracturing, oil price fluctuations, the Fukushima nuclear power plant catastrophe, advances in solar and wind generation, adoption of combined cycle gas turbines, and increased availability of electric cars. The coverage highlights the differences in the pace of transitions in various countries, thereby providing a complete and accurate picture of the current state of energy development in different parts of the world. The book serves as an invaluable resource for students as well as for anyone interested in a realistic appraisal of the current state of energy transitions in various nations and regions and the likely future development of the global energy supply.

\n

\u2022 Presents historical coverage of energy production, energy use, and key technical and economic factors that affect the currently unfolding transitions \u2022 Offers insightful analysis of energy transitions on both the national and global scale to explain the possibilities and limitations of the process \u2022 Supplies a critical appraisal of new renewable conversions that makes clear their advantages and potential benefits as well as their inherent unavoidable limitations \u2022 Enables general readers to gain an in-depth understanding of energy transitions from the perspective of an acclaimed scientist with expertise in the fields of energy, environmental and population change, technical innovation, and public policy **

", "publisher": "Praeger", "authors": ["Vaclav Smil"], "formats": [{"format": "pdf", "file_name": "Energy Transitions_ Global and National Pe - Vaclav Smil.pdf", "dir_path": "Vaclav Smil/Energy Transitions_ Global and National Perspectives, 2nd Edition (67)/", "size": 18609133}], "cover_url": "Vaclav Smil/Energy Transitions_ Global and National Perspectives, 2nd Edition (67)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781440853258"}], "languages": ["eng"]}, "c819f5fd-c990-4a8c-837a-7baac3824658": {"title": "Situated knowledges: The science question in feminism and the privilege of partial perspective", "title_sort": "Situated knowledges: The science question in feminism and the privilege of partial perspective", "pubdate": "1988-09-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c819f5fd-c990-4a8c-837a-7baac3824658", "tags": ["transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Haraway| Donna"], "formats": [{"format": "pdf", "file_name": "Situated knowledges_ The science question - Haraway, Donna.pdf", "dir_path": "Haraway, Donna/Situated knowledges_ The science question in feminism and the privilege of partial perspective (68)/", "size": 633402}], "cover_url": "Haraway, Donna/Situated knowledges_ The science question in feminism and the privilege of partial perspective (68)/cover.jpg", "identifiers": [], "languages": [], "series": "Feminist Studies"}, "1ac3108f-f4ce-4f31-9a79-75ff528123f4": {"title": "The Molecular Invasion", "title_sort": "Molecular Invasion, The", "pubdate": "2002-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1ac3108f-f4ce-4f31-9a79-75ff528123f4", "tags": ["bioresistance", "transhackfeminism"], "abstract": "
\n

Womb transplant babies 'within three years.''If implantable wombs become a reality in humans, they need not be confined to women. Some men might also be keen.' Guardian, July 2003Having exhausted the possibilities for geographic colonial expansion, as well as reaching the fiscal limitations of virtual space, capital is now concentrated on exploiting a new frontier -- organic molecular space.Critical Art Ensemble began mapping this development in Flesh Machine (Autonomedia, 1998) by examining the use of reproductive technologies and their promise for achieving an intensified degree of control over worker and citizen.The Molecular Invasion acts as a companion to this first book by mapping the politics of transgenics, and offering a model for the creation of a contestational biology, as well as providing direct interventionist tactics for the disruption of this new assault on the organic realm.The Molecular Invasion is an indispensable user's guide for anyone interested in the critical thinking and practice of biotech as a social, scientific, and political phenomenon.

", "publisher": "Autonomedia", "authors": ["Critical Art Ensemble"], "formats": [{"format": "pdf", "file_name": "The Molecular Invasion - Critical Art Ensemble.pdf", "dir_path": "Critical Art Ensemble/The Molecular Invasion (69)/", "size": 3901772}], "cover_url": "Critical Art Ensemble/The Molecular Invasion (69)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781570271380"}], "languages": ["eng"]}, "c43ac509-78a8-4c1b-a68e-6480c5e01ab8": {"title": "Distributed Reproduction, Chemical Violence, and Latency", "title_sort": "Distributed Reproduction, Chemical Violence, and Latency", "pubdate": "2019-07-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c43ac509-78a8-4c1b-a68e-6480c5e01ab8", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Murphy| Michelle"], "formats": [{"format": "pdf", "file_name": "Distributed Reproduction, Chemical Violenc - Murphy, Michelle.pdf", "dir_path": "Murphy, Michelle/Distributed Reproduction, Chemical Violence, and Latency (70)/", "size": 865127}], "cover_url": "Murphy, Michelle/Distributed Reproduction, Chemical Violence, and Latency (70)/cover.jpg", "identifiers": [], "languages": [], "series": "The Scholar & Feminist Online"}, "9d7fae4a-4880-4b52-ab51-cd1184c36801": {"title": "Hermaphrodites with attitude: Mapping the emergence of intersex political activism", "title_sort": "Hermaphrodites with attitude: Mapping the emergence of intersex political activism", "pubdate": "2013-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "9d7fae4a-4880-4b52-ab51-cd1184c36801", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "Routledge", "authors": ["Chase| Cheryl"], "formats": [{"format": "pdf", "file_name": "Hermaphrodites with attitude_ Mapping the - Chase, Cheryl.pdf", "dir_path": "Chase, Cheryl/Hermaphrodites with attitude_ Mapping the emergence of intersex political activism (71)/", "size": 920322}], "cover_url": "Chase, Cheryl/Hermaphrodites with attitude_ Mapping the emergence of intersex political activism (71)/cover.jpg", "identifiers": [], "languages": [], "series": "GLQ: A Journal of Gay and Lesbian Studies"}, "935c9c08-39e7-4023-8b5b-7287c9199bf1": {"title": "Hermaphrodites with attitude: Mapping the emergence of intersex political activism", "title_sort": "Hermaphrodites with attitude: Mapping the emergence of intersex political activism", "pubdate": "2013-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "935c9c08-39e7-4023-8b5b-7287c9199bf1", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "Routledge", "authors": ["Chase| Cheryl"], "formats": [{"format": "pdf", "file_name": "Hermaphrodites with attitude_ Mapping the - Chase, Cheryl.pdf", "dir_path": "Chase, Cheryl/Hermaphrodites with attitude_ Mapping the emergence of intersex political activism (72)/", "size": 795821}], "cover_url": "Chase, Cheryl/Hermaphrodites with attitude_ Mapping the emergence of intersex political activism (72)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "SD9M7T97"}, {"scheme": "zkey", "code": "WBEBEJJJ"}], "languages": []}, "f1711c2d-0032-45fa-9b29-82d3f3ca3c92": {"title": "Contradictions of capital and care", "title_sort": "Contradictions of capital and care", "pubdate": "2016-08-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f1711c2d-0032-45fa-9b29-82d3f3ca3c92", "tags": ["care - history and concept", "piratecareintroduction"], "abstract": "", "publisher": "", "authors": ["Fraser| Nancy"], "formats": [{"format": "pdf", "file_name": "Contradictions of capital and care - Fraser, Nancy.pdf", "dir_path": "Fraser, Nancy/Contradictions of capital and care (73)/", "size": 591942}], "cover_url": "Fraser, Nancy/Contradictions of capital and care (73)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "0028-6060"}], "languages": [], "series": "New Left Review"}, "d0880dd5-155d-4729-b7fd-8ce38b8ab5fe": {"title": "Facing Gaia", "title_sort": "Facing Gaia", "pubdate": "2017-09-04 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "d0880dd5-155d-4729-b7fd-8ce38b8ab5fe", "tags": ["environmentalresistance"], "abstract": "
\n

The emergence of modern sciences in the seventeenth century profoundly renewed our understanding of nature. For the last three centuries new ideas of nature have been continually developed by theology, politics, economics, and science, especially the sciences of the material world. The situation is even more unstable today, now that we have entered an ecological mutation of unprecedented scale. Some call it the Anthropocene, but it is best described as a new climatic regime. And a new regime it certainly is, since the many unexpected connections between human activity and the natural world oblige every one of us to reopen the earlier notions of nature and redistribute what had been packed inside. So the question now arises: what will replace the old ways of looking at nature? This book explores a potential candidate proposed by James Lovelock when he chose the name 'Gaia' for the fragile, complex system through which living phenomena modify the Earth. The fact that he was immediately misunderstood proves simply that his readers have tried to fit this new notion into an older frame, transforming Gaia into a single organism, a kind of giant thermostat, some sort of New Age goddess, or even divine Providence. In this series of lectures on 'natural religion,' Bruno Latour argues that the complex and ambiguous figure of Gaia offers, on the contrary, an ideal way to disentangle the ethical, political, theological, and scientific aspects of the now obsolete notion of nature. He lays the groundwork for a future collaboration among scientists, theologians, activists, and artists as they, and we, begin to adjust to the new climatic regime.
(source: Bol.de)

", "publisher": "John Wiley & Sons", "authors": ["Bruno Latour"], "formats": [{"format": "pdf", "file_name": "Facing Gaia - Bruno Latour.pdf", "dir_path": "Bruno Latour/Facing Gaia (74)/", "size": 6991451}], "cover_url": "Bruno Latour/Facing Gaia (74)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780745684352"}], "languages": ["eng"]}, "5ae26d9c-7b72-42f2-b46f-858360ad7d70": {"title": "Cool dudes: The denial of climate change among conservative white males in the United States", "title_sort": "Cool dudes: The denial of climate change among conservative white males in the United States", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "5ae26d9c-7b72-42f2-b46f-858360ad7d70", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["McCright| Aaron M.", "Dunlap| Riley E."], "formats": [{"format": "pdf", "file_name": "Cool dudes_ The denial of climate change a - McCright, Aaron M_.pdf", "dir_path": "McCright, Aaron M_/Cool dudes_ The denial of climate change among conservative white males in the United States (75)/", "size": 524401}], "cover_url": "McCright, Aaron M_/Cool dudes_ The denial of climate change among conservative white males in the United States (75)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1016/j.gloenvcha.2011.06.003"}], "languages": [], "series": "Global Environmental Change"}, "a0e173a4-ec0b-4d42-969e-23785ae5ac17": {"title": "Empathetic Taxidermia Zine", "title_sort": "Empathetic Taxidermia Zine", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "a0e173a4-ec0b-4d42-969e-23785ae5ac17", "tags": ["care and non-human actors", "transhackfeminism"], "abstract": "", "publisher": "Hackateria", "authors": ["Hackademia"], "formats": [{"format": "pdf", "file_name": "Empathetic Taxidermia Zine - Hackademia.pdf", "dir_path": "Hackademia/Empathetic Taxidermia Zine (76)/", "size": 12512404}], "cover_url": "Hackademia/Empathetic Taxidermia Zine (76)/cover.jpg", "identifiers": [], "languages": []}, "bad50b44-4512-4af3-b588-26f7f67c7acc": {"title": "Industrial actions on hormonal balance: Xeno-hormones and endocrine reactions", "title_sort": "Industrial actions on hormonal balance: Xeno-hormones and endocrine reactions", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bad50b44-4512-4af3-b588-26f7f67c7acc", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Aliens in Green"], "formats": [{"format": "pdf", "file_name": "Industrial actions on hormonal balance_ Xe - Aliens in Green.pdf", "dir_path": "Aliens in Green/Industrial actions on hormonal balance_ Xeno-hormones and endocrine reactions (77)/", "size": 3635566}], "cover_url": "Aliens in Green/Industrial actions on hormonal balance_ Xeno-hormones and endocrine reactions (77)/cover.jpg", "identifiers": [], "languages": []}, "f2050266-ec26-4011-a382-92f840838c87": {"title": "Degrowth: A Vocabulary for a New Era", "title_sort": "Degrowth: A Vocabulary for a New Era", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f2050266-ec26-4011-a382-92f840838c87", "tags": ["environmentalresistance"], "abstract": "", "publisher": "Routledge", "authors": ["D'Alisa| Giacomo", "Demaria| Federico", "Kallis| Giorgos"], "formats": [{"format": "pdf", "file_name": "Degrowth_ A Vocabulary for a New Era - D'Alisa, Giacomo.pdf", "dir_path": "D'Alisa, Giacomo/Degrowth_ A Vocabulary for a New Era (78)/", "size": 1172256}], "cover_url": "D'Alisa, Giacomo/Degrowth_ A Vocabulary for a New Era (78)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781134449842"}], "languages": []}, "141a7305-e38e-453c-87a0-5c6953674bf5": {"title": "Building as Body: Manual for Investigating Your Workplace", "title_sort": "Building as Body: Manual for Investigating Your Workplace", "pubdate": "2018-01-18 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "141a7305-e38e-453c-87a0-5c6953674bf5", "tags": ["commoningcare"], "abstract": "", "publisher": "Manual Labours", "authors": ["Hope| Sophie", "Richards| Jenny"], "formats": [{"format": "pdf", "file_name": "Building as Body_ Manual for Investigating - Hope, Sophie.pdf", "dir_path": "Hope, Sophie/Building as Body_ Manual for Investigating Your Workplace (79)/", "size": 45863535}], "cover_url": "Hope, Sophie/Building as Body_ Manual for Investigating Your Workplace (79)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780957028258"}], "languages": []}, "6186d32e-4b0e-4232-b5d1-c015b20660f6": {"title": "The climate of history: Four theses", "title_sort": "climate of history: Four theses, The", "pubdate": "2009-12-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "6186d32e-4b0e-4232-b5d1-c015b20660f6", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Chakrabarty| Dipesh"], "formats": [{"format": "pdf", "file_name": "The climate of history_ Four theses - Chakrabarty, Dipesh.pdf", "dir_path": "Chakrabarty, Dipesh/The climate of history_ Four theses (80)/", "size": 184293}], "cover_url": "Chakrabarty, Dipesh/The climate of history_ Four theses (80)/cover.jpg", "identifiers": [], "languages": [], "series": "Critical Inquiry"}, "59ed5cb8-2af7-46fd-9e07-324e28390d6f": {"title": "Climate Resistance Handbook: Or, I was Part of a Climate Action. Now What?", "title_sort": "Climate Resistance Handbook: Or, I was Part of a Climate Action. Now What?", "pubdate": "2019-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "59ed5cb8-2af7-46fd-9e07-324e28390d6f", "tags": ["environmentalresistance"], "abstract": "", "publisher": "LULU Press", "authors": ["Hunter| Daniel"], "formats": [{"format": "pdf", "file_name": "Climate Resistance Handbook_ Or, I was Par - Hunter, Daniel.pdf", "dir_path": "Hunter, Daniel/Climate Resistance Handbook_ Or, I was Part of a Climate Action. Now What_ (81)/", "size": 14852181}], "cover_url": "Hunter, Daniel/Climate Resistance Handbook_ Or, I was Part of a Climate Action. Now What_ (81)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780359672677"}], "languages": []}, "f21b8231-d61a-47dd-b585-a2838a5762c2": {"title": "The Shock of the Anthropocene: The Earth, History and Us", "title_sort": "Shock of the Anthropocene: The Earth, History and Us, The", "pubdate": "2016-01-12 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f21b8231-d61a-47dd-b585-a2838a5762c2", "tags": ["environmentalresistance"], "abstract": "
\n

Dissecting the new theoretical buzzword of the \u201cAnthropocene\u201d

\n

The Earth has entered a new epoch: the Anthropocene. What we are facing is not only an environmental crisis, but a geological revolution of human origin. In two centuries, our planet has tipped into a state unknown for millions of years.

\n

How did we get to this point? Refuting the convenient view of a \u201chuman species\u201d that upset the Earth system, unaware of what it was doing, this book proposes the first critical history of the Anthropocene, shaking up many accepted ideas: about our supposedly recent \u201cenvironmental awareness,\u201d about previous challenges to industrialism, about the manufacture of ignorance and consumerism, about so-called energy transitions, as well as about the role of the military in environmental destruction. In a dialogue between science and history, The Shock of the Anthropocene dissects a new theoretical buzzword and explores paths for living and acting politically in this rapidly developing geological epoch. **

", "publisher": "Verso", "authors": ["Christophe Bonneuil"], "formats": [{"format": "pdf", "file_name": "The Shock of the Anthropocene_ The Earth, - Christophe Bonneuil.pdf", "dir_path": "Christophe Bonneuil/The Shock of the Anthropocene_ The Earth, History and Us (82)/", "size": 2808190}], "cover_url": "Christophe Bonneuil/The Shock of the Anthropocene_ The Earth, History and Us (82)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781784780791"}], "languages": ["eng"]}, "b4608b24-79d9-4296-b808-81426720a711": {"title": "BIOHACKING GENDER: cyborgs, coloniality, and the pharmacopornographic era", "title_sort": "BIOHACKING GENDER: cyborgs, coloniality, and the pharmacopornographic era", "pubdate": "2017-06-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b4608b24-79d9-4296-b808-81426720a711", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Malatino| Hilary"], "formats": [{"format": "pdf", "file_name": "BIOHACKING GENDER_ cyborgs, coloniality, a - Malatino, Hilary.pdf", "dir_path": "Malatino, Hilary/BIOHACKING GENDER_ cyborgs, coloniality, and the pharmacopornographic era (83)/", "size": 434191}], "cover_url": "Malatino, Hilary/BIOHACKING GENDER_ cyborgs, coloniality, and the pharmacopornographic era (83)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/0969725x.2017.1322836"}, {"scheme": "zkey", "code": "4LEP6QCG"}, {"scheme": "zkey_file", "code": "EI4CV7II"}], "languages": [], "series": "Angelaki: Journal of Theoretical Humanities"}, "29b7a11e-17fa-4446-bf57-db7cee0083ce": {"title": "Xeno-water cycles: cylce of xeno-hormones and endocrine disruptors in water", "title_sort": "Xeno-water cycles: cylce of xeno-hormones and endocrine disruptors in water", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "29b7a11e-17fa-4446-bf57-db7cee0083ce", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Aliens in Green"], "formats": [{"format": "pdf", "file_name": "Xeno-water cycles_ cylce of xeno-hormones - Aliens in Green.pdf", "dir_path": "Aliens in Green/Xeno-water cycles_ cylce of xeno-hormones and endocrine disruptors in water (84)/", "size": 1716756}], "cover_url": "Aliens in Green/Xeno-water cycles_ cylce of xeno-hormones and endocrine disruptors in water (84)/cover.jpg", "identifiers": [], "languages": []}, "bb0a4fea-883d-40b4-bc62-5215bf1f5e89": {"title": "Pharmaco-pornographic politics: towards a new gender ecology", "title_sort": "Pharmaco-pornographic politics: towards a new gender ecology", "pubdate": "2008-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bb0a4fea-883d-40b4-bc62-5215bf1f5e89", "tags": ["transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Preciado| Beatriz"], "formats": [{"format": "pdf", "file_name": "Pharmaco-pornographic politics_ towards a - Preciado, Beatriz.pdf", "dir_path": "Preciado, Beatriz/Pharmaco-pornographic politics_ towards a new gender ecology (85)/", "size": 206276}], "cover_url": "Preciado, Beatriz/Pharmaco-pornographic politics_ towards a new gender ecology (85)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/13534640701782139"}], "languages": [], "series": "parallax"}, "a0319133-cc59-4e9f-b148-056c9e90e3db": {"title": "The Official Biononymous Guide to Erase your DNA", "title_sort": "Official Biononymous Guide to Erase your DNA, The", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "a0319133-cc59-4e9f-b148-056c9e90e3db", "tags": ["bioresistance", "transhackfeminism"], "abstract": "", "publisher": "biononymous.me & biogenfutur.es", "authors": ["Dewey-Hagborg| Heather", "Solomon| Jarad"], "formats": [{"format": "pdf", "file_name": "The Official Biononymous Guide to Erase yo - Dewey-Hagborg, Heather.pdf", "dir_path": "Dewey-Hagborg, Heather/The Official Biononymous Guide to Erase your DNA (86)/", "size": 1270893}], "cover_url": "Dewey-Hagborg, Heather/The Official Biononymous Guide to Erase your DNA (86)/cover.jpg", "identifiers": [], "languages": []}, "0337a581-40cd-4f4c-b998-77b27b055734": {"title": "Recovering Canada", "title_sort": "Recovering Canada", "pubdate": "2002-01-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0337a581-40cd-4f4c-b998-77b27b055734", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

Canada is covered by a system of law and governance that largely obscures and ignores the presence of pre-existing Indigenous regimes. Indigenous law, however, has continuing relevance for both Aboriginal peoples and the Canadian state. In his in-depth examination of the continued existence and application of Indigenous legal values, John Borrows suggests how First Nations laws could be applied by Canadian courts, and tempers this by pointing out the many difficulties that would occur if the courts attempted to follow such an approach. By contrasting and comparing Aboriginal stories and Canadian case law, and interweaving political commentary, Borrows argues that there is a better way to constitute Aboriginal / Crown relations in Canada. He suggests that the application of Indigenous legal perspectives to a broad spectrum of issues that confront us as humans will help Canada recover from its colonial past, and help Indigenous people recover their country. Borrows concludes by demonstrating how Indigenous peoples' law could be more fully and consciously integrated with Canadian law to produce a society where two world views can co-exist and a different vision of the Canadian constitution and citizenship can be created.

", "publisher": "University of Toronto Press", "authors": ["John Borrows"], "formats": [{"format": "pdf", "file_name": "Recovering Canada - John Borrows.pdf", "dir_path": "John Borrows/Recovering Canada (87)/", "size": 18074375}], "cover_url": "John Borrows/Recovering Canada (87)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780802085016"}], "languages": ["eng"]}, "c529d3a9-1ab5-406b-93d8-a5e791a1c8cd": {"title": "In Catastrophic Times: Resisting the Coming Barbarism", "title_sort": "In Catastrophic Times: Resisting the Coming Barbarism", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c529d3a9-1ab5-406b-93d8-a5e791a1c8cd", "tags": ["environmentalresistance"], "abstract": "", "publisher": "Open Humanities Press", "authors": ["Stengers| Isabelle"], "formats": [{"format": "pdf", "file_name": "In Catastrophic Times_ Resisting the Comin - Stengers, Isabelle.pdf", "dir_path": "Stengers, Isabelle/In Catastrophic Times_ Resisting the Coming Barbarism (88)/", "size": 3399287}], "cover_url": "Stengers, Isabelle/In Catastrophic Times_ Resisting the Coming Barbarism (88)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781785420092"}], "languages": []}, "5cdd809d-0fef-4f0f-a515-4cdd13be1f70": {"title": "Libertarian municipalism: An overview", "title_sort": "Libertarian municipalism: An overview", "pubdate": "1991-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "5cdd809d-0fef-4f0f-a515-4cdd13be1f70", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Bookchin| Murray"], "formats": [{"format": "pdf", "file_name": "Libertarian municipalism_ An overview - Bookchin, Murray.pdf", "dir_path": "Bookchin, Murray/Libertarian municipalism_ An overview (89)/", "size": 82154}], "cover_url": "Bookchin, Murray/Libertarian municipalism_ An overview (89)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "3R3JJZEF"}, {"scheme": "zkey_file", "code": "FPPSRUE9"}], "languages": []}, "f1b7a5f4-6bde-48b3-9bbf-78c06e75b5b5": {"title": "Introduction, and Other Dark Matters", "title_sort": "Introduction, and Other Dark Matters", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f1b7a5f4-6bde-48b3-9bbf-78c06e75b5b5", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Duke University Press", "authors": ["Browne| Simone"], "formats": [{"format": "pdf", "file_name": "Introduction, and Other Dark Matters - Browne, Simone.pdf", "dir_path": "Browne, Simone/Introduction, and Other Dark Matters (90)/", "size": 449904}], "cover_url": "Browne, Simone/Introduction, and Other Dark Matters (90)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780822375302"}], "languages": []}, "8e23d0da-fea9-48cc-93b1-85a6053968ec": {"title": "Decolonization is not a metaphor", "title_sort": "Decolonization is not a metaphor", "pubdate": "2012-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "8e23d0da-fea9-48cc-93b1-85a6053968ec", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Tuck| Eve", "Yang| K. Wayne"], "formats": [{"format": "pdf", "file_name": "Decolonization is not a metaphor - Tuck, Eve.pdf", "dir_path": "Tuck, Eve/Decolonization is not a metaphor (91)/", "size": 1240810}], "cover_url": "Tuck, Eve/Decolonization is not a metaphor (91)/cover.jpg", "identifiers": [], "languages": [], "series": "Decolonization: Indigeneity, Educaiton & Society"}, "f824c06c-a247-4bf1-83a7-f83017c47ae8": {"title": "An alternative socio-ecological strategy? International trade unions\u2019 engagement with climate change", "title_sort": "alternative socio-ecological strategy? International trade unions\u2019 engagement with climate change, An", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f824c06c-a247-4bf1-83a7-f83017c47ae8", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Felli| Romain"], "formats": [{"format": "pdf", "file_name": "An alternative socio-ecological strategy_ - Felli, Romain.pdf", "dir_path": "Felli, Romain/An alternative socio-ecological strategy_ International trade unions' engagement with climate ch (92)/", "size": 255609}], "cover_url": "Felli, Romain/An alternative socio-ecological strategy_ International trade unions' engagement with climate ch (92)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "FA2PBRTU"}, {"scheme": "zkey", "code": "3IQRJMW4"}], "languages": []}, "da7f1b3d-9013-423e-986f-44389bd4b237": {"title": "Shenzhen and the Republic of Tinkerers: Open Source Hardware (OSHW) as Tools of Global Governance in the Hackerspaces and DIYbio labs", "title_sort": "Shenzhen and the Republic of Tinkerers: Open Source Hardware (OSHW) as Tools of Global Governance in the Hackerspaces and DIYbio labs", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "da7f1b3d-9013-423e-986f-44389bd4b237", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Kera| Denisa"], "formats": [{"format": "pdf", "file_name": "Shenzhen and the Republic of Tinkerers_ Op - Kera, Denisa.pdf", "dir_path": "Kera, Denisa/Shenzhen and the Republic of Tinkerers_ Open Source Hardware (OSHW) as Tools of Global Governanc (93)/", "size": 281724}], "cover_url": "Kera, Denisa/Shenzhen and the Republic of Tinkerers_ Open Source Hardware (OSHW) as Tools of Global Governanc (93)/cover.jpg", "identifiers": [], "languages": []}, "08713e57-ba12-4fa4-b839-669d62f3e463": {"title": "Slow Violence and the Environmentalism of the Poor", "title_sort": "Slow Violence and the Environmentalism of the Poor", "pubdate": "2011-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "08713e57-ba12-4fa4-b839-669d62f3e463", "tags": ["environmentalresistance"], "abstract": "
\n

The violence wrought by climate change, toxic drift, deforestation, oil spills, and the environmental aftermath of war takes place gradually and often invisibly. Using the innovative concept of \u201cslow violence\u201d to describe these threats, Rob Nixon focuses on the inattention we have paid to the attritional lethality of many environmental crises, in contrast with the sensational, spectacle-driven messaging that impels public activism today. Slow violence, because it is so readily ignored by a hard-charging capitalism, exacerbates the vulnerability of ecosystems and of people who are poor, disempowered, and often involuntarily displaced, while fueling social conflicts that arise from desperation as life-sustaining conditions erode. In a book of extraordinary scope, Nixon examines a cluster of writer-activists affiliated with the environmentalism of the poor in the global South. By approaching environmental justice literature from this transnational perspective, he exposes the limitations of the national and local frames that dominate environmental writing. And by skillfully illuminating the strategies these writer-activists deploy to give dramatic visibility to environmental emergencies, Nixon invites his readers to engage with some of the most pressing challenges of our time. **

", "publisher": "Harvard University Press", "authors": ["Rob Nixon"], "formats": [{"format": "pdf", "file_name": "Slow Violence and the Environmentalism of - Rob Nixon.pdf", "dir_path": "Rob Nixon/Slow Violence and the Environmentalism of the Poor (94)/", "size": 1709361}], "cover_url": "Rob Nixon/Slow Violence and the Environmentalism of the Poor (94)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780674049307"}], "languages": ["eng"]}, "87c535ab-7c87-4547-b191-7bb3019e2da6": {"title": "Low cost equipment for science and technology educaiton", "title_sort": "Low cost equipment for science and technology educaiton", "pubdate": "1985-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "87c535ab-7c87-4547-b191-7bb3019e2da6", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["UNESCO"], "formats": [{"format": "pdf", "file_name": "Low cost equipment for science and technol - UNESCO.pdf", "dir_path": "UNESCO/Low cost equipment for science and technology educaiton (95)/", "size": 5828608}], "cover_url": "UNESCO/Low cost equipment for science and technology educaiton (95)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "4UMXGTHD"}, {"scheme": "zkey", "code": "F7PXH5G6"}], "languages": []}, "962ecb28-072c-435f-bd74-b37092cb389d": {"title": "Sex genes: A critical sociomaterial approach to the politics and molecular genetics of sex determination", "title_sort": "Sex genes: A critical sociomaterial approach to the politics and molecular genetics of sex determination", "pubdate": "2006-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "962ecb28-072c-435f-bd74-b37092cb389d", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Fujimura| Joan H."], "formats": [{"format": "pdf", "file_name": "Sex genes_ A critical sociomaterial approa - Fujimura, Joan H_.pdf", "dir_path": "Fujimura, Joan H_/Sex genes_ A critical sociomaterial approach to the politics and molecular genetics of sex deter (96)/", "size": 160917}], "cover_url": "Fujimura, Joan H_/Sex genes_ A critical sociomaterial approach to the politics and molecular genetics of sex deter (96)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "GC22ZI5D"}, {"scheme": "zkey_file", "code": "EKX5GYFT"}, {"scheme": "doi", "code": "10.1086/505612"}], "languages": []}, "89da0e73-b420-48ba-9db6-14072b7a284a": {"title": "Micro_zine 02", "title_sort": "Micro_zine 02", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "89da0e73-b420-48ba-9db6-14072b7a284a", "tags": ["horomonestoxicitybodysovereignty", "transhackfeminism"], "abstract": "", "publisher": "Biotranslab", "authors": ["Biotranslab"], "formats": [{"format": "pdf", "file_name": "Micro_zine 02 - Biotranslab.pdf", "dir_path": "Biotranslab/Micro_zine 02 (97)/", "size": 1154117}], "cover_url": "Biotranslab/Micro_zine 02 (97)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "XRTNVR97"}, {"scheme": "zkey", "code": "XLSCN7LJ"}], "languages": []}, "ec90a452-d432-499d-87f2-cade1b5b8433": {"title": "Bodies Inside/Out: A Phenomenology of the Terrorized Body in Prison.\"", "title_sort": "Bodies Inside/Out: A Phenomenology of the Terrorized Body in Prison.\"", "pubdate": "2001-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ec90a452-d432-499d-87f2-cade1b5b8433", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Doyle| Laura"], "formats": [{"format": "pdf", "file_name": "Bodies Inside_Out_ A Phenomenology of the - Doyle, Laura.pdf", "dir_path": "Doyle, Laura/Bodies Inside_Out_ A Phenomenology of the Terrorized Body in Prison._ (98)/", "size": 1330812}], "cover_url": "Doyle, Laura/Bodies Inside_Out_ A Phenomenology of the Terrorized Body in Prison._ (98)/cover.jpg", "identifiers": [], "languages": []}, "bc405cdf-5a40-4cef-8aaf-e74dbc72b0e7": {"title": "Unsettling care: Troubling transnational itineraries of care in feminist health practices", "title_sort": "Unsettling care: Troubling transnational itineraries of care in feminist health practices", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bc405cdf-5a40-4cef-8aaf-e74dbc72b0e7", "tags": ["transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Murphy| Michelle"], "formats": [{"format": "pdf", "file_name": "Unsettling care_ Troubling transnational i - Murphy, Michelle.pdf", "dir_path": "Murphy, Michelle/Unsettling care_ Troubling transnational itineraries of care in feminist health practices (99)/", "size": 216868}], "cover_url": "Murphy, Michelle/Unsettling care_ Troubling transnational itineraries of care in feminist health practices (99)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1177/0306312715589136"}], "languages": [], "series": "Social Studies of Science"}, "165d1d9b-d4c6-461d-8d18-16268abcaf17": {"title": "Technology as a geological phenomenon: implications for human well-being", "title_sort": "Technology as a geological phenomenon: implications for human well-being", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "165d1d9b-d4c6-461d-8d18-16268abcaf17", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Haff| P. K."], "formats": [{"format": "pdf", "file_name": "Technology as a geological phenomenon_ imp - Haff, P. K_.pdf", "dir_path": "Haff, P. K_/Technology as a geological phenomenon_ implications for human well-being (100)/", "size": 101737}], "cover_url": "Haff, P. K_/Technology as a geological phenomenon_ implications for human well-being (100)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "0305-87192041-4927"}, {"scheme": "doi", "code": "10.1144/sp395.4"}], "languages": [], "series": "A Stratigraphical Basis for the Anthropocene"}, "ff9e0d6c-2787-47fa-8b25-9feddfadc340": {"title": "Sex, Race and Class-The Perspective of Winning: A Selection of Writings 1952-2011", "title_sort": "Sex, Race and Class-The Perspective of Winning: A Selection of Writings 1952-2011", "pubdate": "2012-03-02 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ff9e0d6c-2787-47fa-8b25-9feddfadc340", "tags": ["commoningcare"], "abstract": "
\n

Branching off Marx\u2019s theories of class struggle, this impressive collection of essays on workers\u2019 rights as they pertains to women\u2019s rights aims to educate and inform those interested in radical feminist labor theory. Arguing that class struggle manifests itself as the conflict between the reproduction and survival of the human race, the general theme of the collected essays leans left and warns of market exploitation, war, and ecological disaster. Spanning nearly six decades and compiling essays that have appeared in anthologies or are selections from Selma James' books\u2014some printed here for the first time\u2014these selections preach equality in wages for men and women alike, especially in nontraditional work environments.

", "publisher": "PM Press", "authors": ["Selma James"], "formats": [{"format": "pdf", "file_name": "Sex, Race and Class-The Perspective of Win - Selma James.pdf", "dir_path": "Selma James/Sex, Race and Class-The Perspective of Winning_ A Selection of Writings 1952-2011 (101)/", "size": 11685339}], "cover_url": "Selma James/Sex, Race and Class-The Perspective of Winning_ A Selection of Writings 1952-2011 (101)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "B0087GJY7O"}, {"scheme": "isbn", "code": "1604864540"}, {"scheme": "zkey_file", "code": "GR7DCTAX"}, {"scheme": "zkey", "code": "79KKGYSZ"}], "languages": ["eng"]}, "75342afa-30e7-4893-b5a9-2707c4cac929": {"title": "Situating Bio-Logic, Refiguring Sex: Intersexuality and Coloniality", "title_sort": "Situating Bio-Logic, Refiguring Sex: Intersexuality and Coloniality", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "75342afa-30e7-4893-b5a9-2707c4cac929", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "Routledge", "authors": ["Maltino| Hilary"], "formats": [{"format": "pdf", "file_name": "Situating Bio-Logic, Refiguring Sex_ Inter - Maltino, Hilary.pdf", "dir_path": "Maltino, Hilary/Situating Bio-Logic, Refiguring Sex_ Intersexuality and Coloniality (102)/", "size": 1065912}], "cover_url": "Maltino, Hilary/Situating Bio-Logic, Refiguring Sex_ Intersexuality and Coloniality (102)/cover.jpg", "identifiers": [], "languages": []}, "3c2ae441-dc45-4df9-96d0-0b3abfa82eb3": {"title": "Perverting Pollution and Queering Hormone Disruption", "title_sort": "Perverting Pollution and Queering Hormone Disruption", "pubdate": "2013-09-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "3c2ae441-dc45-4df9-96d0-0b3abfa82eb3", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Ah-King| Malin", "Hayward| Eva"], "formats": [{"format": "pdf", "file_name": "Perverting Pollution and Queering Hormone - Ah-King, Malin.pdf", "dir_path": "Ah-King, Malin/Perverting Pollution and Queering Hormone Disruption (103)/", "size": 192749}], "cover_url": "Ah-King, Malin/Perverting Pollution and Queering Hormone Disruption (103)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "2326-8344"}], "languages": [], "series": "O-Zone: A Journal of Object-Oriented Studies"}, "9d7d9286-52e9-4cba-8ab5-d829fa31f163": {"title": "Where does it hurt?: The new world of medical humanities", "title_sort": "Where does it hurt?: The new world of medical humanities", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "9d7d9286-52e9-4cba-8ab5-d829fa31f163", "tags": ["psychosocialautonomy"], "abstract": "", "publisher": "Wellcome Trust", "authors": ["Unknown"], "formats": [{"format": "pdf", "file_name": "Where does it hurt__ The new world of medi - Unknown.pdf", "dir_path": "Unknown/Where does it hurt__ The new world of medical humanities (104)/", "size": 7054519}], "cover_url": "Unknown/Where does it hurt__ The new world of medical humanities (104)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780957028579"}], "languages": []}, "f5ad30db-75fe-4575-902c-c6a2d4b91b35": {"title": "The Racial Contract", "title_sort": "Racial Contract, The", "pubdate": "2014-01-27 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f5ad30db-75fe-4575-902c-c6a2d4b91b35", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

The Racial Contract puts classic Western social contract theory, deadpan, to extraordinary radical use. With a sweeping look at the European expansionism and racism of the last five hundred years, Charles W. Mills demonstrates how this peculiar and unacknowledged \"contract\" has shaped a system of global European domination: how it brings into existence \"whites\" and \"non-whites,\" full persons and sub-persons, how it influences white moral theory and moral psychology; and how this system is imposed on non-whites through ideological conditioning and violence. The Racial Contract argues that the society we live in is a continuing white supremacist state. Holding up a mirror to mainstream philosophy, this provocative book explains the evolving outline of the racial contract from the time of the New World conquest and subsequent colonialism to the written slavery contract, to the \"separate but equal\" system of segregation in the twentieth-century United States. According to Mills, the contract has provided the theoretical architecture justifying an entire history of European atrocity against non-whites, from David Hume's and Immanuel Kant's claims that blacks had inferior cognitive power, to the Holocaust, to the kind of imperialism in Asia that was demonstrated by the Vietnam War. Mills suggests that the ghettoization of philosophical work on race is no accident. This work challenges the assumption that mainstream theory is itself raceless. Just as feminist theory has revealed orthodox political philosophy's invisible white male bias, Mills's explication of the racial contract exposes its racial underpinnings. **

\n


", "publisher": "Cornell University Press", "authors": ["Charles W. Mills"], "formats": [{"format": "pdf", "file_name": "The Racial Contract - Charles W. Mills.pdf", "dir_path": "Charles W. Mills/The Racial Contract (105)/", "size": 9640923}], "cover_url": "Charles W. Mills/The Racial Contract (105)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780801471353"}], "languages": ["eng"]}, "63fcf73a-3681-4757-b76c-98788935c6ce": {"title": "A very careful strike\u2013Four hypotheses", "title_sort": "very careful strike\u2013Four hypotheses, A", "pubdate": "2006-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "63fcf73a-3681-4757-b76c-98788935c6ce", "tags": ["commoningcare"], "abstract": "", "publisher": "", "authors": ["Precarias a la Deriva"], "formats": [{"format": "pdf", "file_name": "A very careful strike-Four hypotheses - Precarias a la Deriva.pdf", "dir_path": "Precarias a la Deriva/A very careful strike-Four hypotheses (106)/", "size": 352139}], "cover_url": "Precarias a la Deriva/A very careful strike-Four hypotheses (106)/cover.jpg", "identifiers": [], "languages": []}, "acda6aa0-cde9-4924-92c5-7a70d30e63ed": {"title": "Anthropocene, capitalocene, plantationocene, chthulucene: Making kin", "title_sort": "Anthropocene, capitalocene, plantationocene, chthulucene: Making kin", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "acda6aa0-cde9-4924-92c5-7a70d30e63ed", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Haraway| Donna"], "formats": [{"format": "pdf", "file_name": "Anthropocene, capitalocene, plantationocen - Haraway, Donna.pdf", "dir_path": "Haraway, Donna/Anthropocene, capitalocene, plantationocene, chthulucene_ Making kin (107)/", "size": 282349}], "cover_url": "Haraway, Donna/Anthropocene, capitalocene, plantationocene, chthulucene_ Making kin (107)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "2201-1919"}], "languages": []}, "c89247dc-9151-4970-adec-18042ca95be9": {"title": "The Official Biononymous Guide to Extract your DNA", "title_sort": "Official Biononymous Guide to Extract your DNA, The", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c89247dc-9151-4970-adec-18042ca95be9", "tags": ["bioresistance", "transhackfeminism"], "abstract": "", "publisher": "biononymous.me & biogenfutur.es", "authors": ["Dewey-Hagborg| Heather", "Solomon| Jarad"], "formats": [{"format": "pdf", "file_name": "The Official Biononymous Guide to Extract - Dewey-Hagborg, Heather.pdf", "dir_path": "Dewey-Hagborg, Heather/The Official Biononymous Guide to Extract your DNA (108)/", "size": 2242581}], "cover_url": "Dewey-Hagborg, Heather/The Official Biononymous Guide to Extract your DNA (108)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "89SMSWR3"}, {"scheme": "zkey_file", "code": "QQ67A345"}], "languages": []}, "f71ac104-baf7-4e67-9c93-0f8ed2589270": {"title": "Bioart interventions into the biotechnology discourses on hormones", "title_sort": "Bioart interventions into the biotechnology discourses on hormones", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "f71ac104-baf7-4e67-9c93-0f8ed2589270", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Weetzel| V. H. J. R."], "formats": [{"format": "pdf", "file_name": "Bioart interventions into the biotechnolog - Weetzel, V. H. J. R_.pdf", "dir_path": "Weetzel, V. H. J. R_/Bioart interventions into the biotechnology discourses on hormones (109)/", "size": 1150039}], "cover_url": "Weetzel, V. H. J. R_/Bioart interventions into the biotechnology discourses on hormones (109)/cover.jpg", "identifiers": [], "languages": []}, "0bf45077-56c6-4ea0-a7f7-c4ffa6f25803": {"title": "The New Jim Crow", "title_sort": "New Jim Crow, The", "pubdate": "2012-01-16 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0bf45077-56c6-4ea0-a7f7-c4ffa6f25803", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

Once in a great while a book comes along that changes the way we see the world and helps to fuel a nationwide social movement. The New Jim Crow is such a book. Praised by Harvard Law professor Lani Guinier as \"brave and bold,\" this book directly challenges the notion that the election of Barack Obama signals a new era of colorblindness. With dazzling candor, legal scholar Michelle Alexander argues that \"we have not ended racial caste in America; we have merely redesigned it.\" By targeting black men through the War on Drugs and decimating communities of color, the U.S. criminal justice system functions as a contemporary system of racial control\u2014relegating millions to a permanent second-class status\u2014even as it formally adheres to the principle of colorblindness. In the words of Benjamin Todd Jealous, president and CEO of the NAACP, this book is a \"call to action.\"

\n

Called \"stunning\" by Pulitzer Prize\u2013winning historian David Levering Lewis, \"invaluable\" by the Daily Kos , \"explosive\" by Kirkus , and \"profoundly necessary\" by the Miami Herald , this updated and revised paperback edition of The New Jim Crow , now with a foreword by Cornel West, is a must-read for all people of conscience.

", "publisher": "The New Press", "authors": ["Michelle Alexander", "Cornel West"], "formats": [{"format": "pdf", "file_name": "The New Jim Crow - Michelle Alexander.pdf", "dir_path": "Michelle Alexander/The New Jim Crow (110)/", "size": 1214770}], "cover_url": "Michelle Alexander/The New Jim Crow (110)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781595588197"}], "languages": ["eng"]}, "58f9182f-f370-4b6e-a097-dab654707afb": {"title": "Just oil? The distribution of environmental and social impacts of oil production and consumption", "title_sort": "Just oil? The distribution of environmental and social impacts of oil production and consumption", "pubdate": "2003-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "58f9182f-f370-4b6e-a097-dab654707afb", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["O'Rourke| Dara", "Connolly| Sarah"], "formats": [{"format": "pdf", "file_name": "Just oil_ The distribution of environmenta - O'Rourke, Dara.pdf", "dir_path": "O'Rourke, Dara/Just oil_ The distribution of environmental and social impacts of oil production and consumptio (111)/", "size": 248573}], "cover_url": "O'Rourke, Dara/Just oil_ The distribution of environmental and social impacts of oil production and consumptio (111)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1146/annurev.energy.28.050302.105617"}], "languages": [], "series": "Annual Review of Environmental Resources"}, "de5afe8e-f439-4d2a-b1c7-9e51d5c51d1b": {"title": "TOWARD A CRITICAL ENVIRONMENTAL JUSTICE STUDIES: Black Lives Matter as an Environmental Justice Challenge", "title_sort": "TOWARD A CRITICAL ENVIRONMENTAL JUSTICE STUDIES: Black Lives Matter as an Environmental Justice Challenge", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "de5afe8e-f439-4d2a-b1c7-9e51d5c51d1b", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Pellow| David N."], "formats": [{"format": "pdf", "file_name": "TOWARD A CRITICAL ENVIRONMENTAL JUSTICE ST - Pellow, David N_.pdf", "dir_path": "Pellow, David N_/TOWARD A CRITICAL ENVIRONMENTAL JUSTICE STUDIES_ Black Lives Matter as an Environmental Justice (112)/", "size": 135177}], "cover_url": "Pellow, David N_/TOWARD A CRITICAL ENVIRONMENTAL JUSTICE STUDIES_ Black Lives Matter as an Environmental Justice (112)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "1742-058x1742-0598"}, {"scheme": "doi", "code": "10.1017/s1742058x1600014x"}], "languages": [], "series": "Du Bois Review"}, "db3d2cf0-7eaf-46fb-9532-4a9daf1c6535": {"title": "The 3D Additivist Cookbook", "title_sort": "3D Additivist Cookbook, The", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "db3d2cf0-7eaf-46fb-9532-4a9daf1c6535", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "Institute of Network Cultures", "authors": ["Rourke| Daniel", "Allahyari| Morehshin"], "formats": [{"format": "pdf", "file_name": "The 3D Additivist Cookbook - Rourke, Daniel.pdf", "dir_path": "Rourke, Daniel/The 3D Additivist Cookbook (113)/", "size": 1292325}], "cover_url": "Rourke, Daniel/The 3D Additivist Cookbook (113)/cover.jpg", "identifiers": [], "languages": []}, "ab493921-a2f9-4a2e-998f-fe0c2ab93071": {"title": "Entrepreneurs, squatters and low-tech artisans: DIYbio and Hackerspace models of citizen science between EU, Asia and USA", "title_sort": "Entrepreneurs, squatters and low-tech artisans: DIYbio and Hackerspace models of citizen science between EU, Asia and USA", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ab493921-a2f9-4a2e-998f-fe0c2ab93071", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Kera| Denisa"], "formats": [{"format": "pdf", "file_name": "Entrepreneurs, squatters and low-tech arti - Kera, Denisa.pdf", "dir_path": "Kera, Denisa/Entrepreneurs, squatters and low-tech artisans_ DIYbio and Hackerspace models of citizen scienc (114)/", "size": 45874}], "cover_url": "Kera, Denisa/Entrepreneurs, squatters and low-tech artisans_ DIYbio and Hackerspace models of citizen scienc (114)/cover.jpg", "identifiers": [], "languages": []}, "175af10c-e7f2-4ebc-b48e-802bc13ceb6f": {"title": "A good life for all within planetary boundaries", "title_sort": "good life for all within planetary boundaries, A", "pubdate": "2018-02-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "175af10c-e7f2-4ebc-b48e-802bc13ceb6f", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["O\u2019Neill| Daniel W.", "Fanning| Andrew L.", "Lamb| William F.", "Steinberger| Julia K."], "formats": [{"format": "pdf", "file_name": "A good life for all within planetary bound - O'Neill, Daniel W_.pdf", "dir_path": "O'Neill, Daniel W_/A good life for all within planetary boundaries (115)/", "size": 1885616}], "cover_url": "O'Neill, Daniel W_/A good life for all within planetary boundaries (115)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1038/s41893-018-0021-4"}, {"scheme": "issn", "code": "2398-9629"}, {"scheme": "zkey", "code": "LVLK43I8"}, {"scheme": "zkey_file", "code": "ND4Q3ZJ8"}], "languages": [], "series": "Nature Sustainability"}, "c57cfd4b-8067-43f5-9204-bf1359f8b840": {"title": "Distributed biotechnology", "title_sort": "Distributed biotechnology", "pubdate": "2017-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c57cfd4b-8067-43f5-9204-bf1359f8b840", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Delfanti| Alessandro"], "formats": [{"format": "pdf", "file_name": "Distributed biotechnology - Delfanti, Alessandro.pdf", "dir_path": "Delfanti, Alessandro/Distributed biotechnology (116)/", "size": 382424}], "cover_url": "Delfanti, Alessandro/Distributed biotechnology (116)/cover.jpg", "identifiers": [], "languages": []}, "4b0207a0-2999-45e7-82ba-d818628e50cb": {"title": "Five Faces of Oppression", "title_sort": "Five Faces of Oppression", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "4b0207a0-2999-45e7-82ba-d818628e50cb", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Princeton University Press", "authors": ["Iris Young"], "formats": [{"format": "pdf", "file_name": "Five Faces of Oppression - Iris Young.pdf", "dir_path": "Iris Young/Five Faces of Oppression (117)/", "size": 318893}], "cover_url": "Iris Young/Five Faces of Oppression (117)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781400839902"}], "languages": []}, "bfab6bcb-d85d-46ca-bb33-323936ed0b55": {"title": "Laboratory methods for the analysis of microplastics in the marine environment: recommendations for quantifying synthetic particles in waters and sediments", "title_sort": "Laboratory methods for the analysis of microplastics in the marine environment: recommendations for quantifying synthetic particles in waters and sediments", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bfab6bcb-d85d-46ca-bb33-323936ed0b55", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Masura| Julie", "Baker| Joel E.", "Foster| Gregory Duane", "Arthur| Courtney", "Herring| Carlie"], "formats": [{"format": "pdf", "file_name": "Laboratory methods for the analysis of mic - Masura, Julie.pdf", "dir_path": "Masura, Julie/Laboratory methods for the analysis of microplastics in the marine environment_ recommendations (118)/", "size": 3804459}], "cover_url": "Masura, Julie/Laboratory methods for the analysis of microplastics in the marine environment_ recommendations (118)/cover.jpg", "identifiers": [], "languages": []}, "473b5bcb-d9dc-49f7-85b0-bad0431272b4": {"title": "Recipe #1", "title_sort": "Recipe #1", "pubdate": "2013-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "473b5bcb-d9dc-49f7-85b0-bad0431272b4", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Pavillon 35"], "formats": [{"format": "pdf", "file_name": "Recipe #1 - Pavillon 35.pdf", "dir_path": "Pavillon 35/Recipe #1 (119)/", "size": 3927118}], "cover_url": "Pavillon 35/Recipe #1 (119)/cover.jpg", "identifiers": [], "languages": []}, "a6a31e83-aff0-4240-9232-e6987d69848d": {"title": "This Changes Everything: Capitalism vs. The Climate", "title_sort": "This Changes Everything: Capitalism vs. The Climate", "pubdate": "2014-09-15 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "a6a31e83-aff0-4240-9232-e6987d69848d", "tags": ["environmentalresistance"], "abstract": "
\n

The most important book yet from the author of the international bestseller The Shock Doctrine, a brilliant explanation of why the climate crisis challenges us to abandon the core \u201cfree market\u201d ideology of our time, restructure the global economy, and remake our political systems.

\n

In short, either we embrace radical change ourselves or radical changes will be visited upon our physical world. The status quo is no longer an option.

\n

In This Changes Everything Naomi Klein argues that climate change isn\u2019t just another issue to be neatly filed between taxes and health care. It\u2019s an alarm that calls us to fix an economic system that is already failing us in many ways. Klein meticulously builds the case for how massively reducing our greenhouse emissions is our best chance to simultaneously reduce gaping inequalities, re-imagine our broken democracies, and rebuild our gutted local economies. She exposes the ideological desperation of the climate-change deniers, the messianic delusions of the would-be geoengineers, and the tragic defeatism of too many mainstream green initiatives. And she demonstrates precisely why the market has not\u2014and cannot\u2014fix the climate crisis but will instead make things worse, with ever more extreme and ecologically damaging extraction methods, accompanied by rampant disaster capitalism.

\n

Klein argues that the changes to our relationship with nature and one another that are required to respond to the climate crisis humanely should not be viewed as grim penance, but rather as a kind of gift\u2014a catalyst to transform broken economic and cultural priorities and to heal long-festering historical wounds. And she documents the inspiring movements that have already begun this process: communities that are not just refusing to be sites of further fossil fuel extraction but are building the next, regeneration-based economies right now.

\n

Can we pull off these changes in time? Nothing is certain. Nothing except that climate change changes everything. And for a very brief time, the nature of that change is still up to us. **

", "publisher": "Simon & Schuster", "authors": ["Naomi Klein"], "formats": [{"format": "pdf", "file_name": "This Changes Everything_ Capitalism vs. Th - Naomi Klein.pdf", "dir_path": "Naomi Klein/This Changes Everything_ Capitalism vs. The Climate (120)/", "size": 2679430}], "cover_url": "Naomi Klein/This Changes Everything_ Capitalism vs. The Climate (120)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781451697384"}], "languages": ["eng"]}, "3488e8e8-61dc-4f4d-af3b-fb153c0715ae": {"title": "Manual of Collective Mapping: Critical Cartographic Resources for Territorial Processes of Collaborative Creation", "title_sort": "Manual of Collective Mapping: Critical Cartographic Resources for Territorial Processes of Collaborative Creation", "pubdate": "2016-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "3488e8e8-61dc-4f4d-af3b-fb153c0715ae", "tags": ["commoningcare"], "abstract": "", "publisher": "", "authors": ["Iconoclasistas"], "formats": [{"format": "pdf", "file_name": "Manual of Collective Mapping_ Critical Car - Iconoclasistas.pdf", "dir_path": "Iconoclasistas/Manual of Collective Mapping_ Critical Cartographic Resources for Territorial Processes of Coll (121)/", "size": 67373939}], "cover_url": "Iconoclasistas/Manual of Collective Mapping_ Critical Cartographic Resources for Territorial Processes of Coll (121)/cover.jpg", "identifiers": [], "languages": []}, "abf54663-5244-4d39-b219-dd8bd41740e1": {"title": "Beyond activism/academia: militant research and the radical climate and climate justice movement(s)", "title_sort": "Beyond activism/academia: militant research and the radical climate and climate justice movement(s)", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "abf54663-5244-4d39-b219-dd8bd41740e1", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Russell| Bertie"], "formats": [{"format": "pdf", "file_name": "Beyond activism_academia_ militant researc - Russell, Bertie.pdf", "dir_path": "Russell, Bertie/Beyond activism_academia_ militant research and the radical climate and climate justice movemen (122)/", "size": 153319}], "cover_url": "Russell, Bertie/Beyond activism_academia_ militant research and the radical climate and climate justice movemen (122)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1111/area.12086"}, {"scheme": "zkey", "code": "BEBMRAKU"}, {"scheme": "zkey_file", "code": "ITY9SSUJ"}, {"scheme": "issn", "code": "0004-0894"}], "languages": [], "series": "Area"}, "17a54657-0cf1-43fe-be81-07351d278174": {"title": "Social reproduction theory: History, issues and present challenges", "title_sort": "Social reproduction theory: History, issues and present challenges", "pubdate": "2019-03-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "17a54657-0cf1-43fe-be81-07351d278174", "tags": ["commoningcare"], "abstract": "", "publisher": "", "authors": ["Federici| Silvia"], "formats": [{"format": "pdf", "file_name": "Social reproduction theory_ History, issue - Federici, Silvia.pdf", "dir_path": "Federici, Silvia/Social reproduction theory_ History, issues and present challenges (123)/", "size": 381326}], "cover_url": "Federici, Silvia/Social reproduction theory_ History, issues and present challenges (123)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "0300-211x"}, {"scheme": "zkey", "code": "KVZRQH7M"}, {"scheme": "zkey_file", "code": "USRRS8SV"}], "languages": [], "series": "Radical Philosophy"}, "66fb5534-6101-4861-ab75-496f543b6662": {"title": "Recognizing the Autonomy of Nature: Theory and Practice", "title_sort": "Recognizing the Autonomy of Nature: Theory and Practice", "pubdate": "2005-11-09 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "66fb5534-6101-4861-ab75-496f543b6662", "tags": ["environmentalresistance"], "abstract": "
\n

How do the ways in which we think about and describe nature shape the use and protection of the environment? Do our seemingly well-intentioned efforts in environmental conservation reflect a respect for nature or our desire to control nature's wildness? The contributors to this collection address these and other questions as they explore the theoretical and practical implications of a crucial aspect of environmental philosophy and policy-the autonomy of nature. In focusing on the recognition and meaning of nature's autonomy and linking issues of metaphysics, epistemology, ethics, and policy, the essays provide a variety of new perspectives on human relationships to nature.

\n

The authors begin by exploring what is meant by \"nature,\" in what sense it can be seen as autonomous, and what respect for the autonomy of nature might entail. They examine the conflicts that arise between the satisfaction of human needs (food, shelter, etc.) and the natural world. The contributors also consider whether the activities of human beings contribute to nature's autonomy. In their investigation of these issues, they not only draw on philosophy and ethics; they also discuss how the idea of nature's autonomy affects policy decisions regarding the protection of agricultural, rural, and beach areas.

\n

The essays in the book's final section turn to management and restoration practices. The essays in this section pay close attention to how efforts at environmental protection alter or reinforce the traditional relationship between humans and nature. More specifically, the contributors examine whether management practices, as they are applied in nature conservation, actually promote the autonomy of nature, or whether they turn the environment into a \"client\" for policymakers. **

", "publisher": "Columbia University Press", "authors": ["Thomas Heyd"], "formats": [{"format": "pdf", "file_name": "Recognizing the Autonomy of Nature_ Theory - Thomas Heyd.pdf", "dir_path": "Thomas Heyd/Recognizing the Autonomy of Nature_ Theory and Practice (124)/", "size": 1344928}], "cover_url": "Thomas Heyd/Recognizing the Autonomy of Nature_ Theory and Practice (124)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780231136068"}], "languages": ["eng"]}, "50f07ee1-a734-4a5f-8c08-59fbddc8a852": {"title": "\u201cGender-benders\u201d: Sex and Law in the Constitution of Polluted Bodies", "title_sort": "Gender-benders\u201d: Sex and Law in the Constitution of Polluted Bodies", "pubdate": "2009-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "50f07ee1-a734-4a5f-8c08-59fbddc8a852", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Scott| Dayna Nadine"], "formats": [{"format": "pdf", "file_name": "_Gender-benders__ Sex and Law in the Const - Scott, Dayna Nadine.pdf", "dir_path": "Scott, Dayna Nadine/_Gender-benders__ Sex and Law in the Constitution of Polluted Bodies (125)/", "size": 736053}], "cover_url": "Scott, Dayna Nadine/_Gender-benders__ Sex and Law in the Constitution of Polluted Bodies (125)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1007/s10691-009-9127-4"}, {"scheme": "issn", "code": "1572-8455"}], "languages": [], "series": "Feminist Legal Studies"}, "87b238c5-4412-4bc5-b42e-27bab643e6b8": {"title": "Wages Against Housework", "title_sort": "Wages Against Housework", "pubdate": "1975-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "87b238c5-4412-4bc5-b42e-27bab643e6b8", "tags": ["commoningcare"], "abstract": "", "publisher": "Falling Wall Press [for] the Power of Women Collective", "authors": ["Federici| Silvia"], "formats": [{"format": "pdf", "file_name": "Wages Against Housework - Federici, Silvia.pdf", "dir_path": "Federici, Silvia/Wages Against Housework (126)/", "size": 709681}], "cover_url": "Federici, Silvia/Wages Against Housework (126)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780950270296"}], "languages": []}, "bf24c02b-cf18-4c0a-81c4-7d7bf5d0af88": {"title": "The Official Biononymous Guide to Replace your DNA", "title_sort": "Official Biononymous Guide to Replace your DNA, The", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bf24c02b-cf18-4c0a-81c4-7d7bf5d0af88", "tags": ["bioresistance", "transhackfeminism"], "abstract": "", "publisher": "biononymous.me & biogenfutur.es", "authors": ["Dewey-Hagborg| Heather", "Solomon| Jarad"], "formats": [{"format": "pdf", "file_name": "The Official Biononymous Guide to Replace - Dewey-Hagborg, Heather.pdf", "dir_path": "Dewey-Hagborg, Heather/The Official Biononymous Guide to Replace your DNA (127)/", "size": 1156205}], "cover_url": "Dewey-Hagborg, Heather/The Official Biononymous Guide to Replace your DNA (127)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "3GFD6BQC"}, {"scheme": "zkey", "code": "SWIY8G2I"}], "languages": []}, "ad20f921-bc75-4294-9afb-24ff88dc82c9": {"title": "Being Indigenous: Resurgences against contemporary colonialism", "title_sort": "Being Indigenous: Resurgences against contemporary colonialism", "pubdate": "2005-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ad20f921-bc75-4294-9afb-24ff88dc82c9", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Alfred| Taiaiake", "Corntassel| Jeff"], "formats": [{"format": "pdf", "file_name": "Being Indigenous_ Resurgences against cont - Alfred, Taiaiake.pdf", "dir_path": "Alfred, Taiaiake/Being Indigenous_ Resurgences against contemporary colonialism (128)/", "size": 80662}], "cover_url": "Alfred, Taiaiake/Being Indigenous_ Resurgences against contemporary colonialism (128)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1111/j.1477-7053.2005.00166.x"}], "languages": []}, "030a8bc3-a127-45ee-9d70-6ab62fcb56fb": {"title": "No Future: Queer Theory and the Death Drive", "title_sort": "No Future: Queer Theory and the Death Drive", "pubdate": "2004-12-06 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "030a8bc3-a127-45ee-9d70-6ab62fcb56fb", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "
\n

In this searing polemic, Lee Edelman outlines a radically uncompromising new ethics of queer theory. His main target is the all-pervasive figure of the child, which he reads as the linchpin of our universal politics of \u201creproductive futurism.\u201d Edelman argues that the child, understood as innocence in need of protection, represents the possibility of the future against which the queer is positioned as the embodiment of a relentlessly narcissistic, antisocial, and future-negating drive. He boldly insists that the efficacy of queerness lies in its very willingness to embrace this refusal of the social and political order. In No Future , Edelman urges queers to abandon the stance of accommodation and accede to their status as figures for the force of a negativity that he links with irony, jouissance , and, ultimately, the death drive itself. Closely engaging with literary texts, Edelman makes a compelling case for imagining Scrooge without Tiny Tim and Silas Marner without little Eppie. Looking to Alfred Hitchcock\u2019s films, he embraces two of the director\u2019s most notorious creations: the sadistic Leonard of North by Northwest , who steps on the hand that holds the couple precariously above the abyss, and the terrifying title figures of The Birds , with their predilection for children. Edelman enlarges the reach of contemporary psychoanalytic theory as he brings it to bear not only on works of literature and film but also on such current political flashpoints as gay marriage and gay parenting. Throwing down the theoretical gauntlet, No Future reimagines queerness with a passion certain to spark an equally impassioned debate among its readers. **

\n

From Publishers Weekly

\n

Queer theory, a fairly recent academic discipline, has been commonly used as an analytic tool to deconstruct literature, film and art, although writers such as Judith Butler and Michael Warner have also applied it to philosophy and sociology to subvert accepted concepts of the \"normal.\" Edelman\u2019s slim volume takes this idea further than anyone else to date. Arguing that the traditional Western concept of politics is predicated on making the future a better place and that the accepted\u2014literal as well as symbolic\u2014image of the future is the child, he states that \"queerness names the side of those not \u2018fighting for the children.\u2019\u00a0\" Edelman argues that homosexuality\u2019s perceived social threat has to do with its separation from the act of reproduction, yet, he says, this non-reproductive capacity must be embraced as a social good. He illustrates his provocative stance by analyzing numerous cultural artifacts\u2014Alfred Hitchcock\u2019s The Birds (why do the birds keep attacking children?); A Christmas Carol (he favors Scrooge over Tiny Tim); the musical Annie (with its hit song \"Tomorrow\")\u2014and by discussing the theories of post-modern writers such as Jacques Lacan, Slavoj Zizak, Jean Baudrillard and Barbara Johnson. While Edelman also focuses on recent events\u2014the murder of Matthew Shepard, the bombing of abortion clinics, the Catholic Church\u2019s sexual abuse scandal\u2014most of his book is densely written and theoretical. This is a notable contribution to post-modern theory, but Edelman\u2019s knotted, often muddled writing will limit his readership to hard-core academics and students of post-modern thought.
Copyright \u00a9 Reed Business Information, a division of Reed Elsevier Inc. All rights reserved.

\n

Review

\n

\u201cThe book represents a rigorous attempt to think at once generatively and against tropes of generation, to work at once in irony and in earnest to demonstrate the political\u2019s material dependence on Symbolic homo-logy.\u201dWhether we decide to follow Edelman\u2019s example of rejecting the future or vehemently react against his polemic, No Future leaves no doubt that we cannot get around thinking critically about the uses and abuses of futurity.\u201cThe book represents a rigorous attempt to think at once generatively and against tropes of generation, to work at once in irony and in earnest to demonstrate the political\u2019s material dependence on Symbolic homo-logy.\u201d - Jana Funke, thirdspace

\n

\"One of the great virtues of Edelman's thesis is that it restores the distinction between queerness and homosexuality per se. Edelman goes some way to returning the uncanniness attached to queerness which has been dispelled by the very signifier 'gay' and the cosy, Kylie-loving, unthreatening cheeriness with which it has become associated.\" - K-Punk

\n

\"This is a book, I confess, that I would love to have written. Angry, eloquent, precise, beautifully composed, funny, over the top, and very smart, the four chapters . . . articulate a controversial and disturbingly persuasive figural and rhetorical diagnostic of a moment in U.S. political life.\" - Carla Freccero, GLQ

\n

\u201cEdelman has certainly articulated a new direction for queer theory, making No Future required reading both within the field and beyond.\u201d - Andrea Fontenot, Modern Fiction Studies

\n

\u201cThe book represents a rigorous attempt to think at once generatively and against tropes of generation, to work at once in irony and in earnest to demonstrate the political\u2019s material dependence on Symbolic homo-logy.\u201d - Carolyn Denver, Victorian Studies

\n

\u201c No Future is a nuanced polemic, both ringingly clear in its aesthetic and theoretical explications and simply thrilling to read. I learn so much from the way Lee Edelman grounds a queer ethics and politics outside kinship and reproductive circuits, those spaces of assimilation that use the bribe of futurity to distract us from the ongoing work of social violence and death.\u201d\u2014Lauren Berlant, author of The Queen of America Goes to Washington City: Essays on Sex and Citizenship

\n

\u201cIn consistently brilliant theoretical discussions (for the most part, psychoanalytically inspired), as well as in strikingly original readings of Dickens, George Eliot, and Hitchcock, Lee Edelman argues that in a political culture dominated by the sentimental illusions and frequently murderous moral imperatives of \u2018reproductive futurism,\u2019 homosexuality has been assigned\u2014and should deliberately and defiantly take on\u2014the burden of a negativity at once embedded within and violently disavowed by that culture. The paradoxical dignity of queerness would be its refusal to believe in a redemptive future, its embrace of the unintelligibility, even the inhumanity inherent in sexuality. Edelman\u2019s extraordinary text is so powerful that we could perhaps reproach him only for not spelling out the mode in which we might survive our necessary assent to his argument.\u201d\u2014Leo Bersani, author of The Culture of Redemption , Homos , and, with Ulysse Dutoit, Caravaggio\u2019s Secrets

\n

\u201cNo Future is a highly imaginative, terrifically suggestive, and altogether powerful book. The question at its political heart is an arresting one, not least because it appears so counterintuitive: Must every political vision be a vision of the future? This is the first study I know that submits the rhetoric of futurity itself to close scrutiny. An intellectually thrilling book.\u201d\u2014Diana Fuss, author of The Sense of an Interior: Four Writers and the Rooms that Shaped Them

\n

\u201cEdelman has certainly articulated a new direction for queer theory, making No Future required reading both within the field and beyond.\u201d (Andrea Fontenot Modern Fiction Studies )

\n

\u201cThe book represents a rigorous attempt to think at once generatively and against tropes of generation, to work at once in irony and in earnest to demonstrate the political\u2019s material dependence on Symbolic homo-logy.\u201d (Carolyn Denver Victorian Studies )

", "publisher": "Duke University Press", "authors": ["Lee Edelman"], "formats": [{"format": "pdf", "file_name": "No Future_ Queer Theory and the Death Driv - Lee Edelman.pdf", "dir_path": "Lee Edelman/No Future_ Queer Theory and the Death Drive (129)/", "size": 5532545}], "cover_url": "Lee Edelman/No Future_ Queer Theory and the Death Drive (129)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "0822333694"}], "languages": ["eng"]}, "b965448e-956b-4c97-bea4-374f109f7b18": {"title": "Surviving Difference: Endocrine-Disrupting Chemicals, Intergenerational Justice, and the Future of Human Reproduction", "title_sort": "Surviving Difference: Endocrine-Disrupting Chemicals, Intergenerational Justice, and the Future of Human Reproduction", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b965448e-956b-4c97-bea4-374f109f7b18", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Lee| Robyn", "Mykitiuk| Roxanne"], "formats": [{"format": "pdf", "file_name": "Surviving Difference_ Endocrine-Disrupting - Lee, Robyn.pdf", "dir_path": "Lee, Robyn/Surviving Difference_ Endocrine-Disrupting Chemicals, Intergenerational Justice, and the Future (130)/", "size": 571486}], "cover_url": "Lee, Robyn/Surviving Difference_ Endocrine-Disrupting Chemicals, Intergenerational Justice, and the Future (130)/cover.jpg", "identifiers": [], "languages": [], "series": "Feminnist Theory"}, "5117e83f-3b6b-40b7-8643-50cec2ba285e": {"title": "On Coba and Cocok: youth-led drug-experimentation in Eastern Indonesia", "title_sort": "On Coba and Cocok: youth-led drug-experimentation in Eastern Indonesia", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "5117e83f-3b6b-40b7-8643-50cec2ba285e", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Hardon| Anita", "Idrus| Nurul Ilmi"], "formats": [{"format": "pdf", "file_name": "On Coba and Cocok_ youth-led drug-experime - Hardon, Anita.pdf", "dir_path": "Hardon, Anita/On Coba and Cocok_ youth-led drug-experimentation in Eastern Indonesia (131)/", "size": 143748}], "cover_url": "Hardon, Anita/On Coba and Cocok_ youth-led drug-experimentation in Eastern Indonesia (131)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/13648470.2014.927417"}], "languages": [], "series": "Anthropology & Medicine"}, "6ffddba2-f994-45f0-a5e9-4729655a13ef": {"title": "Centering Anishinaabeg Studies: Understanding the World Through Stories", "title_sort": "Centering Anishinaabeg Studies: Understanding the World Through Stories", "pubdate": "2013-02-01 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "6ffddba2-f994-45f0-a5e9-4729655a13ef", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

For the Anishinaabeg people, who span a vast geographic region from the Great Lakes to the Plains and beyond, stories are vessels of knowledge. They are bagijiganan , offerings of the possibilities within Anishinaabeg life. Existing along a broad narrative spectrum, from aadizookaanag (traditional or sacred narratives) to dibaajimowinan (histories and news)\u2014as well as everything in between\u2014storytelling is one of the central practices and methods of individual and community existence. Stories create and understand, survive and endure, revitalize and persist. They honor the past, recognize the present, and provide visions of the future. In remembering, (re)making, and (re)writing stories, Anishinaabeg storytellers have forged a well-traveled path of agency, resistance, and resurgence. Respecting this tradition, this groundbreaking anthology features twenty-four contributors who utilize creative and critical approaches to propose that this people\u2019s stories carry dynamic answers to questions posed within Anishinaabeg communities, nations, and the world at large. Examining a range of stories and storytellers across time and space, each contributor explores how narratives form a cultural, political, and historical foundation for Anishinaabeg Studies. Written by Anishinaabeg and non-Anishinaabeg scholars, storytellers, and activists, these essays draw upon the power of cultural expression to illustrate active and ongoing senses of Anishinaabeg life. They are new and dynamic bagijiganan, revealing a viable and sustainable center for Anishinaabeg Studies, what it has been, what it is, what it can be. **

\n

Review

\n

Centering Anishinaabeg Studies is a path-breaking book that features fascinating contributions from many of the finest scholars working in the field today. Ranging widely across methodological perspectives and the breadth of the Anishinaabe world, this book is indespensible for the field and a model for future work in Indigenous Studies.
--Jean M. O'Brien, University of Minnesota

\n

Review

\n

\u201cDoerfler, Sinclair, and Stark have ushered in a new era of Anishinaabeg scholarship. Their collection of stories, by some of the most creative and insightful Anishinaabeg thinkers, celebrates the intellectual diversity of contemporary Indigenous thought.\u201c (Dale A. Turner)

", "publisher": "MSU Press", "authors": ["Jill Doerfler", "Niigaanwewidam James Sinclair", "Heidi Kiiwetinepinesiik Stark"], "formats": [{"format": "mobi", "file_name": "Centering Anishinaabeg Studies_ Understand - Jill Doerfler.mobi", "dir_path": "Jill Doerfler/Centering Anishinaabeg Studies_ Understanding the World Through Stories (132)/", "size": 869239}], "cover_url": "Jill Doerfler/Centering Anishinaabeg Studies_ Understanding the World Through Stories (132)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781609173531"}], "languages": ["eng"]}, "d4c771b0-a21f-48e0-9e78-4ff46bb42dcc": {"title": "What is wrong with energy efficiency?", "title_sort": "What is wrong with energy efficiency?", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "d4c771b0-a21f-48e0-9e78-4ff46bb42dcc", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Shove| Elizabeth"], "formats": [{"format": "pdf", "file_name": "What is wrong with energy efficiency_ - Shove, Elizabeth.pdf", "dir_path": "Shove, Elizabeth/What is wrong with energy efficiency_ (133)/", "size": 1181894}], "cover_url": "Shove, Elizabeth/What is wrong with energy efficiency_ (133)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/09613218.2017.1361746"}, {"scheme": "issn", "code": "0961-3218"}], "languages": [], "series": "Building Research and Information"}, "a4372bb9-4500-4133-9731-439a5191d3dc": {"title": "Realism, Philosophy, and Feminism", "title_sort": "Realism, Philosophy, and Feminism", "pubdate": "2016-10-25 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "a4372bb9-4500-4133-9731-439a5191d3dc", "tags": ["decolonizingtechnology"], "abstract": "
\n

Recent forms of realism in continental philosophy that are habitually subsumed under the category of \u201cspeculative realism,\u201d a denomination referring to rather heterogeneous strands of philosophy, bringing together object-oriented ontology (OOO), non-standard philosophy (or non-philosophy), the speculative realist ideas of Quentin Meillassoux and Marxism, have provided grounds for the much needed critique of culturalism in gender theory, and the authority with which post-structuralism has dominated feminist theory for decades. This publication aims to bring forth some of the feminist debates prompted by the so-called \u201cspeculative turn,\u201d while demonstrating that there has never been a niche of \u201cspeculative realist feminism.\u201d Whereas most of the contributions featured in this collection provide a theoretical approach invoking the necessity of foregrounding new forms of realism for a \u201cfeminism beyond gender as culture,\u201d some of the essays tackle OOO only to invite a feminist critical challenge to its paradigm, while others refer to some extent to non-philosophy or the new materialisms but are not reducible to either of the two. We have invited essays from intellectual milieus outside the Anglo-Saxon academic center, bringing together authors from Serbia, Slovenia, France, Ireland, the UK, and Canada, aiming to promote feminist internationalism (rather than a \u201cgenerous act of cultural inclusion\u201d).

", "publisher": "Punctum Books", "authors": ["Katerina Kolozova"], "formats": [{"format": "pdf", "file_name": "Realism, Philosophy, and Feminism - Katerina Kolozova.pdf", "dir_path": "Katerina Kolozova/Realism, Philosophy, and Feminism (134)/", "size": 1622501}], "cover_url": "Katerina Kolozova/Realism, Philosophy, and Feminism (134)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780998237534"}], "languages": ["eng"]}, "73757f89-8389-45be-8ee8-562d138a85e0": {"title": "Native ethics and rules of behaviour", "title_sort": "Native ethics and rules of behaviour", "pubdate": "1990-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "73757f89-8389-45be-8ee8-562d138a85e0", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Brant| Clare C."], "formats": [{"format": "pdf", "file_name": "Native ethics and rules of behaviour - Brant, Clare C_.pdf", "dir_path": "Brant, Clare C_/Native ethics and rules of behaviour (135)/", "size": 3489358}], "cover_url": "Brant, Clare C_/Native ethics and rules of behaviour (135)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1177/070674379003500612"}], "languages": []}, "abdea236-29de-44fa-a820-c6451e8eb368": {"title": "Micro_zine 01: De la Biopolitica al bioTRANSlab", "title_sort": "Micro_zine 01: De la Biopolitica al bioTRANSlab", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "abdea236-29de-44fa-a820-c6451e8eb368", "tags": ["horomonestoxicitybodysovereignty", "transhackfeminism"], "abstract": "", "publisher": "Biotranslab", "authors": ["Biotranslab"], "formats": [{"format": "pdf", "file_name": "Micro_zine 01_ De la Biopolitica al bioTRA - Biotranslab.pdf", "dir_path": "Biotranslab/Micro_zine 01_ De la Biopolitica al bioTRANSlab (136)/", "size": 2461822}], "cover_url": "Biotranslab/Micro_zine 01_ De la Biopolitica al bioTRANSlab (136)/cover.jpg", "identifiers": [], "languages": []}, "ce892c68-75d0-4050-9c8c-43d614ba0dac": {"title": "A Vast Machine: Computer Models, Climate Data, and the Politics of Global Warming", "title_sort": "Vast Machine: Computer Models, Climate Data, and the Politics of Global Warming, A", "pubdate": "2010-03-12 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ce892c68-75d0-4050-9c8c-43d614ba0dac", "tags": ["environmentalresistance"], "abstract": "
\n

The science behind global warming, and its history: how scientists learned to understand the atmosphere, to measure it, to trace its past, and to model its future. Global warming skeptics often fall back on the argument that the scientific case for global warming is all model predictions, nothing but simulation; they warn us that we need to wait for real data, \u201csound science.\u201d In A Vast Machine Paul Edwards has news for these skeptics: without models, there are no data. Today, no collection of signals or observations\u2014even from satellites, which can \u201csee\u201d the whole planet with a single instrument\u2014becomes global in time and space without passing through a series of data models. Everything we know about the world's climate we know through models. Edwards offers an engaging and innovative history of how scientists learned to understand the atmosphere\u2014to measure it, trace its past, and model its future. **

\n

Review

\n

A Vast Machine is a beautifully written, analytically insightful, and hugely well-informed account of the development and influence of the models and data that are the foundation of our knowledge that the climate is changing and that human beings are making it change. (Donald MacKenzie, Professor of Sociology, University of Edinburgh, author of An Engine, Not a Camera )

\n

[A] stimulating, well-written analysis...a visual feast. ( Ronald E. Doel American Historical Review )

\n

This is an excellent book and a valuable resource for all sides in the debates over global warming. (Steven Goldman Environmental History )

\n

A compelling account of how political and scientific institutions, observation networks, and scientific practice evolved together over several centuries to culminate in the global knowledge infrastructure we have today. (Chad Monfreda Review of Policy Research )

\n

A Vast Machine: Computer Models, Climate Data, and the Politics of Global Warming by Paul Edwards is an outstanding example of the potential for historians to contribute to broader public debates and give non-specialists insight into the work done by scientists and the process by which computer simulation has transformed scientific practice. (Thomas Haigh Communications of the ACM )

\n

A 2010 Book of the Year ( * The Economist* )

\n

A thorough and dispassionate analysis by a historian of science and technology, Paul Edwards' book is well timed. Although written before the University of East Anglia e-mail leak, it anticipates many of the issues raised by the 'climategate' affair. [...] A Vast Machine puts the whole affair into historical context and should be compulsory reading for anyone who now feels empowered to pontificate on how climate science should be done. (Myles Allen Nature )

\n

A Vast Machine...will be readily accessible to that legendary target, the general reader...The author's impressive scholarship and command of his material have produced a truly magisterial account. (Richard J. Somerville Science Magazine )

\n

I recommend this book with considerable enthusiasm. Although it's a term reviewers have made into a clich\u00e9, I think A Vast Machine is nothing less than a tour de force. It is the most complete and balanced description we have of two sciences whose results and recommendations will, in the years ahead, be ever more intertwined with the decisions of political leaders and the fate of the human species. (Noel Castree American Scientist )

\n

On the whole, this is a very good and informative read on the problems in atmospheric modeling and the way computers are -- and have been -- used in the process. (Jeffrey Putnam Computing Reviews )

\n

Review

\n

A Vast Machine is a beautifully written, analytically insightful, and hugely well-informed account of the development and influence of the models and data that are the foundation of our knowledge that the climate is changing and that human beings are making it change. \u2015 Donald MacKenzie , Professor of Sociology, University of Edinburgh, author of An Engine, Not a Camera (2010-01-01)

\n

This important and articulate book explains how scientists learned to understand the atmosphere, measure it, trace its past, and model its future. Edwards counters skepticism and doom with compelling reasons for hope and a call to action. \u2015 James Rodger Fleming , Professor of Science, Technology and Society, Colby College

\n

With this new book, Paul Edwards once again writes the history of technology on a grand scale. Through his investigation of computational science, international governance, and scientific knowledge production, he shows that the very ability to conceptualize a global climate as such is wrapped up in the history of these institutions and their technological infrastructure. In telling this story, Edwards again makes an original contribution to a crowded field. \u2015 Greg Downey , University of Wisconsin-Madison

", "publisher": "MIT Press", "authors": ["Paul N. Edwards"], "formats": [{"format": "pdf", "file_name": "A Vast Machine_ Computer Models, Climate D - Paul N. Edwards.pdf", "dir_path": "Paul N. Edwards/A Vast Machine_ Computer Models, Climate Data, and the Politics of Global Warming (137)/", "size": 4935972}], "cover_url": "Paul N. Edwards/A Vast Machine_ Computer Models, Climate Data, and the Politics of Global Warming (137)/cover.jpg", "identifiers": [{"scheme": "google", "code": "K9_LsJBCqWMC"}, {"scheme": "amazon", "code": "B004FTPU0M"}, {"scheme": "zkey_file", "code": "7UL8UCZC"}, {"scheme": "isbn", "code": "9780262290715"}, {"scheme": "zkey", "code": "Q8MT3WM7"}], "languages": ["eng"]}, "7ca2cacc-6059-4fc7-9506-e32884c3a15d": {"title": "Tactical Biopolitics: Art, Activism, and Technoscience", "title_sort": "Tactical Biopolitics: Art, Activism, and Technoscience", "pubdate": "2008-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7ca2cacc-6059-4fc7-9506-e32884c3a15d", "tags": ["transhackfeminism", "bioresistance", "care and non-human actors"], "abstract": "
\n

Popular culture in this \"biological century\" seems to feed on proliferating fears, anxieties, and hopes around the life sciences at a time when such basic concepts as scientific truth, race and gender identity, and the human itself are destabilized in the public eye. Tactical Biopolitics suggests that the political challenges at the intersection of life, science, and art are best addressed through a combination of artistic intervention, critical theorizing, and reflective practices. Transcending disciplinary boundaries, contributions to this volume focus on the political significance of recent advances in the biological sciences and explore the possibility of public participation in scientific discourse, drawing on research and practice in art, biology, critical theory, anthropology, and cultural studies. After framing the subject in terms of both biology and art, Tactical Biopolitics discusses such topics as race and genetics (with contributions from leading biologists Richard Lewontin and Richard Levins); feminist bioscience; the politics of scientific expertise; bioart and the public sphere (with an essay by artist Claire Pentecost); activism and public health (with an essay by Treatment Action Group co-founder Mark Harrington); biosecurity after 9/11 (with essays by artists' collective Critical Art Ensemble and anthropologist Paul Rabinow); and human-animal interaction (with a framing essay by cultural theorist Donna Haraway).ContributorsGaymon Bennett, Larry Carbone, Karen Cardozo, Gary Cass, Beatriz da Costa, Oron Catts, Gabriella Coleman, Critical Art Ensemble, Gwen D'Arcangelis, Troy Duster, Donna Haraway, Mark Harrington, Jens Hauser, Kathy High, Fatimah Jackson, Gwyneth Jones, Jonathan King, Richard Levins, Richard Lewontin, Rachel Mayeri, Sherie McDonald, Claire Pentecost, Kavita Philip, Paul Rabinow, Banu Subramanian, subRosa, Abha Sur, Samir Sur, Jacqueline Stevens, Eugene Thacker, Paul Vanouse, Ionat Zurr Beatriz da Costa does interventionist art using computing and biotechnologies, and Kavita Philip studies colonialism, neoliberalism, and technoscience using history and critical theory. Both are Associate Professors at the University of California, Irvine.

", "publisher": "Mass.", "authors": ["Beatriz Da Costa", "Kavita Philip"], "formats": [{"format": "pdf", "file_name": "Tactical Biopolitics_ Art, Activism, and T - Beatriz Da Costa.pdf", "dir_path": "Beatriz Da Costa/Tactical Biopolitics_ Art, Activism, and Technoscience (138)/", "size": 2944265}], "cover_url": "Beatriz Da Costa/Tactical Biopolitics_ Art, Activism, and Technoscience (138)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780262042499"}], "languages": ["eng"]}, "83a42029-3bf6-4e88-86eb-13f66ece3428": {"title": "Open Science, open issues", "title_sort": "Open Science, open issues", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "83a42029-3bf6-4e88-86eb-13f66ece3428", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "IBICT \u2013 Instituto Brasileiro de Informa\u00e7\u00e3o em Ci\u00eancia e Tecnologia & Unirio \u2013 Universidade Federal d", "authors": ["Maciel| Maria Lucia", "Abdo| Alexandre Hannud", "Albagli| Sarita"], "formats": [{"format": "pdf", "file_name": "Open Science, open issues - Maciel, Maria Lucia.pdf", "dir_path": "Maciel, Maria Lucia/Open Science, open issues (139)/", "size": 2533681}], "cover_url": "Maciel, Maria Lucia/Open Science, open issues (139)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9788570131119"}, {"scheme": "zkey_file", "code": "VRR2FC8A"}, {"scheme": "zkey", "code": "5UPWXYRT"}], "languages": []}, "01e61ea8-0fb7-4189-9ce0-1e0892709504": {"title": "Decolonizing antiracism", "title_sort": "Decolonizing antiracism", "pubdate": "2005-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "01e61ea8-0fb7-4189-9ce0-1e0892709504", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Lawrence| Bonita", "Dua| Enakshi"], "formats": [{"format": "pdf", "file_name": "Decolonizing antiracism - Lawrence, Bonita.pdf", "dir_path": "Lawrence, Bonita/Decolonizing antiracism (140)/", "size": 448094}], "cover_url": "Lawrence, Bonita/Decolonizing antiracism (140)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "1043-1578"}], "languages": [], "series": "Social Justice"}, "d0edc40a-b772-47c3-8ca3-08b8892d9029": {"title": "Sonic Anarchy Zine #1", "title_sort": "Sonic Anarchy Zine #1", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "d0edc40a-b772-47c3-8ca3-08b8892d9029", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Dinamo DIY Espai"], "formats": [{"format": "pdf", "file_name": "Sonic Anarchy Zine #1 - Dinamo DIY Espai.pdf", "dir_path": "Dinamo DIY Espai/Sonic Anarchy Zine #1 (141)/", "size": 3470563}], "cover_url": "Dinamo DIY Espai/Sonic Anarchy Zine #1 (141)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "BUPUS9FF"}, {"scheme": "zkey", "code": "7LQYFLSB"}], "languages": []}, "72acc2f8-3c39-44ab-a48b-2963699e2b19": {"title": "Building toward an autonomous trans healthcare", "title_sort": "Building toward an autonomous trans healthcare", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "72acc2f8-3c39-44ab-a48b-2963699e2b19", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Power Makes Us Sick"], "formats": [{"format": "pdf", "file_name": "Building toward an autonomous trans health - Power Makes Us Sick.pdf", "dir_path": "Power Makes Us Sick/Building toward an autonomous trans healthcare (142)/", "size": 12807962}], "cover_url": "Power Makes Us Sick/Building toward an autonomous trans healthcare (142)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "MK9CDDZU"}, {"scheme": "zkey", "code": "7T5JG7NS"}], "languages": []}, "9c06a2b4-824d-4342-8883-c775fe11bb87": {"title": "The Grand Domestic Revolution", "title_sort": "Grand Domestic Revolution, The", "pubdate": "1982-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "9c06a2b4-824d-4342-8883-c775fe11bb87", "tags": ["decolonizingtechnology"], "abstract": "
\n

\"This is a book that is full of things I have never seen before, and full of new things to say about things I thought I knew well. It is a book about houses and about culture and about how each affects the other, and it must stand as one of the major works on the history of modern housing.\" - Paul Goldberger, The New York Times Book Review Long before Betty Friedan wrote about \"the problem that had no name\" in The Feminine Mystique, a group of American feminists whose leaders included Melusina Fay Peirce, Mary Livermore, and Charlotte Perkins Gilman campaigned against women's isolation in the home and confinement to domestic life as the basic cause of their unequal position in society. The Grand Domestic Revolution reveals the innovative plans and visionary strategies of these persistent women, who developed the theory and practice of what Hayden calls \"material feminism\" in pursuit of economic independence and social equality. The material feminists' ambitious goals of socialized housework and child care meant revolutionizing the American home and creating community services. They raised fundamental questions about the relationship of men, women, and children in industrial society. Hayden analyzes the utopian and pragmatic sources of the feminists' programs for domestic reorganization and the conflicts over class, race, and gender they encountered. This history of a little-known intellectual tradition challenging patriarchal notions of \"women's place\" and \"women's work\" offers a new interpretation of the history of American feminism and a new interpretation of the history of American housing and urban design. Hayden shows how the material feminists' political ideology led them to design physical space to create housewives' cooperatives, kitchenless houses, day-care centers, public kitchens, and community dining halls. In their insistence that women be paid for domestic labor, the material feminists won the support of many suffragists and of novelists such as Edward Bellamy and William Dean Howells, who helped popularize their cause. Ebenezer Howard, Rudolph Schindler, and Lewis Mumford were among the many progressive architects and planners who promoted the reorganization of housing and neighborhoods around the needs of employed women. In reevaluating these early feminist plans for the environmental and economic transformation of American society and in recording the vigorous and many-sided arguments that evolved around the issues they raised, Hayden brings to light basic economic and spacial contradictions which outdated forms of housing and inadequate community services still create for American women and for their families. **

", "publisher": "MIT Press", "authors": ["Dolores Hayden"], "formats": [{"format": "pdf", "file_name": "The Grand Domestic Revolution - Dolores Hayden.pdf", "dir_path": "Dolores Hayden/The Grand Domestic Revolution (143)/", "size": 13741468}], "cover_url": "Dolores Hayden/The Grand Domestic Revolution (143)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780262580557"}], "languages": ["eng"]}, "719184c9-1010-443d-838a-13eafdb33240": {"title": "What is toxicology and how does toxicity occur?", "title_sort": "What is toxicology and how does toxicity occur?", "pubdate": "2003-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "719184c9-1010-443d-838a-13eafdb33240", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["M\u00fcckter| Harald"], "formats": [{"format": "pdf", "file_name": "What is toxicology and how does toxicity o - Muckter, Harald.pdf", "dir_path": "Muckter, Harald/What is toxicology and how does toxicity occur_ (144)/", "size": 548266}], "cover_url": "Muckter, Harald/What is toxicology and how does toxicity occur_ (144)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1053/bean.2003.0270"}], "languages": [], "series": "Best Practices & Research Clinical Anaesthesiology"}, "db948c99-42cd-4a23-b995-e17105e481f1": {"title": "La Soci\u00e9t\u00e9 automatique: 1. L'avenir du travail", "title_sort": "La Soci\u00e9t\u00e9 automatique: 1. L'avenir du travail", "pubdate": "2015-03-18 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "db948c99-42cd-4a23-b995-e17105e481f1", "tags": ["commoningcare"], "abstract": "
\n

Le 19 juillet 2014, le journal Le Soir r\u00e9v\u00e9lait \u00e0 Bruxelles que selon des estimations am\u00e9ricaines, britanniques et belges, la France, la Belgique, le Royaume-Uni, l\u2019Italie, la Pologne et les \u00c9tats-Unis pourraient perdre entre 43 et 50 % de leurs emplois dans les dix \u00e0 quinze prochaines ann\u00e9es. Trois mois plus tard, le Journal du dimanche soutenait que trois millions d\u2019emplois seraient condamn\u00e9s \u00e0 dispara\u00eetre en France au cours des dix prochaines ann\u00e9es.L\u2019automatisation int\u00e9gr\u00e9e est le principal r\u00e9sultat de ce que l\u2019on appelle \u00ab l\u2019\u00e9conomie des data \u00bb. Organisant des boucles de r\u00e9troactions \u00e0 la vitesse de la lumi\u00e8re (\u00e0 travers les r\u00e9seaux sociaux, objets communicants, puces RFID, capteurs, actionneurs, calcul intensif sur donn\u00e9es massives appel\u00e9es big data, smart cities et robots en tout genre) entre consommation, marketing, production, logistique et distribution, la r\u00e9ticulation g\u00e9n\u00e9ralis\u00e9e conduit \u00e0 une r\u00e9gression drastique de l\u2019emploi dans tous les secteurs \u2013 de l\u2019avocat au chauffeur routier, du m\u00e9decin au manutentionnaire \u2013 et dans tous les pays.Pourquoi le rapport remis en juin 2014 au pr\u00e9sident de la R\u00e9publique fran\u00e7aise par Jean Pisani-Ferry occulte-t-il ces pr\u00e9visions ? Pourquoi le gouvernement n\u2019ouvre-t-il pas un d\u00e9bat sur l\u2019avenir de la France et de l\u2019Europe dans ce nouveau contexte ?L\u2019automatisation int\u00e9grale et g\u00e9n\u00e9ralis\u00e9e fut anticip\u00e9e de longue date \u2013 notamment par Karl Marx en 1857, par John Maynard Keynes en 1930, par Norbert Wiener et Georges Friedmann en 1950, et par Georges Elgozy en 1967. Tous ces penseurs y voyaient la n\u00e9cessit\u00e9 d\u2019un changement \u00e9conomique, politique et culturel radical.Le temps de ce changement est venu, et le pr\u00e9sent ouvrage est consacr\u00e9 \u00e0 en analyser les fondements, \u00e0 en d\u00e9crire les enjeux et \u00e0 pr\u00e9coniser des mesures \u00e0 la hauteur d\u2019une situation exceptionnelle \u00e0 tous \u00e9gards \u2013 o\u00f9 il se pourrait que commence v\u00e9ritablement le temps du travail.Bernard Stiegler, philosophe, est notamment l\u2019auteur de la Technique et le Temps, M\u00e9cr\u00e9ance et discr\u00e9dit, Ce qui fait que la vie vaut la peine d\u2019\u00eatre v\u00e9cue, \u00c9tats de choc. B\u00eatise et savoir au XXIe si\u00e8cle. Depuis 2006, il dirige l\u2019Institut de recherche et d\u2019innovation (IRI) et pr\u00e9side l\u2019association Ars Industrialis, Association internationale pour une politique industrielle des technologies de l\u2019esprit.

", "publisher": "Fayard", "authors": ["Bernard Stiegler"], "formats": [{"format": "pdf", "file_name": "La Societe automatique_ 1. L'avenir du tra - Bernard Stiegler.pdf", "dir_path": "Bernard Stiegler/La Societe automatique_ 1. L'avenir du travail (145)/", "size": 2924524}], "cover_url": "Bernard Stiegler/La Societe automatique_ 1. L'avenir du travail (145)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9782213687865"}], "languages": ["fra"]}, "92ba24f1-abc2-4d7f-a32f-3a8e2d79f989": {"title": "Economentality: How the Future Entered Government", "title_sort": "Economentality: How the Future Entered Government", "pubdate": "2014-06-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "92ba24f1-abc2-4d7f-a32f-3a8e2d79f989", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Mitchell| Timothy"], "formats": [{"format": "pdf", "file_name": "Economentality_ How the Future Entered Gov - Mitchell, Timothy.pdf", "dir_path": "Mitchell, Timothy/Economentality_ How the Future Entered Government (146)/", "size": 254428}], "cover_url": "Mitchell, Timothy/Economentality_ How the Future Entered Government (146)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "B8IUATJR"}, {"scheme": "zkey", "code": "AITAMHPN"}, {"scheme": "issn", "code": "00931896"}], "languages": [], "series": "Critical Inquiry"}, "e7cb0bed-9f5c-41e3-a794-10daf6a9d9ae": {"title": "Toxic progeny: The plastisphere and other queer futures", "title_sort": "Toxic progeny: The plastisphere and other queer futures", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "e7cb0bed-9f5c-41e3-a794-10daf6a9d9ae", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Davis| Heather"], "formats": [{"format": "pdf", "file_name": "Toxic progeny_ The plastisphere and other - Davis, Heather.pdf", "dir_path": "Davis, Heather/Toxic progeny_ The plastisphere and other queer futures (147)/", "size": 872730}], "cover_url": "Davis, Heather/Toxic progeny_ The plastisphere and other queer futures (147)/cover.jpg", "identifiers": [], "languages": []}, "7528d98f-a19c-4a47-aa86-862f9ba76e18": {"title": "Female Genital Anatomy \u00bb Sexual Medicine \u00bb BUMC", "title_sort": "Female Genital Anatomy \u00bb Sexual Medicine \u00bb BUMC", "pubdate": "2002-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7528d98f-a19c-4a47-aa86-862f9ba76e18", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Boston University| School of Medicine| Sexual Medicine"], "formats": [{"format": "pdf", "file_name": "Female Genital Anatomy __ Sexual Medicine - Boston University, School of Medicine, Sex.pdf", "dir_path": "Boston University, School of Medicine, Sexual Medicine/Female Genital Anatomy __ Sexual Medicine __ BUMC (148)/", "size": 69511}], "cover_url": "Boston University, School of Medicine, Sexual Medicine/Female Genital Anatomy __ Sexual Medicine __ BUMC (148)/cover.jpg", "identifiers": [], "languages": []}, "303b8736-3c38-456b-b6f3-c126e3de7b12": {"title": "The Beautiful Warriors", "title_sort": "Beautiful Warriors, The", "pubdate": "2019-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "303b8736-3c38-456b-b6f3-c126e3de7b12", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "Minor Compositions", "authors": ["Sollfrank| Cornelia"], "formats": [{"format": "pdf", "file_name": "The Beautiful Warriors - Sollfrank, Cornelia.pdf", "dir_path": "Sollfrank, Cornelia/The Beautiful Warriors (149)/", "size": 2808422}], "cover_url": "Sollfrank, Cornelia/The Beautiful Warriors (149)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781570273650"}], "languages": []}, "1cc68677-a460-4066-aa0a-938f6bf6ba7c": {"title": "Confessions of a bioterrorist: Subject position and reproductive technologies", "title_sort": "Confessions of a bioterrorist: Subject position and reproductive technologies", "pubdate": "1999-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1cc68677-a460-4066-aa0a-938f6bf6ba7c", "tags": ["bioresistance", "transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Thompson| C. C."], "formats": [{"format": "pdf", "file_name": "Confessions of a bioterrorist_ Subject pos - Thompson, C. C_.pdf", "dir_path": "Thompson, C. C_/Confessions of a bioterrorist_ Subject position and reproductive technologies (150)/", "size": 3064080}], "cover_url": "Thompson, C. C_/Confessions of a bioterrorist_ Subject position and reproductive technologies (150)/cover.jpg", "identifiers": [], "languages": []}, "23618511-b41a-4242-98dd-9296df497474": {"title": "M\u00e9tis and feminist: Ethical reflections on feminism, human rights and decolonization", "title_sort": "M\u00e9tis and feminist: Ethical reflections on feminism, human rights and decolonization", "pubdate": "2007-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "23618511-b41a-4242-98dd-9296df497474", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Zed Books", "authors": ["LaRocque| Emma"], "formats": [{"format": "pdf", "file_name": "Metis and feminist_ Ethical reflections on - LaRocque, Emma.pdf", "dir_path": "LaRocque, Emma/Metis and feminist_ Ethical reflections on feminism, human rights and decolonization (151)/", "size": 6385498}], "cover_url": "LaRocque, Emma/Metis and feminist_ Ethical reflections on feminism, human rights and decolonization (151)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781842779408"}], "languages": []}, "0300dadb-576b-4829-905e-56759c381136": {"title": "Taking account of Aboriginal feminism", "title_sort": "Taking account of Aboriginal feminism", "pubdate": "2007-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0300dadb-576b-4829-905e-56759c381136", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Zed Books", "authors": ["Green| Joyce"], "formats": [{"format": "pdf", "file_name": "Taking account of Aboriginal feminism - Green, Joyce.pdf", "dir_path": "Green, Joyce/Taking account of Aboriginal feminism (152)/", "size": 803838}], "cover_url": "Green, Joyce/Taking account of Aboriginal feminism (152)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781842779408"}], "languages": []}, "e57fa2af-d801-40b7-a112-d06af86eacd6": {"title": "The Problem with Work", "title_sort": "Problem with Work, The", "pubdate": "2011-07-31 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "e57fa2af-d801-40b7-a112-d06af86eacd6", "tags": ["commoningcare"], "abstract": "
\n

In The Problem with Work , Kathi Weeks boldly challenges the presupposition that work, or waged labor, is inherently a social and political good. While progressive political movements, including the Marxist and feminist movements, have fought for equal pay, better work conditions, and the recognition of unpaid work as a valued form of labor, even they have tended to accept work as a naturalized or inevitable activity. Weeks argues that in taking work as a given, we have \u201cdepoliticized\u201d it, or removed it from the realm of political critique. Employment is now largely privatized, and work-based activism in the United States has atrophied. We have accepted waged work as the primary mechanism for income distribution, as an ethical obligation, and as a means of defining ourselves and others as social and political subjects. Taking up Marxist and feminist critiques, Weeks proposes a postwork society that would allow people to be productive and creative rather than relentlessly bound to the employment relation. Work, she contends, is a legitimate, even crucial, subject for political theory. **

", "publisher": "Duke University Press", "authors": ["Kathi Weeks"], "formats": [{"format": "pdf", "file_name": "The Problem with Work - Kathi Weeks.pdf", "dir_path": "Kathi Weeks/The Problem with Work (153)/", "size": 2577283}], "cover_url": "Kathi Weeks/The Problem with Work (153)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780822351122"}], "languages": ["eng"]}, "5543e718-a816-4be1-b407-32070e06fd15": {"title": "The Anthropocene: conceptual and historical perspectives", "title_sort": "Anthropocene: conceptual and historical perspectives, The", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "5543e718-a816-4be1-b407-32070e06fd15", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Steffen| Will", "Grinevald| Jacques", "McNeill| John", "Crutzen| Paul"], "formats": [{"format": "pdf", "file_name": "The Anthropocene_ conceptual and historica - Steffen, Will.pdf", "dir_path": "Steffen, Will/The Anthropocene_ conceptual and historical perspectives (154)/", "size": 754635}], "cover_url": "Steffen, Will/The Anthropocene_ conceptual and historical perspectives (154)/cover.jpg", "identifiers": [{"scheme": "issn", "code": "1364-503x1471-2962"}, {"scheme": "doi", "code": "10.1098/rsta.2010.0327"}], "languages": [], "series": "Philosophical Transactions of The Royal Society A"}, "c51c4670-02a7-42e0-b29d-7b5febcf417f": {"title": "The Companion Species Manifesto: Dogs, People, and Significant Otherness", "title_sort": "Companion Species Manifesto: Dogs, People, and Significant Otherness, The", "pubdate": "2003-04-01 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c51c4670-02a7-42e0-b29d-7b5febcf417f", "tags": ["care and non-human actors", "transhackfeminism"], "abstract": "
\n

The Companion Species Manifesto is about the implosion of nature and culture in the joint lives of dogs and people, who are bonded in \"significant otherness.\" In all their historical complexity, Donna Haraway tells us, dogs matter. They are not just surrogates for theory, she says; they are not here just to think with. Neither are they just an alibi for other themes; dogs are fleshly material-semiotic presences in the body of technoscience. They are here to live with. Partners in the crime of human evolution, they are in the garden from the get-go, wily as Coyote. This pamphlet is Haraway's answer to her own Cyborg Manifesto , where the slogan for living on the edge of global war has to be not just \"cyborgs for earthly survival\" but also, in a more doggish idiom, \"shut up and train.\" **

", "publisher": "Prickly Paradigm Press", "authors": ["Donna Haraway", "Matthew Begelke"], "formats": [{"format": "pdf", "file_name": "The Companion Species Manifesto_ Dogs, Peo - Donna Haraway.pdf", "dir_path": "Donna Haraway/The Companion Species Manifesto_ Dogs, People, and Significant Otherness (155)/", "size": 2917880}], "cover_url": "Donna Haraway/The Companion Species Manifesto_ Dogs, People, and Significant Otherness (155)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780971757585"}], "languages": ["eng"]}, "3d64f954-ddfb-46a2-9a06-1d7bd4b3ffdf": {"title": "Michel Foucault: Law, power, and knowledge", "title_sort": "Michel Foucault: Law, power, and knowledge", "pubdate": "1990-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "3d64f954-ddfb-46a2-9a06-1d7bd4b3ffdf", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Turkel| Gerald"], "formats": [{"format": "pdf", "file_name": "Michel Foucault_ Law, power, and knowledge - Turkel, Gerald.pdf", "dir_path": "Turkel, Gerald/Michel Foucault_ Law, power, and knowledge (156)/", "size": 3051846}], "cover_url": "Turkel, Gerald/Michel Foucault_ Law, power, and knowledge (156)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.2307/1410084"}], "languages": []}, "32b19f0f-abe2-44ec-8f5d-07a636556d67": {"title": "Biomedicalization and the new science of race", "title_sort": "Biomedicalization and the new science of race", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "32b19f0f-abe2-44ec-8f5d-07a636556d67", "tags": ["bioresistance", "transhackfeminism"], "abstract": "", "publisher": "", "authors": ["Bliss| Catherine"], "formats": [{"format": "pdf", "file_name": "Biomedicalization and the new science of r - Bliss, Catherine.pdf", "dir_path": "Bliss, Catherine/Biomedicalization and the new science of race (157)/", "size": 980911}], "cover_url": "Bliss, Catherine/Biomedicalization and the new science of race (157)/cover.jpg", "identifiers": [], "languages": []}, "840c01b3-052e-47e0-96e0-4cf9d3f3d4b4": {"title": "Capitalism in the Web of Life: Ecology and the Accumulation of Capital", "title_sort": "Capitalism in the Web of Life: Ecology and the Accumulation of Capital", "pubdate": "2015-09-14 23:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "840c01b3-052e-47e0-96e0-4cf9d3f3d4b4", "tags": ["environmentalresistance"], "abstract": "
\n

Finance. Climate. Food. Work. How are the crises of the twenty-first century connected? In Capitalism in the Web of Life , Jason W. Moore argues that the sources of today\u2019s global turbulence have a common cause: capitalism as a way of organizing nature, including human nature. Drawing on environmentalist, feminist, and Marxist thought, Moore offers a groundbreaking new synthesis: capitalism as a \u201cworld-ecology\u201d of wealth, power, and nature. Capitalism\u2019s greatest strength\u2014and the source of its problems\u2014is its capacity to create Cheap Natures: labor, food, energy, and raw materials. That capacity is now in question. Rethinking capitalism through the pulsing and renewing dialectic of humanity-in-nature, Moore takes readers on a journey from the rise of capitalism to the modern mosaic of crisis. Capitalism in the Web of Life shows how the critique of capitalism-in-nature\u2014rather than capitalism and nature\u2014is key to understanding our predicament, and to pursuing the politics of liberation in the century ahead.

", "publisher": "Verso", "authors": ["Jason W. Moore"], "formats": [{"format": "epub", "file_name": "Capitalism in the Web of Life_ Ecology and - Jason W. Moore.epub", "dir_path": "Jason W. Moore/Capitalism in the Web of Life_ Ecology and the Accumulation of Capital (158)/", "size": 779305}], "cover_url": "Jason W. Moore/Capitalism in the Web of Life_ Ecology and the Accumulation of Capital (158)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781781689042"}], "languages": ["eng"]}, "02ef05be-7b6f-4d4b-bed0-78d735764072": {"title": "The biopolitics of settler colonialism: Right here, right now", "title_sort": "biopolitics of settler colonialism: Right here, right now, The", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "02ef05be-7b6f-4d4b-bed0-78d735764072", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Morgensen| Scott Lauria"], "formats": [{"format": "pdf", "file_name": "The biopolitics of settler colonialism_ Ri - Morgensen, Scott Lauria.pdf", "dir_path": "Morgensen, Scott Lauria/The biopolitics of settler colonialism_ Right here, right now (159)/", "size": 353034}], "cover_url": "Morgensen, Scott Lauria/The biopolitics of settler colonialism_ Right here, right now (159)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/2201473x.2011.10648801"}, {"scheme": "issn", "code": "1838-0743"}], "languages": [], "series": "settler colonial studies"}, "77fa1a53-682d-4c63-81ad-d821e980abae": {"title": "Vulnerabilities of fingerprint reader to fake fingerprints attacks", "title_sort": "Vulnerabilities of fingerprint reader to fake fingerprints attacks", "pubdate": "2011-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "77fa1a53-682d-4c63-81ad-d821e980abae", "tags": ["bioresistance", "horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "", "authors": ["Espinoza| Marcela", "Champod| Christophe", "Margot| Pierre"], "formats": [{"format": "pdf", "file_name": "Vulnerabilities of fingerprint reader to f - Espinoza, Marcela.pdf", "dir_path": "Espinoza, Marcela/Vulnerabilities of fingerprint reader to fake fingerprints attacks (160)/", "size": 834969}], "cover_url": "Espinoza, Marcela/Vulnerabilities of fingerprint reader to fake fingerprints attacks (160)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1016/j.forsciint.2010.05.002"}], "languages": [], "series": "Forensic Science International"}, "875924e9-54dd-4020-9b44-0473fd527239": {"title": "Tropic of Chaos: Climate Change and the New Geography of Violence", "title_sort": "Tropic of Chaos: Climate Change and the New Geography of Violence", "pubdate": "2012-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "875924e9-54dd-4020-9b44-0473fd527239", "tags": ["environmentalresistance"], "abstract": "", "publisher": "Nation Books", "authors": ["Parenti| Christian"], "formats": [{"format": "epub", "file_name": "Tropic of Chaos_ Climate Change and the Ne - Parenti, Christian.epub", "dir_path": "Parenti, Christian/Tropic of Chaos_ Climate Change and the New Geography of Violence (161)/", "size": 672989}], "cover_url": "Parenti, Christian/Tropic of Chaos_ Climate Change and the New Geography of Violence (161)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781568587295"}], "languages": []}, "29b2779d-3078-416e-9909-ee39aadb15a1": {"title": "PCR-Based detection of genetically modified foods", "title_sort": "PCR-Based detection of genetically modified foods", "pubdate": "2002-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "29b2779d-3078-416e-9909-ee39aadb15a1", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Brandner| Diana L."], "formats": [{"format": "pdf", "file_name": "PCR-Based detection of genetically modifie - Brandner, Diana L_.pdf", "dir_path": "Brandner, Diana L_/PCR-Based detection of genetically modified foods (162)/", "size": 91925}], "cover_url": "Brandner, Diana L_/PCR-Based detection of genetically modified foods (162)/cover.jpg", "identifiers": [], "languages": [], "series": "Tested studies for laboratory teaching"}, "1c236cac-9b7e-4e50-9353-b433a93ed82e": {"title": "The gender-based digital divide in maker culture: features, challenges and possible solutions", "title_sort": "gender-based digital divide in maker culture: features, challenges and possible solutions, The", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1c236cac-9b7e-4e50-9353-b433a93ed82e", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Maric| Josip"], "formats": [{"format": "pdf", "file_name": "The gender-based digital divide in maker c - Maric, Josip.pdf", "dir_path": "Maric, Josip/The gender-based digital divide in maker culture_ features, challenges and possible solutions (163)/", "size": 1528267}], "cover_url": "Maric, Josip/The gender-based digital divide in maker culture_ features, challenges and possible solutions (163)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.3917/jie.027.0147"}], "languages": [], "series": "Journal of Innovation Economics & Management"}, "2babe772-63eb-45e6-b952-2b158f9ee65e": {"title": "The master\u2019s tools will never dismantle the master\u2019s house", "title_sort": "master\u2019s tools will never dismantle the master\u2019s house, The", "pubdate": "2003-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2babe772-63eb-45e6-b952-2b158f9ee65e", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Taylor & Francis", "authors": ["Lorde| Audre"], "formats": [{"format": "pdf", "file_name": "The master's tools will never dismantle th - Lorde, Audre.pdf", "dir_path": "Lorde, Audre/The master's tools will never dismantle the master's house (164)/", "size": 235413}], "cover_url": "Lorde, Audre/The master's tools will never dismantle the master's house (164)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780415942751"}], "languages": []}, "9ce5d7d5-c8bd-4667-8dc2-dd3105d26052": {"title": "Health worker migration and migrant healthcare: Seeking cosmopolitanism in the NHS", "title_sort": "Health worker migration and migrant healthcare: Seeking cosmopolitanism in the NHS", "pubdate": "2018-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "9ce5d7d5-c8bd-4667-8dc2-dd3105d26052", "tags": ["decolonizingtechnology"], "abstract": "", "publisher": "", "authors": ["Shahvisi| Arianne"], "formats": [{"format": "pdf", "file_name": "Health worker migration and migrant health - Shahvisi, Arianne.pdf", "dir_path": "Shahvisi, Arianne/Health worker migration and migrant healthcare_ Seeking cosmopolitanism in the NHS (165)/", "size": 372161}], "cover_url": "Shahvisi, Arianne/Health worker migration and migrant healthcare_ Seeking cosmopolitanism in the NHS (165)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1111/bioe.12432"}], "languages": []}, "4e579520-1130-40b2-a754-0ac8ca495b9e": {"title": "Confronting power: Aboriginal women and justice reform", "title_sort": "Confronting power: Aboriginal women and justice reform", "pubdate": "2006-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "4e579520-1130-40b2-a754-0ac8ca495b9e", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "", "authors": ["Monture| Patricia A."], "formats": [{"format": "pdf", "file_name": "Confronting power_ Aboriginal women and ju - Monture, Patricia A_.pdf", "dir_path": "Monture, Patricia A_/Confronting power_ Aboriginal women and justice reform (166)/", "size": 850915}], "cover_url": "Monture, Patricia A_/Confronting power_ Aboriginal women and justice reform (166)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "C4NN4B6M"}, {"scheme": "zkey", "code": "YIITU6NG"}], "languages": [], "series": "Canadian Woman Studies"}, "1643ef2b-c9d8-4eb1-baf5-730144eadc6d": {"title": "'Nothing comes without its world': Thinking with care", "title_sort": "Nothing comes without its world': Thinking with care", "pubdate": "2012-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1643ef2b-c9d8-4eb1-baf5-730144eadc6d", "tags": ["care - history and concept", "piratecareintroduction"], "abstract": "", "publisher": "", "authors": ["Puig de la Bellacasa| Maria"], "formats": [{"format": "pdf", "file_name": "'Nothing comes without its world'_ Thinkin - Puig de la Bellacasa, Maria.pdf", "dir_path": "Puig de la Bellacasa, Maria/'Nothing comes without its world'_ Thinking with care (167)/", "size": 193647}], "cover_url": "Puig de la Bellacasa, Maria/'Nothing comes without its world'_ Thinking with care (167)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1111/j.1467-954x.2012.02070.x"}], "languages": [], "series": "The Sociology Review"}, "7272e56c-a383-46f0-8fca-7c015e05c92c": {"title": "Apocalypse Now! Fear and Doomsday Pleasures", "title_sort": "Apocalypse Now! Fear and Doomsday Pleasures", "pubdate": "2013-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7272e56c-a383-46f0-8fca-7c015e05c92c", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Swyngedouw| Erik"], "formats": [{"format": "pdf", "file_name": "Apocalypse Now! Fear and Doomsday Pleasure - Swyngedouw, Erik.pdf", "dir_path": "Swyngedouw, Erik/Apocalypse Now! Fear and Doomsday Pleasures (168)/", "size": 151487}], "cover_url": "Swyngedouw, Erik/Apocalypse Now! Fear and Doomsday Pleasures (168)/cover.jpg", "identifiers": [{"scheme": "zkey_file", "code": "5DW2X4N7"}, {"scheme": "doi", "code": "10.1080/10455752.2012.759252"}, {"scheme": "issn", "code": "1045-5752"}, {"scheme": "zkey", "code": "JXNEYLGX"}], "languages": [], "series": "Capitalism, Nature, Socialism"}, "b7b4d882-15b2-4b13-bcf7-1ec304af588d": {"title": "The Mushroom at the End of the World: On the Possibility of Life in Capitalist Ruins", "title_sort": "Mushroom at the End of the World: On the Possibility of Life in Capitalist Ruins, The", "pubdate": "2015-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b7b4d882-15b2-4b13-bcf7-1ec304af588d", "tags": ["environmentalresistance"], "abstract": "", "publisher": "Princeton University Press", "authors": ["Tsing| Anna Lowenhaupt"], "formats": [{"format": "pdf", "file_name": "The Mushroom at the End of the World_ On t - Tsing, Anna Lowenhaupt.pdf", "dir_path": "Tsing, Anna Lowenhaupt/The Mushroom at the End of the World_ On the Possibility of Life in Capitalist Ruins (169)/", "size": 12945798}], "cover_url": "Tsing, Anna Lowenhaupt/The Mushroom at the End of the World_ On the Possibility of Life in Capitalist Ruins (169)/cover.jpg", "identifiers": [{"scheme": "zkey", "code": "5Z52UFPG"}, {"scheme": "zkey_file", "code": "UA4V5M8Q"}, {"scheme": "isbn", "code": "9780691162751"}], "languages": []}, "fb87c228-5573-498c-a534-bac7eb34e4d4": {"title": "Wild Fermentation: A Do-It-Yourself Guide to Cultural Manipulation", "title_sort": "Wild Fermentation: A Do-It-Yourself Guide to Cultural Manipulation", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "fb87c228-5573-498c-a534-bac7eb34e4d4", "tags": ["horomonestoxicitybodysovereignty"], "abstract": "", "publisher": "Microcosm Publishing", "authors": ["Katz| Sandor Ellix"], "formats": [{"format": "pdf", "file_name": "Wild Fermentation_ A Do-It-Yourself Guide - Katz, Sandor Ellix.pdf", "dir_path": "Katz, Sandor Ellix/Wild Fermentation_ A Do-It-Yourself Guide to Cultural Manipulation (170)/", "size": 424926}], "cover_url": "Katz, Sandor Ellix/Wild Fermentation_ A Do-It-Yourself Guide to Cultural Manipulation (170)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781621061175"}], "languages": []}, "62710c35-a605-4a3c-ac04-64cd74d1b1ac": {"title": "Matters of Care", "title_sort": "Matters of Care", "pubdate": "2017-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "62710c35-a605-4a3c-ac04-64cd74d1b1ac", "tags": ["environmentalresistance"], "abstract": "
\n

To care can feel good, or it can feel bad. It can do good, it can oppress. But what is care? A moral obligation? A burden? A joy? Is it only human? In Matters of Care , Mar\u00eda\u00a0Puig de la Bellacasa presents a powerful challenge to conventional notions of care, exploring its significance as an ethical and political obligation for thinking in the more than human worlds of technoscience and naturecultures.\u00a0 Matters of Care contests the view that care is something only humans do, and argues for extending to non-humans the consideration of agencies and communities that make the living web of care by considering how care circulates in the natural world. The first of the book\u2019s two parts, \u201cKnowledge Politics,\u201d defines the motivations for expanding the ethico-political meanings of care, focusing on discussions in science and technology that engage with sociotechnical assemblages and objects as lively, politically charged \u201cthings.\u201d The second part, \u201cSpeculative Ethics in Antiecological Times,\u201d considers everyday ecologies of sustaining and perpetuating life for their potential to transform our entrenched relations to natural worlds as \u201cresources.\u201d\u00a0 From the ethics and politics of care to experiential research on care to feminist science and technology studies, Matters of Care is a singular contribution to an emerging interdisciplinary debate that expands agency beyond the human to ask how our understandings of care must shift if we broaden the world. \u00a0 **

", "publisher": "University of Minnesota Press", "authors": ["Maria Puig de La Bellacasa"], "formats": [{"format": "pdf", "file_name": "Matters of Care - Maria Puig de La Bellacasa.pdf", "dir_path": "Maria Puig de La Bellacasa/Matters of Care (171)/", "size": 3431744}], "cover_url": "Maria Puig de La Bellacasa/Matters of Care (171)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781517900656"}], "languages": ["eng"]}, "246bae05-b2ed-4ea0-b88e-c976bf2d2007": {"title": "Tactical Media at Dusk?", "title_sort": "Tactical Media at Dusk?", "pubdate": "2008-09-02 11:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "246bae05-b2ed-4ea0-b88e-c976bf2d2007", "tags": ["transhackfeminism"], "abstract": "", "publisher": "Routledge", "authors": ["Critical Art Ensemble"], "formats": [{"format": "pdf", "file_name": "Tactical Media at Dusk_ - Critical Art Ensemble.pdf", "dir_path": "Critical Art Ensemble/Tactical Media at Dusk_ (172)/", "size": 628283}], "cover_url": "Critical Art Ensemble/Tactical Media at Dusk_ (172)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1080/09528820802440078"}], "languages": [], "series": "Third Text"}, "5520453c-eb34-4277-a3c4-f19e91237b87": {"title": "The geology of mankind? A critique of the Anthropocene narrative", "title_sort": "geology of mankind? A critique of the Anthropocene narrative, The", "pubdate": "2014-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "5520453c-eb34-4277-a3c4-f19e91237b87", "tags": ["environmentalresistance"], "abstract": "", "publisher": "", "authors": ["Malm| Andreas", "Hornborg| Alf"], "formats": [{"format": "pdf", "file_name": "The geology of mankind_ A critique of the - Malm, Andreas.pdf", "dir_path": "Malm, Andreas/The geology of mankind_ A critique of the Anthropocene narrative (173)/", "size": 422408}], "cover_url": "Malm, Andreas/The geology of mankind_ A critique of the Anthropocene narrative (173)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.1177/2053019613516291"}, {"scheme": "issn", "code": "2053-0196"}], "languages": [], "series": "The Anthropocene Review"}, "2781fab6-8733-4ced-b580-d169db7d8438": {"title": "\"Women in Between\": Indian Women in Fur Trade Society in Western Canada", "title_sort": "Women in Between\": Indian Women in Fur Trade Society in Western Canada", "pubdate": "1983-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2781fab6-8733-4ced-b580-d169db7d8438", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "University of Oklahoma Press", "authors": ["Kirk| Sylvia Van"], "formats": [{"format": "txt", "file_name": "_Women in Between__ Indian Women in Fur Tr - Kirk, Sylvia Van.txt", "dir_path": "Kirk, Sylvia Van/_Women in Between__ Indian Women in Fur Trade Society in Western Canada (174)/", "size": 101}], "cover_url": "Kirk, Sylvia Van/_Women in Between__ Indian Women in Fur Trade Society in Western Canada (174)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780806118475"}], "languages": []}, "fe8abc0b-72c5-4ca4-ae6b-d7a006f13239": {"title": "Thinking about Gendered and Racialized Class", "title_sort": "Thinking about Gendered and Racialized Class", "pubdate": "2006-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "fe8abc0b-72c5-4ca4-ae6b-d7a006f13239", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Rowman & Littlefield", "authors": ["Acker| Joan"], "formats": [{"format": "txt", "file_name": "Thinking about Gendered and Racialized Cla - Acker, Joan.txt", "dir_path": "Acker, Joan/Thinking about Gendered and Racialized Class (175)/", "size": 101}], "cover_url": "Acker, Joan/Thinking about Gendered and Racialized Class (175)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780742546301"}], "languages": []}, "bd4cfd2c-d4d4-44bd-851e-8a12e82fb030": {"title": "Research is Ceremony: Indigenous Research Methods", "title_sort": "Research is Ceremony: Indigenous Research Methods", "pubdate": "2008-01-02 12:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bd4cfd2c-d4d4-44bd-851e-8a12e82fb030", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "", "publisher": "Fernwood Pub.", "authors": ["Diab| Robert", "Wilson| Shawn"], "formats": [{"format": "txt", "file_name": "Research is Ceremony_ Indigenous Research - Diab, Robert.txt", "dir_path": "Diab, Robert/Research is Ceremony_ Indigenous Research Methods (176)/", "size": 101}], "cover_url": "Diab, Robert/Research is Ceremony_ Indigenous Research Methods (176)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781552662816"}], "languages": []}, "8fe5e2e6-868b-4441-850a-67c2e4e4d556": {"title": "Say Her Name: Resisting Police Brutality Against Black Women", "title_sort": "Say Her Name: Resisting Police Brutality Against Black Women", "pubdate": "2015-01-15 00:00:00+00:00", "last_modified": "2020-01-16 23:26:56.064936+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "8fe5e2e6-868b-4441-850a-67c2e4e4d556", "tags": ["communitysafetyandcontextualfluidity"], "abstract": "
\n

To continue to call attention to police violence against Black women in the U.S., the African American Policy Forum, the Center for Intersectionality and Social Policy Studies at Columbia Law School, and Andrea Ritchie, Soros Justice Fellow and expert on policing of women and LGBT people of color, have put forth \u201cSay Her Name: Resisting Police Brutality Against Black Women.\u201d The document is intended to serve as a resource for the media, organizers, researchers, policy makers, and other stakeholders to better understand and address Black women\u2019s experiences of profiling and policing. In addition to stories of Black women who have been killed by police and who have experienced gender-specific forms of police violence, Say Her Name provides some analytical frames for understanding their experiences and broadens dominant conceptions of who experiences state violence and what it looks like. Say Her Name responds to increasing calls for attention to police violence against Black women by offering a resource to help ensure that Black women\u2019s stories are integrated into demands for justice, policy responses to police violence, and media representations of victims and survivors of police brutality.

\n

**

", "publisher": "African American Policy Forum, Center for Intersectionality and Social Policy Studies", "authors": ["Kimberl\u00e9 Crenshaw", "Andrea J. Ritchie", "Rachel Anspach", "Rachel Gilmer", "Luke Harris"], "formats": [{"format": "azw3", "file_name": "Say Her Name_ Resisting Police Brutality A - Kimberle Crenshaw.azw3", "dir_path": "Kimberle Crenshaw/Say Her Name_ Resisting Police Brutality Against Black Women (177)/", "size": 5436200}], "cover_url": "Kimberle Crenshaw/Say Her Name_ Resisting Police Brutality Against Black Women (177)/cover.jpg", "identifiers": [{"scheme": "mobi-asin", "code": "B01B3G64EU"}], "languages": ["eng"]}, "ba7ee6f8-3dc9-43a3-ae95-49dd3a7d5fd5": {"title": "Colormute: Race Talk Dilemmas in an American School", "title_sort": "Colormute: Race Talk Dilemmas in an American School", "pubdate": "2004-01-15 00:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ba7ee6f8-3dc9-43a3-ae95-49dd3a7d5fd5", "tags": ["politicizingpiracy"], "abstract": "
\n

This book considers in unprecedented detail one of the most confounding questions in American racial practice: when to speak about people in racial terms. Viewing \"race talk\" through the lens of a California high school and district, Colormute draws on three years of ethnographic research on everyday race labeling in education. Based on the author's experiences as a teacher as well as an anthropologist, it discusses the role race plays in everyday and policy talk about such familiar topics as discipline, achievement, curriculum reform, and educational inequality.

\n

Pollock illustrates the wide variations in the way speakers use race labels. Sometimes people use them without thinking twice; at other moments they avoid them at all costs or use them only in the description of particular situations. While a major concern of everyday race talk in schools is that racial descriptions will be inaccurate or inappropriate, Pollock demonstrates that anxiously suppressing race words (being what she terms \"colormute\") can also cause educators to reproduce the very racial inequities they abhor.

\n

The book assists readers in cultivating a greater understanding of the pitfalls and possibilities of everyday race talk and clarifies previously murky discussions of \"colorblindness.\" By bridging the gap between theory and practice, Colormute will be enormously helpful in fostering ongoing conversations about dismantling racial inequality in America.

", "publisher": "Princeton University", "authors": ["Mica Pollock"], "formats": [{"format": "pdf", "file_name": "Colormute_ Race Talk Dilemmas in an Americ - Mica Pollock.pdf", "dir_path": "Mica Pollock/Colormute_ Race Talk Dilemmas in an American School (178)/", "size": 1001691}], "cover_url": "Mica Pollock/Colormute_ Race Talk Dilemmas in an American School (178)/cover.jpg", "identifiers": [{"scheme": "google", "code": "pGtYewAACAAJ"}, {"scheme": "amazon", "code": "B002WJM4YC"}, {"scheme": "isbn", "code": "9780691116952"}], "languages": ["eng"]}, "1be87406-b739-4c0c-8d3e-2adfa1c6943f": {"title": "Emerging Perspectives on Anti-Oppressive Practice", "title_sort": "Emerging Perspectives on Anti-Oppressive Practice", "pubdate": "2003-06-01 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1be87406-b739-4c0c-8d3e-2adfa1c6943f", "tags": ["politicizingpiracy"], "abstract": "
\n

This book consists of a selection of papers from those delivered as a recent conference on anti-oppressive practice in social work. Dr. Shera has gathered expert contributors to discuss, define and analyse theories of social work practice, pedagogical issues, fieldwork practice, models of education of social work practitioners and current critical issues. These selected conference papers lay the groundwork for anti-oppressive practice in a way that will generate discussion and inspire researchers and practitioners.

", "publisher": "Canadian Scholars Press", "authors": ["Wes Shera"], "formats": [{"format": "pdf", "file_name": "Emerging Perspectives on Anti-Oppressive P - Wes Shera.pdf", "dir_path": "Wes Shera/Emerging Perspectives on Anti-Oppressive Practice (179)/", "size": 31992189}], "cover_url": "Wes Shera/Emerging Perspectives on Anti-Oppressive Practice (179)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "155130225X"}, {"scheme": "isbn", "code": "9781551302256"}], "languages": ["eng"]}, "76fb1352-8487-4b3c-8091-9098c39fc68d": {"title": "Queer (In)Justice: The Criminalization of LGBT People in the United States", "title_sort": "Queer (In)Justice: The Criminalization of LGBT People in the United States", "pubdate": "2011-02-15 00:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "76fb1352-8487-4b3c-8091-9098c39fc68d", "tags": ["politicizingpiracy"], "abstract": "
\n

A groundbreaking work that turns a \u201cqueer eye\u201d on the criminal legal system\u00a0Drawing on years of research, activism, and legal advocacy, Queer (In)Justice is a searing examination of queer experiences--as \"suspects,\" defendants, prisoners, and survivors of crime. The authors unpack queer criminal archetypes--like \"gleeful gay killers,\" \"lethal lesbians,\" \"disease spreaders,\" and \"deceptive gender benders\"--to illustrate the punishment of queer expression, regardless of whether a crime was ever committed. Tracing stories from the streets to the bench to behind prison bars, the authors prove that the policing of sex and gender both bolsters and reinforces racial and gender inequalities. A groundbreaking work that turns a \"queer eye\" on the criminal legal system, Queer (In)Justice illuminates and challenges the many ways in which queer lives are criminalized, policed, and punished.

", "publisher": "Beacon Press", "authors": ["Joey L. Mogul", "Andrea J. Ritchie", "Kay Whitlock"], "formats": [{"format": "epub", "file_name": "Queer (In)Justice_ The Criminalization of - Joey L. Mogul.epub", "dir_path": "Joey L. Mogul/Queer (In)Justice_ The Criminalization of LGBT People in the United States (180)/", "size": 360448}], "cover_url": "Joey L. Mogul/Queer (In)Justice_ The Criminalization of LGBT People in the United States (180)/cover.jpg", "identifiers": [{"scheme": "mobi-asin", "code": "B004C43FG6"}, {"scheme": "google", "code": "-UpV6JKaKHwC"}, {"scheme": "isbn", "code": "9780807051177"}], "languages": ["eng"]}, "08042f43-f633-4402-8810-3dccbcd8a99f": {"title": "Can We Talk About Race?: And Other Conversations in an Era of School Resegregation", "title_sort": "Can We Talk About Race?: And Other Conversations in an Era of School Resegregation", "pubdate": "2008-04-01 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "08042f43-f633-4402-8810-3dccbcd8a99f", "tags": ["politicizingpiracy"], "abstract": "
\n

Major new reflections on race and schools\u2014by the best-selling author of \u201cWhy Are All the Black Kids Sitting Together in the Cafeteria?\u201c

\n

A Simmons College/Beacon Press Race, Education, and Democracy Series Book**

\n

Beverly Daniel Tatum emerged on the national scene in 1997 with \u201cWhy Are All the Black Kids Sitting Together in the Cafeteria?,\u201c a book that spoke to a wide audience about the psychological dynamics of race relations in America. Tatum\u2019s unique ability to get people talking about race captured the attention of many, from Oprah Winfrey to President Clinton, who invited her to join him in his nationally televised dialogues on race.

\n

In her first book since that pathbreaking success, Tatum starts with a warning call about the increasing but underreported resegregation of America. A selfdescribed \u201cintegration baby\u201c\u2014she was born in 1954\u2014Tatum sees our growing isolation from each other as deeply problematic, and she believes that schools can be key institutions for forging connections across the racial divide.

\n

In this ambitious, accessible book, Tatum examines some of the most resonant issues in American education and race relations:

\n

\u2022\u00a0The need of African American students to see themselves reflected in curricula and institutions
\u00a0\u00a0\u00a0\u2022\u00a0How unexamined racial attitudes can negatively affect minority-student achievement
\u00a0\u00a0\u00a0\u2022\u00a0The possibilities\u2014and complications\u2014of intimate crossracial friendships
Tatum approaches all these topics with the blend of analysis and storytelling that make her one of our most persuasive and engaging commentators on race.

\n

Can We Talk About Race? launches a collaborative lecture and book series between Beacon Press and Simmons College, which aims to reinvigorate a crucial national public conversation on race, education and democracy. **

\n

From Booklist

\n

Ten years ago, Tatum's book asked the question, Why Are All the Black Kids Sitting Together in the Cafeteria? Her latest book follows up with a broader question about the nation's readiness to talk honestly about the forces that continue to make race such a thorny issue. In separate essays, Tatum probes the impact of continued segregation in public schools--mostly the result of segregated neighborhoods--on classroom achievement; the difficulty of developing and sustaining interracial relationships in a society that practices silence on race; and the longer-term implications of continued segregation on a changing democracy with a growing nonwhite population. Tatum blends policy analysis and personal recollections as an educator and self-described \"integration baby,\" born just after the momentous Brown v. Board of Education decision, into a cogent look at the forces that continue to separate the races and the urgent need to begin an honest dialogue. Tatum's analysis is a probing and ambitious start of a series of books to prod national discussion on issues of race, education, and democracy. Vanessa Bush
Copyright \u00a9 American Library Association. All rights reserved

\n

Review

\n

\"What Tatum seeks to do above all is trigger sometimes challenging discussions about race, and infuse those discussions with a reality-based focus on how race affects us all. Her latest book does that beautifully, asking touch questions, and patiently, inclusively seeking answers.\"\u2014 Boston Globe

\n

\"Ten years ago, Tatum's book asked the question, ' Why Are All the Black Kids Sitting Together in the Cafeteria? ' Her latest book follows up with a broader question about the nation's readiness to talk honestly about the forces that continue to make race such a thorny issue . . . A probing and ambitious start to a series of books to prod national discussion on issues of race, education, and democracy.\"\u2014Vanessa Bush, Booklist

\n

\"Four research-rich, concisely written essays on race and education, including examinations of the 'resegregation of our schools,' the need for educational curricula and staff that respect the diverse communities they serve, [and] the challenges of interracial friendships . . . What Tatum seeks to do above all is trigger sometimes challenging discussions about race, and infuse those discussions with a reality-based focus on how race affects us all. Her latest book does that beautifully, asking tough questions, and patiently, inclusively seeking answers.\"\u2014Chuck Leddy, Boston Globe

\n

\"Another thoughtful, personal and provocative book that will encourage discussion about many of the difficult issues still surrounding race in America\u2014in and out of the classroom.\"\u2014Marian Wright Edelman, president, Children's Defense Fund

", "publisher": "Beacon Press", "authors": ["Beverly Daniel Tatum", "Theresa Perry"], "formats": [{"format": "pdf", "file_name": "Can We Talk About Race__ And Other Convers - Beverly Daniel Tatum.pdf", "dir_path": "Beverly Daniel Tatum/Can We Talk About Race__ And Other Conversations in an Era of School Resegregation (181)/", "size": 1540014}], "cover_url": "Beverly Daniel Tatum/Can We Talk About Race__ And Other Conversations in an Era of School Resegregation (181)/cover.jpg", "identifiers": [{"scheme": "google", "code": "VDewGAAACAAJ"}, {"scheme": "isbn", "code": "9780807099841"}, {"scheme": "amazon", "code": "B0069VUAJA"}], "languages": ["eng"]}, "1733827b-deb7-4379-87b4-b39ee0a08206": {"title": "A Companion to the Anthropology of Education", "title_sort": "Companion to the Anthropology of Education, A", "pubdate": "2013-07-06 07:31:24+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1733827b-deb7-4379-87b4-b39ee0a08206", "tags": ["politicizingpiracy"], "abstract": "
\n

Integrating work from several different national systems of scholarship, A Companion to the Anthropology of Education presents a comprehensive and state-of-the-art overview of the field of anthropology of education. Leading educational anthropologists examine everyday educational processes in culturally diverse settings, and the impacts on those processes of history, language policies, geographically specific problems and solutions, governmental mandates, literacy, inequality, multiculturalism, and more. Each contributor evaluates the key anthropological advances, arguments and approaches that inform the field's research. The Companion presents both theoretical and applied perspectives on important processes of education, in specific locations and worldwide.

", "publisher": "Wiley", "authors": ["Mica Pollock", "Bradley A. Levinson"], "formats": [{"format": "pdf", "file_name": "A Companion to the Anthropology of Educati - Mica Pollock.pdf", "dir_path": "Mica Pollock/A Companion to the Anthropology of Education (182)/", "size": 2272171}], "cover_url": "Mica Pollock/A Companion to the Anthropology of Education (182)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781119111665"}], "languages": ["eng"]}, "6dd75d5d-0a66-42b2-9b38-2201bedb55fa": {"title": "Everyday Antiracism: Getting Real About Race in School", "title_sort": "Everyday Antiracism: Getting Real About Race in School", "pubdate": "2008-06-28 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "6dd75d5d-0a66-42b2-9b38-2201bedb55fa", "tags": ["politicizingpiracy"], "abstract": "
\n

Which acts by educators are \u201cracist\u201d and which are \u201cantiracist\u201d? How can an educator constructively discuss complex issues of race with students and colleagues? In Everyday Antiracism leading educators deal with the most challenging questions about race in school, offering invaluable and effective advice.

\n

Contributors including Beverly Daniel Tatum, Sonia Nieto, and Pedro Noguera describe concrete ways to analyze classroom interactions that may or may not be \u201cracial,\u201d deal with racial inequality and \u201cdiversity,\u201d and teach to high standards across racial lines. Topics range from using racial incidents as teachable moments and responding to the \u201cn-word\u201d to valuing students\u2019 home worlds, dealing daily with achievement gaps, and helping parents fight ethnic and racial misconceptions about their children. Questions following each essay prompt readers to examine and discuss everyday issues of race and opportunity in their own classrooms and schools.

\n

For educators and parents determined to move beyond frustrations about race, Everyday Antiracism is an essential tool.

", "publisher": "The New Press", "authors": ["Mica Pollock"], "formats": [{"format": "pdf", "file_name": "Everyday Antiracism_ Getting Real About Ra - Mica Pollock.pdf", "dir_path": "Mica Pollock/Everyday Antiracism_ Getting Real About Race in School (183)/", "size": 1980303}], "cover_url": "Mica Pollock/Everyday Antiracism_ Getting Real About Race in School (183)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "B005MYIOB6"}], "languages": ["eng"]}, "7dc9ac81-15e0-48c2-b484-567299628884": {"title": "Because of Race: How Americans Debate Harm and Opportunity in Our Schools", "title_sort": "Because of Race: How Americans Debate Harm and Opportunity in Our Schools", "pubdate": "2010-10-24 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "7dc9ac81-15e0-48c2-b484-567299628884", "tags": ["politicizingpiracy"], "abstract": "
\n

In Because of Race , Mica Pollock tackles a long-standing and fraught debate over racial inequalities in America's schools. Which denials of opportunity experienced by students of color should be remedied? Pollock exposes raw, real-time arguments over what inequalities of opportunity based on race in our schools look like today--and what, if anything, various Americans should do about it.

\n

Pollock encountered these debates while working at the U.S. Department of Education's Office for Civil Rights in 1999-2001. For more than two years, she listened to hundreds of parents, advocates, educators, and federal employees talk about the educational treatment of children and youth in specific schools and districts. People debated how children were spoken to, disciplined, and ignored in both segregated and desegregated districts, and how children were afforded or denied basic resources and opportunities to learn. Pollock discusses four rebuttals that greeted demands for everyday justice for students of color inside schools and districts. She explores how debates over daily opportunity provision exposed conflicting analyses of opportunity denial and harm worth remedying. Because of Race lays bare our habits of argument and offers concrete suggestions for arguing more successfully toward equal opportunity.

", "publisher": "Princeton University", "authors": ["Mica Pollock"], "formats": [{"format": "azw3", "file_name": "Because of Race_ How Americans Debate Harm - Mica Pollock.azw3", "dir_path": "Mica Pollock/Because of Race_ How Americans Debate Harm and Opportunity in Our Schools (184)/", "size": 471596}], "cover_url": "Mica Pollock/Because of Race_ How Americans Debate Harm and Opportunity in Our Schools (184)/cover.jpg", "identifiers": [{"scheme": "google", "code": "5pMCG5hmPJMC"}, {"scheme": "amazon", "code": "B004EYT8DI"}, {"scheme": "mobi-asin", "code": "B004EYT8DI"}, {"scheme": "isbn", "code": "069112535X"}], "languages": ["eng"]}, "bdd30836-4f43-492c-a743-6b958aefcbb1": {"title": "Invisible No More: Police Violence Against Black Women and Women of Color", "title_sort": "Invisible No More: Police Violence Against Black Women and Women of Color", "pubdate": "2017-07-31 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bdd30836-4f43-492c-a743-6b958aefcbb1", "tags": ["politicizingpiracy"], "abstract": "
\n

A timely examination of the ways Black women, Indigenous women, and other women of color are uniquely affected by racial profiling, police brutality,\u00a0and immigration enforcement.Invisible No More is a timely examination of how Black women, Indigenous women, and women of color experience racial profiling, police brutality, and immigration enforcement. Placing stories of individual women\u2014such as Sandra Bland, Rekia Boyd, Dajerria Becton, Monica Jones, and Mya Hall\u2014in the broader context of the twin epidemics of police violence and mass incarceration, it documents the evolution of movements centering women\u2019s experiences of policing and demands a radical rethinking of our visions of safety\u2014and the means we devote to achieving it.

", "publisher": "Beacon Press", "authors": ["Andrea J. Ritchie"], "formats": [{"format": "epub", "file_name": "Invisible No More_ Police Violence Against - Andrea J. Ritchie.epub", "dir_path": "Andrea J. Ritchie/Invisible No More_ Police Violence Against Black Women and Women of Color (185)/", "size": 5667590}], "cover_url": "Andrea J. Ritchie/Invisible No More_ Police Violence Against Black Women and Women of Color (185)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780807088999"}, {"scheme": "google", "code": "WqD4DAAAQBAJ"}], "languages": ["eng"]}, "0cd66130-6984-4e55-baed-31bc699d3753": {"title": "Our Enemies in Blue: Police and Power in America", "title_sort": "Our Enemies in Blue: Police and Power in America", "pubdate": "2015-08-02 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0cd66130-6984-4e55-baed-31bc699d3753", "tags": ["politicizingpiracy"], "abstract": "
\n

Let's begin with the basics: violence is an inherent part of policing. The police represent the most direct means by which the state imposes its will on the citizenry. They are armed, trained, and authorized to use force. Like the possibility of arrest, the threat of violence is implicit in every police encounter. Violence, as well as the law, is what they represent. Using media reports alone, the Cato Institute's last annual study listed nearly seven thousand victims of police \"misconduct\" in the United States. But such stories of police brutality only scratch the surface of a national epidemic. Every year, tens of thousands are framed, blackmailed, beaten, sexually assaulted, or killed by cops. Hundreds of millions of dollars are spent on civil judgments and settlements annually. Individual lives, families, and communities are destroyed. In this extensively revised and updated edition of his seminal study of policing in the United States, Kristian Williams shows that police brutality isn't an anomaly, but is built into the very meaning of law enforcement in the United States. From antebellum slave patrols to today's unarmed youth being gunned down in the streets, \"peace keepers\" have always used force to shape behavior, repress dissent, and defend the powerful. Our Enemies in Blue is a well-researched page-turner that both makes historical sense of this legalized social pathology and maps out possible alternatives.

", "publisher": "AK Press", "authors": ["Kristian Williams"], "formats": [{"format": "epub", "file_name": "Our Enemies in Blue_ Police and Power in A - Kristian Williams.epub", "dir_path": "Kristian Williams/Our Enemies in Blue_ Police and Power in America (186)/", "size": 3378175}], "cover_url": "Kristian Williams/Our Enemies in Blue_ Police and Power in America (186)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781849352154"}, {"scheme": "amazon", "code": "B011H51384"}, {"scheme": "google", "code": "PUZgCgAAQBAJ"}], "languages": ["eng"]}, "6ce1e5e8-5c9f-4a4b-a0dd-2a89d8bfcb06": {"title": "Free Libraries For Every Soul: Dreaming of the Online Library", "title_sort": "Free Libraries For Every Soul: Dreaming of the Online Library", "pubdate": "2014-03-08 00:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "6ce1e5e8-5c9f-4a4b-a0dd-2a89d8bfcb06", "tags": ["politicizingpiracy"], "abstract": "
\n

It seems to be an unarguable fact that libraries are a public good if not a moral standard of a modern, civilised society. They are the physical and societal manifestation of a commonly held principle that it is in society\u2019s best interests for information to flow freely, and there are very few voices that would publically dispute this point. However, over the past decade the fate of public libraries (in the western world at least) has been on a downward trajectory, threatened on all sides by political, economic and social factors. Previously held standards of access and preservation are under considerable threat, in some cases a very real threat of destruction and coercion, actual libricide not restricted to war torn countries or fundamentalist regimes.

", "publisher": "Samizdat", "authors": ["Aideen Doran"], "formats": [{"format": "pdf", "file_name": "Free Libraries For Every Soul_ Dreaming of - Aideen Doran.pdf", "dir_path": "Aideen Doran/Free Libraries For Every Soul_ Dreaming of the Online Library (187)/", "size": 92288}], "cover_url": "Aideen Doran/Free Libraries For Every Soul_ Dreaming of the Online Library (187)/cover.jpg", "identifiers": [], "languages": ["eng"]}, "c1de9fee-5428-4195-8b2b-6fe7dbd8c8e6": {"title": "Hacking Diversity: The Politics of Inclusion in Open Technology Cultures", "title_sort": "Hacking Diversity: The Politics of Inclusion in Open Technology Cultures", "pubdate": "2019-12-10 00:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "c1de9fee-5428-4195-8b2b-6fe7dbd8c8e6", "tags": ["politicizingpiracy"], "abstract": "
\n

A firsthand look at efforts to improve diversity in software and hackerspace communitiesHacking, as a mode of technical and cultural production, is commonly celebrated for its extraordinary freedoms of creation and circulation. Yet surprisingly few women participate in it: rates of involvement by technologically skilled women are drastically lower in hacking communities than in industry and academia. Hacking Diversity investigates the activists engaged in free and open-source software to understand why, despite their efforts, they fail to achieve the diversity that their ideals support.Christina Dunbar-Hester shows that within this well-meaning volunteer world, beyond the sway of human resource departments and equal opportunity legislation, members of underrepresented groups face unique challenges. She brings together more than five years of firsthand research: attending software conferences and training events, working on message boards and listservs, and frequenting North American hackerspaces. She explores who participates in voluntaristic technology cultures, to what ends, and with what consequences. Digging deep into the fundamental assumptions underpinning STEM-oriented societies, Dunbar-Hester demonstrates that while the preferred solutions of tech enthusiasts\u2014their \u201chacks\u201d of projects and cultures\u2014can ameliorate some of the \u201cbugs\u201d within their own communities, these methods come up short for issues of unequal social and economic power. Distributing \u201cdiversity\u201d in technical production is not equal to generating justice.Hacking Diversity reframes questions of diversity advocacy to consider what interventions might appropriately broaden inclusion and participation in the hacking world and beyond.

", "publisher": "Princeton University", "authors": ["Christina Dunbar-Hester"], "formats": [{"format": "epub", "file_name": "Hacking Diversity_ The Politics of Inclusi - Christina Dunbar-Hester.epub", "dir_path": "Christina Dunbar-Hester/Hacking Diversity_ The Politics of Inclusion in Open Technology Cultures (188)/", "size": 17646304}], "cover_url": "Christina Dunbar-Hester/Hacking Diversity_ The Politics of Inclusion in Open Technology Cultures (188)/cover.jpg", "identifiers": [{"scheme": "google", "code": "qiynDwAAQBAJ"}, {"scheme": "isbn", "code": "9780691182070"}], "languages": ["eng"]}, "4edea989-0283-4ad9-86e8-c523ad1e6104": {"title": "Hacker, Hoaxer, Whistleblower, Spy: The Story of Anonymous", "title_sort": "Hacker, Hoaxer, Whistleblower, Spy: The Story of Anonymous", "pubdate": "2014-11-04 00:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "4edea989-0283-4ad9-86e8-c523ad1e6104", "tags": ["politicizingpiracy"], "abstract": "

Here is the definitive book on the worldwide movement of hackers, pranksters, and activists that operates under the name Anonymous, by the woman the \"Chronicle of Higher Education\" calls \"the leading interpreter of digital insurgency\" and the \"Huffington Post\" says \"knows all of Anonymous' deepest, darkest secrets.\" Half a dozen years ago, anthropologist Gabriella Coleman set out to study the rise of this global collective just as some of its adherents were turning to political protest and disruption (before Anonymous shot to fame as a key player in the Arab Spring and Occupy Wall Street). She ended up becoming so closely connected to Anonymous that some Anons claimed her as \"their scholar,\" and the FBI asked her to inform on the movement (a request she refused). \"Hacker, Hoaxer, Whistleblower, Spy\" brims with detail from inside a mysterious subculture, including chats with imprisoned hacker Jeremy Hammond and the hacker who helped put him away, Hector \"Sabu\" Monsegur. It's a beautifully written book, with fascinating insights into the meaning of digital activism and little understood facets of culture in the Internet age, such as the histories of \"trolling\" and \"the lulz.\"

", "publisher": "Verso", "authors": ["Gabriella Coleman"], "formats": [{"format": "epub", "file_name": "Hacker, Hoaxer, Whistleblower, Spy_ The St - Gabriella Coleman.epub", "dir_path": "Gabriella Coleman/Hacker, Hoaxer, Whistleblower, Spy_ The Story of Anonymous (189)/", "size": 1623798}, {"format": "pdf", "file_name": "Hacker, Hoaxer, Whistleblower, Spy_ The St - Gabriella Coleman.pdf", "dir_path": "Gabriella Coleman/Hacker, Hoaxer, Whistleblower, Spy_ The Story of Anonymous (189)/", "size": 1548385}], "cover_url": "Gabriella Coleman/Hacker, Hoaxer, Whistleblower, Spy_ The Story of Anonymous (189)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9781781685839"}, {"scheme": "google", "code": "MIjWngEACAAJ"}, {"scheme": "goodreads", "code": "20601080"}], "languages": ["eng"]}, "ced8a5bb-8f4e-4570-a03a-704e647df472": {"title": "Digital Culture Industry: A History of Digital Distribution Hardcover", "title_sort": "Digital Culture Industry: A History of Digital Distribution Hardcover", "pubdate": "2013-03-24 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "ced8a5bb-8f4e-4570-a03a-704e647df472", "tags": ["politicizingpiracy"], "abstract": "

Through detailed intricate histories of illicit Internet piracy networks, Digital Culture Industry goes beyond the Napster creation myth and illuminates the unseen individuals, conflict and code behind the turn to digital media distribution. By utilising the internet as an archive of digital documents, the author presents unique histories of sites such as MP3.com and The Pirate Bay, and illuminates the software, values and people behind networks such as GNUtella and BitTorrent. By examining topics such as hacker ideology, data rights management and the ownership of digital media, this book demonstrates how our relationship to media objects has been transformed by digital distribution. The book also examines the method behind the work and demonstrates how digital documents can be utilised for historical research. It argues for histories that account for detail, the unintended and the impact that code can have on the trajectory of social change.\u00a0

", "publisher": "Palgrave Macmillan", "authors": ["James Allen-Robertson"], "formats": [{"format": "pdf", "file_name": "Digital Culture Industry_ A History of Dig - James Allen-Robertson.pdf", "dir_path": "James Allen-Robertson/Digital Culture Industry_ A History of Digital Distribution Hardcover (190)/", "size": 1122649}], "cover_url": "James Allen-Robertson/Digital Culture Industry_ A History of Digital Distribution Hardcover (190)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "1137033460"}, {"scheme": "isbn", "code": "9781137033468"}, {"scheme": "goodreads", "code": "16282046"}], "languages": ["eng"]}, "1d8fae7d-959d-489d-a6d7-ad1ef384f292": {"title": "Coding Freedom: The Ethics and Aesthetics of Hacking", "title_sort": "Coding Freedom: The Ethics and Aesthetics of Hacking", "pubdate": "2012-11-24 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1d8fae7d-959d-489d-a6d7-ad1ef384f292", "tags": ["politicizingpiracy"], "abstract": "

Who are computer hackers? What is free software? And what does the emergence of a community dedicated to the production of free and open source software--and to hacking as a technical, aesthetic, and moral project--reveal about the values of contemporary liberalism? Exploring the rise and political significance of the free and open source software (F/OSS) movement in the United States and Europe, Coding Freedom details the ethics behind hackers' devotion to F/OSS, the social codes that guide its production, and the political struggles through which hackers question the scope and direction of copyright and patent law. In telling the story of the F/OSS movement, the book unfolds a broader narrative involving computing, the politics of access, and intellectual property. E. Gabriella Coleman tracks the ways in which hackers collaborate and examines passionate manifestos, hacker humor, free software project governance, and festive hacker conferences. Looking at the ways that hackers sustain their productive freedom, Coleman shows that these activists, driven by a commitment to their work, reformulate key ideals including free speech, transparency, and meritocracy, and refuse restrictive intellectual protections. Coleman demonstrates how hacking, so often marginalized or misunderstood, sheds light on the continuing relevance of liberalism in online collaboration.

", "publisher": "Princeton University", "authors": ["Gabriella Coleman"], "formats": [{"format": "mobi", "file_name": "Coding Freedom_ The Ethics and Aesthetics - Gabriella Coleman.mobi", "dir_path": "Gabriella Coleman/Coding Freedom_ The Ethics and Aesthetics of Hacking (191)/", "size": 1144084}, {"format": "pdf", "file_name": "Coding Freedom_ The Ethics and Aesthetics - Gabriella Coleman.pdf", "dir_path": "Gabriella Coleman/Coding Freedom_ The Ethics and Aesthetics of Hacking (191)/", "size": 6648657}], "cover_url": "Gabriella Coleman/Coding Freedom_ The Ethics and Aesthetics of Hacking (191)/cover.jpg", "identifiers": [{"scheme": "casanova", "code": "43133.1354278271"}, {"scheme": "goodreads", "code": "16417857"}, {"scheme": "google", "code": "YAls7CTGC8EC"}, {"scheme": "isbn", "code": "9781400845293"}], "languages": ["eng"]}, "b866c911-12b2-40ac-9b4e-4a6e84b5f196": {"title": "A Hacker Manifesto", "title_sort": "Hacker Manifesto, A", "pubdate": "2004-01-01 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b866c911-12b2-40ac-9b4e-4a6e84b5f196", "tags": ["politicizingpiracy"], "abstract": "

Review

What Ken Wark's book does is take us deep into the philosophy of hacking: it gives us a new way of seeing those irreverent folks who play for keeps with digital culture. Think of his book as a lexicon that says \"play with digital culture like you would play with DNA--carefully.\" It's not every day that you get a book that takes you deep into the realm of practical analysis of the ways that we abstract thought and action in search for more kicks on-line, and for almost all aspects of control in digital culture from the top down \"Hacker Manifesto\" says--this is about exploration, this is about freedom. Inside out, upside down, information always wants to be free, and this is the book that shows us why.
--Paul D. Miller a.k.a. Dj Spooky that Subliminal Kid author of Rhythm Science (20040913)

Ours is once again an age of manifestos. Wark's book challenges the new regime of property relations with all the epigrammatic vitality, conceptual innovation, and revolutionary enthusiasm of the great manifestos.
--Michael Hardt, co-author of Empire (20040924)

A Hacker Manifesto is a highly original and provocative book. At a moment in history where we are starved of new political ideas and directions, the clarity with which Wark identifies a new political class is persuasive, and his ability to articulate their interests is remarkable.
--Marcus Boon, author of The Road of Excess (20041023)

McKenzie Wark's A Hacker Manifesto might also be called, without too much violence to its argument, The Communist Manifesto 2.0. In essence, it's an attempt to update the core of Marxist theory for that relatively novel set of historical circumstances known as the information age.
--Julian Dibbell, author of Play Money: Diary of a Dubious Proposition (20041201)

[Wark's] ambitious A Hacker Manifesto Googles for signs of hope in this cyber-global-corporate-brute world of ours, and he fixes on the hackers, macro-savvy visionaries from all fields who 'hack' the relationships and meanings the rest of us take for granted. If we hackers--of words, computers, sound, science, etc.--organize into a working, sociopolitical class, Wark argues, then the world can be ours.
--Hua Hsu (_Village Voice_ 20041201)

Writers, artists, biotechnologists, and software programmers belong to the 'hacker class' and share a class interest in openness and freedom, while the 'vectoralist' and 'ruling classes' are driven to contain, control, dominate, and own. Wark crafts a new analysis of the tension between the underdeveloped and 'overdeveloped' worlds, their relationships to surplus and scarcity, and the drive toward human actualization.
--Michael Jensen (_Chronicle of Higher Education_ 20050527)

Infuriating and inspiring in turn, A Hacker Manifesto will spawn a thousand theses, and just maybe spawn change.
--Mike Holderness (_New Scientist_ 20050601)

McKenzie Wark's A Hacker Manifesto is a remarkable and beautiful book: cogent, radical, and exhilarating, a politico-aesthetic call to arms for the digital age...Whether or not A Hacker Manifesto succeeds in rousing people to action, it's a book that anyone who's serious about understanding the changes wrought by digital culture will have to take into consideration.
--Steven Shaviro (_Resource Center for Cyberculture Studies_ )

McKenzie Wark's aptly named and timely A Hacker Manifesto is a remarkably original and passionate clarion call to question the increasing commodification of information in our digital age. The book is elegantly designed and written in a highly aphoristic style that evokes the grand essay tradition of Theodor Adorno, Roland Barthes, Walter Benjamin and Friedrich Nietzsche..._A Hacker Manifesto_ is indispensable reading for anyone who wishes to understand the multiplying complexities of digital culture. It is itself an example of hacking: forging a new world out of the ruins of the present one.
--John Conomos (_Sydney Morning Herald_ )

The larger argument may not be novel (it's plagued by the same flaws as Marx's original utopian blueprint), but this updated version of that vision provides a clever repudiation of the commodification of art, ingenuity, and the creative impulses--and a useful lens through which to examine the complexities involved in the ownership of ideas in this digital age. (_Ruminator Review_ )

A Hacker Manifesto is the Big Picture of not only where we are in the 'information age,' but where we're going as well. Adopting the [epigrammatic] style of Guy Debord's Society of the Spectacle, as well as updating its ideas, Ken Wark establishes so-called 'knowledge workers' as an unrecognized social class: 'the hacker class.' Wark also updates Marx and Engels, Deleuze and Guattari, Nietzsche, and a host of others...Far from just being the story of 'us versus them' class struggles, Ken Wark's book is far more complex: It tackles many issues, historical, emergent, and emerging. Opening up new discursive spaces where none existed before, A Hacker Manifesto might well turn out to be one of the most important books of the new century.
--Roy Christopher (_Frontwheeldrive.com_ )

A Hacker Manifesto will yield some provocative ideas and real challenges to a world in which everything is commodified.
--Eric J. Iannelli (_Times Literary Supplement_ )

Wark's ideas about open-source culture, environmentalism, and the politics of information exchange are fresh enough to merit real attention. A Hacker Manifesto...might incite a genuinely important conversation about the shape of the future.
--Peter Ritter (_Rain Taxi_ )

Product Description

A double is haunting the world--the double of abstraction, the virtual reality of information, programming or poetry, math or music, curves or colorings upon which the fortunes of states and armies, companies and communities now depend. The bold aim of this book is to make manifest the origins, purpose, and interests of the emerging class responsible for making this new world--for producing the new concepts, new perceptions, and new sensations out of the stuff of raw data.

A Hacker Manifesto deftly defines the fraught territory between the ever more strident demands by drug and media companies for protection of their patents and copyrights and the pervasive popular culture of file sharing and pirating. This vexed ground, the realm of so-called \"intellectual property,\" gives rise to a whole new kind of class conflict, one that pits the creators of information--the hacker class of researchers and authors, artists and biologists, chemists and musicians, philosophers and programmers--against a possessing class who would monopolize what the hacker produces.

Drawing in equal measure on Guy Debord and Gilles Deleuze, A Hacker Manifesto offers a systematic restatement of Marxist thought for the age of cyberspace and globalization. In the widespread revolt against commodified information, McKenzie Wark sees a utopian promise, beyond the property form, and a new progressive class, the hacker class, who voice a shared interest in a new information commons.

(20041127)

", "publisher": "Harvard University", "authors": ["McKenzie Wark"], "formats": [{"format": "pdf", "file_name": "A Hacker Manifesto - McKenzie Wark.pdf", "dir_path": "McKenzie Wark/A Hacker Manifesto (192)/", "size": 468843}], "cover_url": "McKenzie Wark/A Hacker Manifesto (192)/cover.jpg", "identifiers": [{"scheme": "goodreads", "code": "369873"}, {"scheme": "isbn", "code": "9780674015432"}, {"scheme": "google", "code": "PxrMf24HbmYC"}, {"scheme": "amazon", "code": "0674015436"}], "languages": ["eng"]}, "2658df9f-58f6-4631-a993-49e357b52211": {"title": "Freedom Libraries: The Untold Story of Libraries for African Americans in the South", "title_sort": "Freedom Libraries: The Untold Story of Libraries for African Americans in the South", "pubdate": "2019-10-14 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "2658df9f-58f6-4631-a993-49e357b52211", "tags": ["politicizingpiracy"], "abstract": "

Freedom Libraries: The Untold Story of Libraries for African-Americans in the South. As the Civil Rights Movement exploded across the United States, the media of the time was able to show the rest of the world images of horrific racial violence. And while some of the bravest people of the 20th century risked their lives for the right to simply order a cheeseburger, ride a bus, or use a clean water fountain, there was another virtually unheard of struggle--this one for the right to read. Although illegal, racial segregation was strictly enforced in a number of American states, and public libraries were not immune. Numerous libraries were desegregated on paper only: there would be no cards given to African-Americans, no books for them read, and no furniture for them to use. It was these exact conditions that helped create Freedom Libraries. Over eighty of these parallel libraries appeared in the Deep South, staffed by civil rights voter registration workers. While the grassroots nature of the libraries meant they varied in size and quality, all of them created the first encounter many African-Americans had with a library. Terror, bombings, and eventually murder would be visited on the Freedom Libraries--with people giving up their lives so others could read a library book. This book delves into how these libraries were the heart of the Civil Rights Movement, and the remarkable courage of the people who used them. They would forever change libraries and librarianship, even as they helped the greater movement change the society these libraries belonged to. Photographs of the libraries bring this little-known part of American history to life.

", "publisher": "Rowman & Littlefield", "authors": ["Mike Selby"], "formats": [{"format": "epub", "file_name": "Freedom Libraries_ The Untold Story of Lib - Mike Selby.epub", "dir_path": "Mike Selby/Freedom Libraries_ The Untold Story of Libraries for African Americans in the South (193)/", "size": 3189207}, {"format": "pdf", "file_name": "Freedom Libraries_ The Untold Story of Lib - Mike Selby.pdf", "dir_path": "Mike Selby/Freedom Libraries_ The Untold Story of Libraries for African Americans in the South (193)/", "size": 6224248}], "cover_url": "Mike Selby/Freedom Libraries_ The Untold Story of Libraries for African Americans in the South (193)/cover.jpg", "identifiers": [{"scheme": "google", "code": "WufywwEACAAJ"}, {"scheme": "amazon", "code": "1538115530"}, {"scheme": "isbn", "code": "9781538115534"}], "languages": ["eng"]}, "d9b87b05-beda-47c9-8022-a52e5c33970c": {"title": "Archives", "title_sort": "Archives", "pubdate": "2019-07-16 16:59:43+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "d9b87b05-beda-47c9-8022-a52e5c33970c", "tags": ["politicizingpiracy"], "abstract": "


Archives have become a nexus in the wake of the digital turn. This book sets out to show how expanded archival practices can challenge contemporary conceptions and inform the redistribution of power and resources. Calling for the necessity to reimagine the potentials of archives in practice, the three contributions ask: Can archives fulfill their paradoxical potential as utopian sites in which the analog and the digital, the past and future, and remembrance and forgetting commingle?


", "publisher": "Meson Press", "authors": ["Andrew Lison", "Marcell Mars", "Tomislav Medak", "Rick Prelinger"], "formats": [{"format": "pdf", "file_name": "Archives - Andrew Lison.pdf", "dir_path": "Andrew Lison/Archives (194)/", "size": 873135}], "cover_url": "Andrew Lison/Archives (194)/cover.jpg", "identifiers": [{"scheme": "doi", "code": "10.14619/1501"}, {"scheme": "isbn", "code": "9781517908065"}], "languages": ["eng"], "series": "In Search of Media"}, "1ff12583-082d-4965-86d4-ac9052f7beae": {"title": "The Politics of Mass Digitization", "title_sort": "Politics of Mass Digitization, The", "pubdate": "2019-01-28 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "1ff12583-082d-4965-86d4-ac9052f7beae", "tags": ["politicizingpiracy"], "abstract": "

A new examination of mass digitization as an emerging sociopolitical and sociotechnical phenomenon that alters the politics of cultural memory.Today, all of us with internet connections can access millions of digitized cultural artifacts from the comfort of our desks. Institutions and individuals add thousands of new cultural works to the digital sphere every day, creating new central nexuses of knowledge. How does this affect us politically and culturally? In this book, Nanna Bonde Thylstrup approaches mass digitization as an emerging sociopolitical and sociotechnical phenomenon, offering a new understanding of a defining concept of our time.Arguing that digitization has become a global cultural political project, Thylstrup draws on case studies of different forms of mass digitization\u2014including Google Books, Europeana, and the shadow libraries Monoskop, lib.ru, and Ubuweb\u2014to suggest a different approach to the study of digital cultural memory archives. She constructs a new theoretical framework for understanding mass digitization that focuses on notions of assemblage, infrastructure, and infrapolitics. Mass digitization does not consist merely of neutral technical processes, Thylstrup argues, but of distinct subpolitical processes that give rise to new kinds of archives and new ways of interacting with the artifacts they contain. With this book, she offers important and timely guidance on how mass digitization alters the politics of cultural memory to impact our relationship with the past and with one another.

", "publisher": "MIT", "authors": ["Nanna Bonde Thylstrup"], "formats": [{"format": "pdf", "file_name": "The Politics of Mass Digitization - Nanna Bonde Thylstrup.pdf", "dir_path": "Nanna Bonde Thylstrup/The Politics of Mass Digitization (195)/", "size": 5757280}], "cover_url": "Nanna Bonde Thylstrup/The Politics of Mass Digitization (195)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780262039017"}, {"scheme": "google", "code": "6d-CDwAAQBAJ"}, {"scheme": "amazon", "code": "026203901X"}], "languages": ["eng"]}, "b56cdf3c-9706-47e7-8585-fb418c072e0e": {"title": "System Of A Takedown", "title_sort": "System Of A Takedown", "pubdate": "2019-07-14 22:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b56cdf3c-9706-47e7-8585-fb418c072e0e", "tags": ["politicizingpiracy"], "abstract": "

Since 2012 the Public Library/Memory of the World1 project has been developing and publicly supporting scenarios for massive disobedience against the current regulation of production and circulation of knowledge and culture in the digital realm. While the significance of that year may not be immediately apparent to everyone, across the peripheries of an unevenly developed world of higher education and research it produced a resonating void. The takedown of the book-sharing site Library.nu in early 2012 gave rise to an anxiety that the equalizing effect that its piracy had created\u2014the fact that access to the most recent and relevant scholarship was no longer a privilege of rich academic institutions in a few countries of the world (or, for that matter, the exclusive preserve of academia to begin with)\u2014would simply disappear into thin air. While alternatives within these peripheries quickly filled the gap, it was only through an unlikely set of circumstances that they were able to do so, let alone continue to exist in light of the legal persecution they now also face.\n\nThe starting point for the Public Library/Memory of the World project was a simple consideration: the public library is the institutional form that societies have devised in order to make knowledge and culture accessible to all their members regardless of social or economic status. There\u2019s a political consensus that this principle of access is fundamental to the purpose of a modern society. Yet, as digital networks have radically expanded the access to literature and scientific research, public libraries were largely denied the ability to extend to digital \u201cobjects\u201d the kind of de-commodified access they provide in the world of print. For instance, libraries frequently don\u2019t have the right to purchase e-books for lending and preservation. If they do, they are limited by how many times\u2014 twenty-six in the case of one publisher\u2014and under what conditions they can lend them before not only the license but the \u201cobject\u201d itself is revoked. In the case of academic journals, it is even worse: as they move to predominantly digital models of distribution, libraries can provide access to and \u201cpreserve\u201d them only for as long as they pay extortionate prices for ongoing subscriptions. By building tools for organizing and sharing electronic libraries, creating digitization workflows, and making books available online, the Public Library/Memory of the World project is aimed at helping to fill the space that remains denied to real-world public libraries. It is obviously not alone in this effort. There are many other platforms, some more public, some more secretive, working to help people share books. And the practice of sharing is massive.

", "publisher": "Meson Press", "authors": ["Marcell Mars", "Tomislav Medak"], "formats": [{"format": "pdf", "file_name": "System Of A Takedown - Marcell Mars.pdf", "dir_path": "Marcell Mars/System Of A Takedown (196)/", "size": 143592}], "cover_url": "Marcell Mars/System Of A Takedown (196)/cover.jpg", "identifiers": [], "languages": ["eng"], "series": "In Search of Media"}, "b207fb83-a3d7-4ee6-b3a9-a1b402c3786c": {"title": "Guerrilla Open Access", "title_sort": "Guerrilla Open Access", "pubdate": "0101-01-01 00:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "b207fb83-a3d7-4ee6-b3a9-a1b402c3786c", "tags": ["politicizingpiracy"], "abstract": "
\"In the 1990s, the Internet offered a horizon from which to imagine what society could become, promising autonomy and self-organization next to redistribution of wealth and collectivized means of production. While the former was in line with the dominant ideology of freedom, the latter ran contrary to the expanding enclosures in capitalist globalization. This antagonism has led to epochal copyfights, where free software and piracy kept the promise of radical commoning alive.

Free software, as Christopher Kelty writes in this pamphlet, provided a model \u2018of a shared, collective, process of making software, hardware and infrastructures that cannot be appropriated by others\u2019. Well into the 2000s, it served as an inspiration for global free culture and open access movements who were speculating that distributed infrastructures of knowledge production could be built, as the Internet was, on top of free software.

For a moment, the hybrid world of ad-financed Internet giants\u2014sharing code, advocating open standards and interoperability\u2014and users empowered by these services, convinced almost everyone that a new reading/writing culture was possible. Not long after the crash of 2008, these disruptors, now wary monopolists, began to ingest smaller disruptors and close off their platforms. There was still free software somewhere underneath, but without the \u2018original sense of shared, collective, process\u2019. So, as Kelty suggests, it was hard to imagine that for-profit academic publishers wouldn't try the same with open access.

Heeding Aaron Swartz\u2019s call to civil disobedience, Guerrilla Open Access has emerged out of the outrage over digitally-enabled enclosure of knowledge that has allowed these for-profit academic publishers to appropriate extreme profits that stand in stark contrast to the cuts, precarity, student debt and asymmetries of access in education. Shadow libraries stood in for the access denied to public libraries, drastically reducing global asymmetries in the process.

This radicalization of access has changed how publications travel across time and space. Digital archiving, cataloging and sharing is transforming what we once considered as private libraries. Amateur librarianship is becoming public shadow librarianship. Hybrid use, as poetically unpacked in Bal\u00e1zs Bod\u00f3's reflection on his own personal library, is now entangling print and digital in novel ways. And, as he warns, the terrain of antagonism is shifting. While for-profit publishers are seemingly conceding to Guerrilla Open Access, they are opening new territories: platforms centralizing data, metrics and workflows, subsuming academic autonomy into new processes of value extraction.

The 2010s brought us hope and then realization how little digital networks could help revolutionary movements. The redistribution toward the wealthy, assisted by digitization, has eroded institutions of solidarity. The embrace of privilege\u2014 marked by misogyny, racism and xenophobia\u2014this has catalyzed is nowhere more evident than in the climate denialism of the Trump administration. Guerrilla archiving of US government climate change datasets, as recounted by Laurie Allen, indicates that more technological innovation simply won't do away with the 'post-truth' and that our institutions might be in need of revision, replacement and repair.\" - Memory of the World
", "publisher": "Post Office Press", "authors": ["Memory of the World", "Bal\u00e1zs Bod\u00f3", "Christopher Kelty", "Laurie Allen"], "formats": [{"format": "pdf", "file_name": "Guerrilla Open Access - Memory of the World.pdf", "dir_path": "Memory of the World/Guerrilla Open Access (197)/", "size": 9620886}], "cover_url": "Memory of the World/Guerrilla Open Access (197)/cover.jpg", "identifiers": [], "languages": ["eng"]}, "09704171-3494-4d8c-9451-030baaf53525": {"title": "A Reader in International Media Piracy: Pirate Essays", "title_sort": "Reader in International Media Piracy: Pirate Essays, A", "pubdate": "2015-11-14 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "09704171-3494-4d8c-9451-030baaf53525", "tags": ["politicizingpiracy"], "abstract": "

Piracy. It is among the most prevalent and vexing issues of the digital age. In just the last decade, it has altered the music industry beyond recognition, changed the way people watch television, and dented the business models of the film and software industries. From MP3 files to recipes from French celebrity chefs to the jokes of American standup comedians, piracy is ubiquitous. And now piracy can even be an arbiter of taste, such as in the decision by Netflix Netherlands to license heavily pirated shows.

\n

In this unflinching analysis of piracy on the internet and in the markets of the Global South, Tilman Baumg\u00e4rtel brings together a collection of essays examining the economic, political, and cultural consequences of piracy. The contributors explore a wide array of topics, which include materiality and piracy in Rio de Janeiro; informal media distribution and the film experience in Hanoi, Vietnam; the infrastructure of piracy in Nigeria; the political economy of copy protection; and much more. Offering a theoretical background for future studies of piracy, A Reader in International Media Piracy is an important collection on the burning issue of the internet age.

", "publisher": "Amsterdam University", "authors": ["Tilman Baumg\u00e4rtel"], "formats": [{"format": "pdf", "file_name": "A Reader in International Media Piracy_ Pi - Tilman Baumgartel.pdf", "dir_path": "Tilman Baumgartel/A Reader in International Media Piracy_ Pirate Essays (198)/", "size": 1734508}], "cover_url": "Tilman Baumgartel/A Reader in International Media Piracy_ Pirate Essays (198)/cover.jpg", "identifiers": [{"scheme": "amazon", "code": "9089648682"}, {"scheme": "isbn", "code": "9789089648686"}], "languages": ["eng"], "series": "MediaMatters"}, "0faa5cd8-da60-4c08-94e2-12e289523b76": {"title": "Piracy: the intellectual property wars from Gutenberg to Gates", "title_sort": "Piracy: the intellectual property wars from Gutenberg to Gates", "pubdate": "2009-01-15 07:45:53+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "0faa5cd8-da60-4c08-94e2-12e289523b76", "tags": ["politicizingpiracy"], "abstract": "

From Publishers Weekly

The recording industry's panic over illegal downloads is nothing new; a century ago, London publishers faced a similar crisis when pirate editions of sheet music were widely available at significantly less cost. Similarly, the debate over pharmaceutical patents echoes an 18th-century dispute over the origins of Epsom salt. These are just two of the historical examples that Johns (_The Nature of the Book_) draws upon as he traces the tensions between authorized and unauthorized producers and distributors of books, music, and other intellectual property in British and American culture from the 17th century to the present. Johns's history is liveliest when it is rooted in the personal\u2014the 19th-century renegade bibliographer Samuel Egerton Brydges, for example, or the jazz and opera lovers who created a thriving network of bootleg recordings in the 1950s\u2014but the shifting theoretical arguments about copyright and authorial property are presented in a cogent and accessible manner. Johns's research stands as an important reminder that today's intellectual property crises are not unprecedented, and offers a survey of potential approaches to a solution. 40 b&w illus. (Feb.)
Copyright \u00a9 Reed Business Information, a division of Reed Elsevier Inc. All rights reserved.

Review

\"In his invaluable book Piracy, Adrian Johns argues that the tendency of intellectual property battles to undermine privacy is not new. On the contrary, Johns . . . argues that ever since the medieval and Enlightenment eras, corporations have tried to defend their economic interests by searching for intellectual piracy in the private sphere of people''s homes. He says that all of our current debates about intellectual piracy\u2014from Google''s efforts to create a universal digital library to the fight over how vigorous patents should be\u2014have antecedents in the copyright wars of earlier eras.\"\u2014Jeffrey Rosen, Washington Post

(Jeffrey Rosen Washington Post )

\u201cIt\u2019s easy to assume, amid all the brouhaha about intellectual property, illegal downloading, and the internet in general, that the question of piracy was born with the web browser. But as long as there have been ideas, people have been accused of stealing them. In this detail-packed biography of fakery, science historian Adrian Johns describes one of the earliest attempts to protect authors\u2019 rights\u2014a vellum-bound book registry in the Stationer\u2019s Hall in 17th century London\u2014and examines everything from the Victorian crusade against the patent, to the radio pirates of the 1920s, to the telephone phreakers of the 1970s and the computer hackers of today. Piracy is not new, he concludes, but we are due for a revolution in intellectual property, and science may be its ideal breeding ground.\u201d\u2014_Seed_

(_Seed_ )

\u201cWhile the rise of the Internet has given it new dimensions, the concept of intellectual piracy has existed for centuries, and the disputes of previous eras have much in common with those of our own time. In a new book, _Piracy, Adrian Johns details the long history of the term and its battles, arguing that those who would shape the future of intellectual property should first understand its past.\u201d\u2014Inside Higher Education_

(_Inside Higher Education_ )

\u201cJohns makes a bold claim: disputes over intellectual piracy have touched on so many crucial issues of creativity and commerce, identity and invention, science and society, that tracing them amounts to \u2018a history of modernity from askance.\u2019 . . . More generally, Piracy shows us how the very notion of intellectual property\u2014and its sharp division into the fields of patent and copyright\u2014was created in response to specific pressures and so could be modified dramatically or even abolished. . . . \u2018We are constantly trying to shoehorn problems into an intellectual framework designed 150 years ago in a different world.\u2019\u201d\u2014Matthew Reisz, Times Higher Education

(_Times Higher Education_ )

\"Adrian Johns argues that piracy is a cultural force that has driven the development of intellectual-property law, politics, and practices. As copying technologies have advanced, from the invention of printing in the sixteenth century to the present, acts of piracy have shaped endeavours from scientific publishing to pharmaceuticals and software. . . . Johns suggests, counter-intuitively, that piracy can promote the development of technology. The resulting competition forces legitimate innovators to manoeuvre for advantage\u2014by moving quickly, using technical countermeasures or banding together and promoting reputation as an indicator of quality, such as through trademarks. . . . The exclusive rights granted by intellectual-property laws are always being reshaped by public opinion, and accused pirates have lobbied against these laws for centuries.\"\u2014Michael Gollin, Nature

(Michael Gollin Nature )

", "publisher": "University Of Chicago", "authors": ["Adrian Johns"], "formats": [{"format": "epub", "file_name": "Piracy_ the intellectual property wars fro - Adrian Johns.epub", "dir_path": "Adrian Johns/Piracy_ the intellectual property wars from Gutenberg to Gates (199)/", "size": 5253960}], "cover_url": "Adrian Johns/Piracy_ the intellectual property wars from Gutenberg to Gates (199)/cover.jpg", "identifiers": [{"scheme": "isbn", "code": "9780226401188"}, {"scheme": "goodreads", "code": "6990457"}], "languages": ["eng"]}, "bd2b4307-2072-4ef4-921c-271092217984": {"title": "Culture Machine Vol10.2009 - Doing it for ourselves: The Pirate Bay as strategic sovereign", "title_sort": "Culture Machine Vol10.2009 - Doing it for ourselves: The Pirate Bay as strategic sovereign", "pubdate": "2011-01-25 23:00:00+00:00", "last_modified": "2020-01-17 00:09:41.514646+00:00", "library_uuid": "4bac0c2f-4dce-4718-b4d7-00460ac1d21f", "librarian": "Audre Elbakyan", "_id": "bd2b4307-2072-4ef4-921c-271092217984", "tags": ["politicizingpiracy"], "abstract": "", "publisher": "", "authors": ["Jonas Andersson"], "formats": [{"format": "epub", "file_name": "Culture Machine Vol10.2009 - Doing it for - Jonas Andersson.epub", "dir_path": "Jonas Andersson/Culture Machine Vol10.2009 - Doing it for ourselves_ The Pirate Bay as strategic sovereign (200)/", "size": 355011}, {"format": "pdf", "file_name": "Culture Machine Vol10.2009 - Doing it for - Jonas Andersson.pdf", "dir_path": "Jonas Andersson/Culture Machine Vol10.2009 - Doing it for ourselves_ The Pirate Bay as strategic sovereign (200)/", "size": 213380}], "cover_url": "Jonas Andersson/Culture Machine Vol10.2009 - Doing it for ourselves_ The Pirate Bay as strategic sovereign (200)/cover.jpg", "identifiers": [], "languages": ["eng"]}} \ No newline at end of file diff --git a/static/css/styles.css b/static/css/styles.css new file mode 100644 index 0000000..e477621 --- /dev/null +++ b/static/css/styles.css @@ -0,0 +1 @@ +/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}a{background-color:transparent}b{font-weight:bolder}img{border-style:none}p{margin:0}ul{list-style:none;margin:0;padding:0}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;line-height:1.5}*,::before,::after{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}img{border-style:solid}a{color:inherit;text-decoration:inherit}img{display:block;vertical-align:middle}img{max-width:100%;height:auto}@font-face{font-family:playfairdisplay regular;font-weight:400;src:url(../fonts/PlayfairDisplay-Regular.woff)format('woff')}@font-face{font-family:vg5000-regular;font-weight:400;src:url(../fonts/VG5000-Regular_web.woff)format('woff')}html{font-size:1.5em;background-color:#f2f6d5}p{padding-bottom:.5rem;line-height:1.25}footer{font-family:vg5000-regular,sans;font-size:.75rem;color:#29102f}a{color:#996561}a:hover{text-decoration:underline}.edit-button{border-bottom-width:4px;border-color:#f2f6d5;padding-left:.25rem;padding-right:.25rem;background-color:#996561;margin-bottom:.5rem;font-family:vg5000-regular,sans;color:#f2f6d5}.edit-button:hover{background-color:#f2f6d5;color:#996561;border-bottom-width:2px;border-color:#996561}.title-text{font-family:playfairdisplay regular,sans;font-size:2.25rem;color:#996561}.title-pretext{font-family:vg5000-regular,sans;font-size:1rem;color:#996561}.content-text{font-family:playfairdisplay regular,sans;font-size:1.25rem;color:#29102f}.sidebar-title{font-family:vg5000-regular,sans;font-size:1rem;color:#996561}.sidebar-list{font-family:vg5000-regular,sans;font-size:1.25rem;color:#996561}.logo{font-family:vg5000-regular,sans;font-size:1.25rem;color:#996561;padding-top:.5rem}.bg-CoconutCream{background-color:#f2f6d5}.bg-AuChico{background-color:#996561}.border-CoconutCream{border-color:#f2f6d5}.border-b-8{border-bottom-width:8px}.cursor-pointer{cursor:pointer}.block{display:block}.flex{display:-webkit-box;display:flex}.justify-between{-webkit-box-pack:justify;justify-content:space-between}.font-vg5000{font-family:vg5000-regular,sans}.font-playfair{font-family:playfairdisplay regular,sans}.font-bold{font-weight:700}.h-full{height:100%}.leading-none{line-height:1}.mx-4{margin-left:1rem;margin-right:1rem}.mb-1{margin-bottom:.25rem}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-12{margin-bottom:3rem}.p-1{padding:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.pr-4{padding-right:1rem}.pt-6{padding-top:1.5rem}.pb-8{padding-bottom:2rem}.pt-16{padding-top:4rem}.pt-32{padding-top:8rem}.static{position:static}.sticky{position:-webkit-sticky;position:sticky}.top-0{top:0}.text-CoconutCream{color:#f2f6d5}.text-xs{font-size:.75rem}.text-base{font-size:1rem}.w-2\/5{width:40%}.w-3\/5{width:60%}.z-10{z-index:10} \ No newline at end of file diff --git a/static/fonts/PlayfairDisplay-Black.woff b/static/fonts/PlayfairDisplay-Black.woff new file mode 100644 index 0000000..c4d83a4 Binary files /dev/null and b/static/fonts/PlayfairDisplay-Black.woff differ diff --git a/static/fonts/PlayfairDisplay-BlackItalic.woff b/static/fonts/PlayfairDisplay-BlackItalic.woff new file mode 100644 index 0000000..6fc208a Binary files /dev/null and b/static/fonts/PlayfairDisplay-BlackItalic.woff differ diff --git a/static/fonts/PlayfairDisplay-Bold.woff b/static/fonts/PlayfairDisplay-Bold.woff new file mode 100644 index 0000000..4b5bf17 Binary files /dev/null and b/static/fonts/PlayfairDisplay-Bold.woff differ diff --git a/static/fonts/PlayfairDisplay-BoldItalic.woff b/static/fonts/PlayfairDisplay-BoldItalic.woff new file mode 100644 index 0000000..72680a7 Binary files /dev/null and b/static/fonts/PlayfairDisplay-BoldItalic.woff differ diff --git a/static/fonts/PlayfairDisplay-Italic.woff b/static/fonts/PlayfairDisplay-Italic.woff new file mode 100644 index 0000000..edd5a78 Binary files /dev/null and b/static/fonts/PlayfairDisplay-Italic.woff differ diff --git a/static/fonts/PlayfairDisplay-Regular.woff b/static/fonts/PlayfairDisplay-Regular.woff new file mode 100644 index 0000000..c5f0131 Binary files /dev/null and b/static/fonts/PlayfairDisplay-Regular.woff differ diff --git a/static/fonts/PlayfairDisplaySC-Black.woff b/static/fonts/PlayfairDisplaySC-Black.woff new file mode 100644 index 0000000..ba6a91f Binary files /dev/null and b/static/fonts/PlayfairDisplaySC-Black.woff differ diff --git a/static/fonts/PlayfairDisplaySC-BlackItalic.woff b/static/fonts/PlayfairDisplaySC-BlackItalic.woff new file mode 100644 index 0000000..d7b0629 Binary files /dev/null and b/static/fonts/PlayfairDisplaySC-BlackItalic.woff differ diff --git a/static/fonts/PlayfairDisplaySC-Bold.woff b/static/fonts/PlayfairDisplaySC-Bold.woff new file mode 100644 index 0000000..da199ca Binary files /dev/null and b/static/fonts/PlayfairDisplaySC-Bold.woff differ diff --git a/static/fonts/PlayfairDisplaySC-BoldItalic.woff b/static/fonts/PlayfairDisplaySC-BoldItalic.woff new file mode 100644 index 0000000..05467dc Binary files /dev/null and b/static/fonts/PlayfairDisplaySC-BoldItalic.woff differ diff --git a/static/fonts/PlayfairDisplaySC-Italic.woff b/static/fonts/PlayfairDisplaySC-Italic.woff new file mode 100644 index 0000000..1587598 Binary files /dev/null and b/static/fonts/PlayfairDisplaySC-Italic.woff differ diff --git a/static/fonts/PlayfairDisplaySC-Regular.woff b/static/fonts/PlayfairDisplaySC-Regular.woff new file mode 100644 index 0000000..60bd5c4 Binary files /dev/null and b/static/fonts/PlayfairDisplaySC-Regular.woff differ diff --git a/static/fonts/VG5000-Regular_web.woff b/static/fonts/VG5000-Regular_web.woff new file mode 100644 index 0000000..43810be Binary files /dev/null and b/static/fonts/VG5000-Regular_web.woff differ diff --git a/static/images/poster_qr_code.svg b/static/images/poster_qr_code.svg new file mode 100644 index 0000000..2f2a362 --- /dev/null +++ b/static/images/poster_qr_code.svg @@ -0,0 +1,7714 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +image/svg+xml \ No newline at end of file diff --git a/static/images/tockice.png b/static/images/tockice.png new file mode 100644 index 0000000..ffc03a2 Binary files /dev/null and b/static/images/tockice.png differ diff --git a/themes/piratecare/LICENSE b/themes/piratecare/LICENSE new file mode 100644 index 0000000..faff36e --- /dev/null +++ b/themes/piratecare/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2020 YOUR_NAME_HERE + +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. diff --git a/themes/piratecare/archetypes/default.md b/themes/piratecare/archetypes/default.md new file mode 100644 index 0000000..170d7e0 --- /dev/null +++ b/themes/piratecare/archetypes/default.md @@ -0,0 +1,3 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +--- diff --git a/themes/piratecare/archetypes/session.md b/themes/piratecare/archetypes/session.md new file mode 100644 index 0000000..d6518dc --- /dev/null +++ b/themes/piratecare/archetypes/session.md @@ -0,0 +1,3 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +--- \ No newline at end of file diff --git a/themes/piratecare/archetypes/topic.md b/themes/piratecare/archetypes/topic.md new file mode 100644 index 0000000..93665cc --- /dev/null +++ b/themes/piratecare/archetypes/topic.md @@ -0,0 +1,4 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +has_sessions: +--- diff --git a/themes/piratecare/assets/css/bla.css b/themes/piratecare/assets/css/bla.css new file mode 100644 index 0000000..74eba09 --- /dev/null +++ b/themes/piratecare/assets/css/bla.css @@ -0,0 +1,560 @@ +/* Tailwind base - put variables under: tailwind.config.js */ + +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +/** + * Add the correct font size in all browsers. + */ + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +/* + * Add the correct display in all browsers. + */ + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +/** + * Add the correct display in IE 10. + */ + +/** + * Manually forked from SUIT CSS Base: https://github.com/suitcss/base + * A thin layer on top of normalize.css that provides a starting point more + * suitable for web applications. + */ + +/** + * Removes the default spacing and border for appropriate elements. + */ + + +p { + margin: 0; +} + +button { + background-color: transparent; + background-image: none; + padding: 0; +} + +/** + * Work around a Firefox/IE bug where the transparent `button` background + * results in a loss of the default `button` focus styles. + */ + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + + +ul { + list-style: none; + margin: 0; + padding: 0; +} + +/** + * Tailwind custom reset styles + */ + +/** + * 1. Use the user's configured `sans` font-family (with Tailwind's default + * sans-serif font stack as a fallback) as a sane default. + * 2. Use Tailwind's default "normal" line-height so the user isn't forced + * to override it to ensure consistency even when using the default theme. + */ + +html { + font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */ + line-height: 1.5; /* 2 */ +} + +/** + * 1. Prevent padding and border from affecting element width. + * + * We used to set this in the html element and inherit from + * the parent element for everything else. This caused issues + * in shadow-dom-enhanced elements like
where the content + * is wrapped by a div with box-sizing set to `content-box`. + * + * https://github.com/mozdevs/cssremedy/issues/4 + * + * + * 2. Allow adding a border to an element by just adding a border-width. + * + * By default, the way the browser specifies that an element should have no + * border is by setting it's border-style to `none` in the user-agent + * stylesheet. + * + * In order to easily add borders to elements by just setting the `border-width` + * property, we change the default border-style for all elements to `solid`, and + * use border-width to hide them instead. This way our `border` utilities only + * need to set the `border-width` property instead of the entire `border` + * shorthand, making our border utilities much more straightforward to compose. + * + * https://github.com/tailwindcss/tailwindcss/pull/116 + */ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: currentColor; /* 2 */ +} + +/* + * Ensure horizontal rules are visible by default + */ + +/** + * Undo the `border-style: none` reset that Normalize applies to images so that + * our `border-{width}` utilities have the expected effect. + * + * The Normalize reset is unnecessary for us since we default the border-width + * to 0 on all elements. + * + * https://github.com/tailwindcss/tailwindcss/issues/362 + */ + +button { + cursor: pointer; +} + +/** + * Reset links to optimize for opt-in styling instead of + * opt-out. + */ + +a { + color: inherit; + text-decoration: inherit; +} + +/** + * Reset form element properties that are easy to forget to + * style explicitly so you don't inadvertently introduce + * styles that deviate from your design system. These styles + * supplement a partial reset that is already applied by + * normalize.css. + */ + +button { + padding: 0; + line-height: inherit; + color: inherit; +} + +/** + * Use the configured 'mono' font family for elements that + * are expected to be rendered with a monospace font, falling + * back to the system monospace stack if there is no configured + * 'mono' font family. + */ + +/** + * Make replaced elements `display: block` by default as that's + * the behavior you want almost all of the time. Inspired by + * CSS Remedy, with `svg` added as well. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +/** + * Constrain images and videos to the parent width and preserve + * their instrinsic aspect ratio. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +/* Tailwind component classes registered by plugins*/ + +/* Site Specific */ + +@font-face { + font-family: 'PlayfairDisplay Regular'; + + font-weight: 400; + + src: url("../fonts/PlayfairDisplay-Regular.woff") format('woff'); +} + +@font-face { + font-family: 'VG5000-Regular'; + + font-weight: 400; + + src: url("../fonts/VG5000-Regular_web.woff") format('woff'); +} + +html { + font-size: 1.5em; + background-color: #F2F6D5; +} + +footer { + font-family: "VG5000-Regular", sans; + font-size: 0.75rem; + color: #29102F; +} + +.title-text { + font-family: "PlayfairDisplay Regular", sans; + font-size: 2.25rem; + color: #996561; +} + +.title-pretext { + font-family: "VG5000-Regular", sans; + font-size: 1rem; + color: #996561; +} + +.content-text { + font-family: "PlayfairDisplay Regular", sans; + font-size: 1.25rem; + color: #29102F; +} + +.sidebar-title { + font-family: "VG5000-Regular", sans; + font-size: 1rem; + color: #996561; +} + +.sidebar-list { + font-family: "VG5000-Regular", sans; + font-size: 1.25rem; + color: #996561; +} + +.logo { + font-family: "VG5000-Regular", sans; + font-size: 1.25rem; + color: #996561; + padding-top: 0.5rem; +} + +a { + color: #996561; +} + +a:hover { + text-decoration: underline; +} + +/* Tailwind's utility classes - generated based on config file */ + +.bg-CoconutCream { + background-color: #F2F6D5; +} + +.cursor-pointer { + cursor: pointer; +} + +.block { + display: block; +} + +.flex { + display: flex; +} + +.justify-between { + justify-content: space-between; +} + +.font-vg5000 { + font-family: "VG5000-Regular", sans; +} + +.font-playfair { + font-family: "PlayfairDisplay Regular", sans; +} + +.h-full { + height: 100%; +} + +.leading-none { + line-height: 1; +} + +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; +} + +.mb-1 { + margin-bottom: 0.25rem; +} + +.mt-4 { + margin-top: 1rem; +} + +.mb-4 { + margin-bottom: 1rem; +} + +.mb-6 { + margin-bottom: 1.5rem; +} + +.mb-12 { + margin-bottom: 3rem; +} + +.pt-2 { + padding-top: 0.5rem; +} + +.pt-3 { + padding-top: 0.75rem; +} + +.pr-4 { + padding-right: 1rem; +} + +.pt-6 { + padding-top: 1.5rem; +} + +.pt-8 { + padding-top: 2rem; +} + +.pt-32 { + padding-top: 8rem; +} + +.fixed { + position: fixed; +} + +.sticky { + position: -webkit-sticky; + position: sticky; +} + +.top-0 { + top: 0; +} + +.text-base { + font-size: 1rem; +} + +.w-2\/5 { + width: 40%; +} + +.w-3\/5 { + width: 60%; +} diff --git a/themes/piratecare/assets/css/dev/postcss.config.js b/themes/piratecare/assets/css/dev/postcss.config.js new file mode 100644 index 0000000..d858e76 --- /dev/null +++ b/themes/piratecare/assets/css/dev/postcss.config.js @@ -0,0 +1,11 @@ +const themeDir = __dirname + '/../../../'; + +module.exports = { + plugins: [ + require('postcss-import')({ + path: [themeDir] + }), + require('tailwindcss')(themeDir + 'assets/css/tailwind.config.js'), + require('autoprefixer'), + ] +} diff --git a/themes/piratecare/assets/css/postcss.config.js b/themes/piratecare/assets/css/postcss.config.js new file mode 100644 index 0000000..3c8f3f3 --- /dev/null +++ b/themes/piratecare/assets/css/postcss.config.js @@ -0,0 +1,28 @@ +const themeDir = __dirname + '/../../'; + +module.exports = { + plugins: [ + require('postcss-import')({ + path: [themeDir] + }), + require('tailwindcss')(themeDir + 'assets/css/tailwind.config.js'), + // Configuration of purgecss for Tailwindcss + // see https://tailwindcss.com/docs/controlling-file-size/#setting-up-purgecss + require('@fullhuman/postcss-purgecss')({ + // Specify the paths to all of the template files in your project + content: [ + themeDir + 'layouts/**/*.html', + themeDir + 'exampleSite/content/**/*.html', + 'layouts/**/*.html', + 'content/**/*.html', + ], + // Include any special characters you're using in this regular expression + defaultExtractor: content => content.match(/[\w-/:]+(?404 - page not found

+{{ end }} diff --git a/themes/piratecare/layouts/_default/_markup/render-image.html b/themes/piratecare/layouts/_default/_markup/render-image.html new file mode 100644 index 0000000..c1c6a3a --- /dev/null +++ b/themes/piratecare/layouts/_default/_markup/render-image.html @@ -0,0 +1,40 @@ +{{ $text_link := .Text }} +{{ if strings.HasPrefix .Destination "bib:" }} + {{ $destination := (substr .Destination 4) }} + {{ if index $.Page.Site.Data.books.piratecarecollection $destination }} + {{ $b := index $.Page.Site.Data.books.piratecarecollection $destination }} + {{ if not $text_link }} + {{ delimit $b.authors ", " " & " }}, {{ substr $b.pubdate 0 4}}.‘{{ $b.title }}’. {{ $b.publisher }}. + {{ else }} + {{ $text_link }} + {{ end }} + {{ else }} + {{ $text_link }}⦚bib:{{ $destination }} not found + {{ end }} +{{ else if strings.HasPrefix .Destination "sesssion:" }} + {{ $destination := (substr .Destination 9) }} + {{ if $.Page.Site.GetPage $destination }} + {{ $session := $.Page.Site.GetPage $destination }} + {{ if not $text_link }} + {{ $session.Title }} + {{ else }} + {{ $text_link }} + {{ end }} + {{ else }} + {{ $text_link }}⦚session:{{ $destination }} not found + {{ end }} +{{ else if strings.HasPrefix .Destination "topic:" }} + {{ $destination := (substr .Destination 6) }} + {{ if $.Page.Site.GetPage $destination }} + {{ $topic := $.Page.Site.GetPage $destination }} + {{ if not $text_link }} + {{ $topic.Title }} + {{ else }} + {{ $text_link }} + {{ end }} + {{ else }} + {{ $text_link }}⦚topic:{{ $destination }} not found + {{ end }} +{{ else }} + {{ .Text }} +{{ end }} diff --git a/themes/piratecare/layouts/_default/baseof.html b/themes/piratecare/layouts/_default/baseof.html new file mode 100644 index 0000000..c5e2f4e --- /dev/null +++ b/themes/piratecare/layouts/_default/baseof.html @@ -0,0 +1,28 @@ + +{{- $filePath := .File -}} +{{- $gitUrl := .Site.Data.myvars.giturl -}} + + {{- partial "head.html" . -}} + {{ partialCached "css.html" . }} + + {{ with .Site.Data.myvars.edit }} +
+ edit_this + {{ $filePath.Dir }}add_new + add_new + publish + ? +
+ {{ end }} + {{- partial "header.html" . -}} +
+ +
+ {{- block "main" . }}{{- end }} +
+
+ {{- partial "footer.html" . -}} + + diff --git a/themes/piratecare/layouts/_default/list.html b/themes/piratecare/layouts/_default/list.html new file mode 100644 index 0000000..b2ee90b --- /dev/null +++ b/themes/piratecare/layouts/_default/list.html @@ -0,0 +1,19 @@ +{{ define "sidebar" }} + {{$currentNode := . }} +
+ syllabus ⦚ {{ .Title }} +
+ + + +{{ end }} + +{{ define "main" }} +
{{ .Content }}
+{{ end }} diff --git a/themes/piratecare/layouts/_default/single.html b/themes/piratecare/layouts/_default/single.html new file mode 100644 index 0000000..6ebd699 --- /dev/null +++ b/themes/piratecare/layouts/_default/single.html @@ -0,0 +1,6 @@ +{{ define "main" }} +
+ +
{{ .Content }}
+
+{{ end }} diff --git a/themes/piratecare/layouts/metadata/baseof.js.js b/themes/piratecare/layouts/metadata/baseof.js.js new file mode 100644 index 0000000..df5fa0e --- /dev/null +++ b/themes/piratecare/layouts/metadata/baseof.js.js @@ -0,0 +1 @@ +{{ block "main" . }}{{ end }} diff --git a/themes/piratecare/layouts/metadata/list.js.js b/themes/piratecare/layouts/metadata/list.js.js new file mode 100644 index 0000000..c13da94 --- /dev/null +++ b/themes/piratecare/layouts/metadata/list.js.js @@ -0,0 +1 @@ +{{ define "main" }}SECTIONS=[{{ range .Site.Sections }}{"section": "{{ trim .File.Dir "/" }}", "items": [{{ range .Pages }}"{{ .File.BaseFileName }}", {{ end }}]}, {{ end }}];{{ end }} diff --git a/themes/piratecare/layouts/partials/css.html b/themes/piratecare/layouts/partials/css.html new file mode 100644 index 0000000..a6fe2b6 --- /dev/null +++ b/themes/piratecare/layouts/partials/css.html @@ -0,0 +1,27 @@ +{{ if eq hugo.Environment "gitea" }} + +{{ else if .Site.IsServer }} + {{ $style := resources.Get "css/styles.css" | postCSS (dict "config" "./assets/css/postcss.config.js") | minify | fingerprint }} + +{{ else }} + {{ $flist := newScratch }} + {{ $flist.Set "initial" "nop" }} + {{ range (readDir "public/css") }} + {{ $finfo := os.Stat (printf "%s%s" "public/css/" .Name) }} + {{ $flist.SetInMap "css_files" (printf "%s" $finfo.ModTime) .Name }} + {{ $flist.Set "initial" "yay" }} + {{ end }} + + {{ $css := "nop" }} + + {{ if eq ($flist.Get "initial") "yay" }} + {{ $css = (index (last 1 ( $flist.GetSortedMapValues "css_files" )) 0) }} + {{ end }} + + {{ if in $css "css" }} + + {{ else }} + {{ $style := resources.Get "css/styles.css" | postCSS (dict "config" "./assets/css/postcss.config.js") | minify | fingerprint }} + + {{ end }} +{{ end }} diff --git a/themes/piratecare/layouts/partials/footer.html b/themes/piratecare/layouts/partials/footer.html new file mode 100644 index 0000000..7593ecd --- /dev/null +++ b/themes/piratecare/layouts/partials/footer.html @@ -0,0 +1,4 @@ + + diff --git a/themes/piratecare/layouts/partials/head.html b/themes/piratecare/layouts/partials/head.html new file mode 100644 index 0000000..ad3d6df --- /dev/null +++ b/themes/piratecare/layouts/partials/head.html @@ -0,0 +1,15 @@ + + +{{ block "title" . }} + {{- .Title }} - {{ .Site.Title -}} + {{ end }} +{{ if .Description }} + +{{ end }} +{{ if .Keywords }} + +{{ end }} +{{ if .Params.Author }} + +{{ end }} +{{ hugo.Generator }} diff --git a/themes/piratecare/layouts/partials/header.html b/themes/piratecare/layouts/partials/header.html new file mode 100644 index 0000000..b254887 --- /dev/null +++ b/themes/piratecare/layouts/partials/header.html @@ -0,0 +1,5 @@ +
+ + + +
diff --git a/themes/piratecare/layouts/session/list.html b/themes/piratecare/layouts/session/list.html new file mode 100644 index 0000000..1552421 --- /dev/null +++ b/themes/piratecare/layouts/session/list.html @@ -0,0 +1,8 @@ +{{ define "main" }} + + +{{ end }} diff --git a/themes/piratecare/layouts/session/single.html b/themes/piratecare/layouts/session/single.html new file mode 100644 index 0000000..562770a --- /dev/null +++ b/themes/piratecare/layouts/session/single.html @@ -0,0 +1,20 @@ +{{ define "sidebar" }} +
+ session ⦚ {{ .Title }} +
+ + +{{ end }} + +{{define "main" }} +
+
{{ .Content }}
+
+{{ end }} diff --git a/themes/piratecare/layouts/topic/list.html b/themes/piratecare/layouts/topic/list.html new file mode 100644 index 0000000..ee812d0 --- /dev/null +++ b/themes/piratecare/layouts/topic/list.html @@ -0,0 +1,8 @@ +{{ define "main" }} + + +{{ end }} diff --git a/themes/piratecare/layouts/topic/single.html b/themes/piratecare/layouts/topic/single.html new file mode 100644 index 0000000..2902acd --- /dev/null +++ b/themes/piratecare/layouts/topic/single.html @@ -0,0 +1,24 @@ +{{ define "sidebar" }} +{{ $currentNode := . }} +
+ topic ⦚ {{ .Title }} +
+ + + + +{{ end }} + +{{define "main" }} +
+
{{ .Content }}
+
+{{ end }} diff --git a/themes/piratecare/node_modules/.bin/acorn b/themes/piratecare/node_modules/.bin/acorn new file mode 120000 index 0000000..cf76760 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/acorn @@ -0,0 +1 @@ +../acorn/bin/acorn \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/autoprefixer b/themes/piratecare/node_modules/.bin/autoprefixer new file mode 120000 index 0000000..e876d81 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/autoprefixer @@ -0,0 +1 @@ +../autoprefixer/bin/autoprefixer \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/browserslist b/themes/piratecare/node_modules/.bin/browserslist new file mode 120000 index 0000000..3cd991b --- /dev/null +++ b/themes/piratecare/node_modules/.bin/browserslist @@ -0,0 +1 @@ +../browserslist/cli.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/cssesc b/themes/piratecare/node_modules/.bin/cssesc new file mode 120000 index 0000000..487b689 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/cssesc @@ -0,0 +1 @@ +../cssesc/bin/cssesc \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/detective b/themes/piratecare/node_modules/.bin/detective new file mode 120000 index 0000000..8c3093a --- /dev/null +++ b/themes/piratecare/node_modules/.bin/detective @@ -0,0 +1 @@ +../detective/bin/detective.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/esparse b/themes/piratecare/node_modules/.bin/esparse new file mode 120000 index 0000000..7423b18 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/esparse @@ -0,0 +1 @@ +../esprima/bin/esparse.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/esvalidate b/themes/piratecare/node_modules/.bin/esvalidate new file mode 120000 index 0000000..16069ef --- /dev/null +++ b/themes/piratecare/node_modules/.bin/esvalidate @@ -0,0 +1 @@ +../esprima/bin/esvalidate.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/js-yaml b/themes/piratecare/node_modules/.bin/js-yaml new file mode 120000 index 0000000..9dbd010 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/js-yaml @@ -0,0 +1 @@ +../js-yaml/bin/js-yaml.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/postcss b/themes/piratecare/node_modules/.bin/postcss new file mode 120000 index 0000000..dd6e632 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/postcss @@ -0,0 +1 @@ +../postcss-cli/bin/postcss \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/purgecss b/themes/piratecare/node_modules/.bin/purgecss new file mode 120000 index 0000000..e5e02bf --- /dev/null +++ b/themes/piratecare/node_modules/.bin/purgecss @@ -0,0 +1 @@ +../purgecss/bin/purgecss \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/tailwind b/themes/piratecare/node_modules/.bin/tailwind new file mode 120000 index 0000000..d497797 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/tailwind @@ -0,0 +1 @@ +../tailwindcss/lib/cli.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/.bin/tailwindcss b/themes/piratecare/node_modules/.bin/tailwindcss new file mode 120000 index 0000000..d497797 --- /dev/null +++ b/themes/piratecare/node_modules/.bin/tailwindcss @@ -0,0 +1 @@ +../tailwindcss/lib/cli.js \ No newline at end of file diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/LICENSE b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/LICENSE new file mode 100644 index 0000000..e7bbed9 --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Full Human + +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. diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/README.md b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/README.md new file mode 100644 index 0000000..99c176f --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/README.md @@ -0,0 +1,89 @@ +# PostCSS Purgecss +![David (path)](https://img.shields.io/david/FullHuman/purgecss?path=packages%2Fpostcss-purgecss&style=for-the-badge) +![Dependabot](https://img.shields.io/badge/dependabot-enabled-%23024ea4?style=for-the-badge) +![npm](https://img.shields.io/npm/v/@fullhuman/postcss-purgecss?style=for-the-badge) +![npm](https://img.shields.io/npm/dw/@fullhuman/postcss-purgecss?style=for-the-badge) +![GitHub](https://img.shields.io/github/license/FullHuman/purgecss?style=for-the-badge) + +[PostCSS] plugin for PurgeCSS. + +[PostCSS]: https://github.com/postcss/postcss + +## Installation + +``` +npm i -D @fullhuman/postcss-purgecss +``` + +## Usage + +```js +const purgecss = require('@fullhuman/postcss-purgecss') +postcss([ + purgecss({ + content: ['./src/**/*.html'] + }) +]) +``` + +See [PostCSS] docs for examples for your environment. + +## Options + +All of the options of purgecss are available to use with the plugins. +You will find below the main options available. For the complete list, go to the [purgecss documentation website](https://www.purgecss.com/configuration.html#options). + +### `content` (**required**) +Type: `string | Object` + +You can specify content that should be analyzed by Purgecss with an array of filenames or globs. The files can be HTML, Pug, Blade, etc. + +### `extractors` +Type: `Array` + +Purgecss can be adapted to suit your needs. If you notice a lot of unused CSS is not being removed, you might want to use a custom extractor. +More information about extractors [here](https://www.purgecss.com/extractors.html). + +### `whitelist` +Type: `Array` + +You can whitelist selectors to stop Purgecss from removing them from your CSS. This can be accomplished with the options whitelist and whitelistPatterns. + +### `whitelistPatterns` +Type: `Array` + +You can whitelist selectors based on a regular expression with whitelistPatterns. + +### `rejected` +Type: `boolean` +Default value: `false` + +If true, purged selectors will be captured and rendered as PostCSS messages. +Use with a PostCSS reporter plugin like [`postcss-reporter`](https://github.com/postcss/postcss-reporter) +to print the purged selectors to the console as they are processed. + +### `keyframes` +Type: `boolean` +Default value: `false` + +If you are using a CSS animation library such as animate.css, you can remove unused keyframes by setting the keyframes option to true. + +#### `fontFace` +Type: `boolean` +Default value: `false` + +If there are any unused @font-face rules in your css, you can remove them by setting the fontFace option to true. + +## Contributing + +Please read [CONTRIBUTING.md](./../../CONTRIBUTING.md) for details on our code of +conduct, and the process for submitting pull requests to us. + +## Versioning + +postcss-purgecss use [SemVer](http://semver.org/) for versioning. + +## License + +This project is licensed under the MIT License - see the [LICENSE](./../../LICENSE) file +for details. diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.d.ts b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.d.ts new file mode 100644 index 0000000..bbed8c2 --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.d.ts @@ -0,0 +1,31 @@ +import postcss from "postcss"; +interface RawContent { + extension: string; + raw: string; +} +interface RawCSS { + raw: string; +} +type ExtractorFunction = (content: string) => string[]; +interface Extractors { + extensions: string[]; + extractor: ExtractorFunction; +} +interface UserDefinedOptions { + content: Array; + css: Array; + defaultExtractor?: ExtractorFunction; + extractors?: Array; + fontFace?: boolean; + keyframes?: boolean; + output?: string; + rejected?: boolean; + stdin?: boolean; + stdout?: boolean; + variables?: boolean; + whitelist?: string[]; + whitelistPatterns?: Array; + whitelistPatternsChildren?: Array; +} +declare const purgeCSSPlugin: postcss.Plugin>; +export { purgeCSSPlugin as default }; diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.esm.d.ts b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.esm.d.ts new file mode 100644 index 0000000..bbed8c2 --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.esm.d.ts @@ -0,0 +1,31 @@ +import postcss from "postcss"; +interface RawContent { + extension: string; + raw: string; +} +interface RawCSS { + raw: string; +} +type ExtractorFunction = (content: string) => string[]; +interface Extractors { + extensions: string[]; + extractor: ExtractorFunction; +} +interface UserDefinedOptions { + content: Array; + css: Array; + defaultExtractor?: ExtractorFunction; + extractors?: Array; + fontFace?: boolean; + keyframes?: boolean; + output?: string; + rejected?: boolean; + stdin?: boolean; + stdout?: boolean; + variables?: boolean; + whitelist?: string[]; + whitelistPatterns?: Array; + whitelistPatternsChildren?: Array; +} +declare const purgeCSSPlugin: postcss.Plugin>; +export { purgeCSSPlugin as default }; diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.esm.js b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.esm.js new file mode 100644 index 0000000..2ddd653 --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.esm.js @@ -0,0 +1 @@ +import e from"postcss";import s,{mergeExtractorSelectors as o,defaultOptions as t}from"purgecss";const r=e.plugin("postcss-plugin-purgecss",(function(e){return async function(r,n){const c=new s,i={...t,...e};c.options=i;const{content:p,extractors:a}=i,m=p.filter(e=>"string"==typeof e),l=p.filter(e=>"object"==typeof e),u=await c.extractSelectorsFromFiles(m,a),f=c.extractSelectorsFromString(l,a),g=o(u,f);c.walkThroughCSS(r,g),c.options.fontFace&&c.removeUnusedFontFaces(),c.options.keyframes&&c.removeUnusedKeyframes(),c.options.variables&&c.removeUnusedCSSVariables(),c.options.rejected&&c.selectorsRemoved.size>0&&(n.messages.push({type:"purgecss",plugin:"postcss-purgecss",text:`purging ${c.selectorsRemoved.size} selectors:\n ${Array.from(c.selectorsRemoved).map(e=>e.trim()).join("\n ")}`}),c.selectorsRemoved.clear())}}));export default r; diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.js b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.js new file mode 100644 index 0000000..6ca6293 --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/lib/postcss-purgecss.js @@ -0,0 +1 @@ +"use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var postcss=_interopDefault(require("postcss")),PurgeCSS=require("purgecss"),PurgeCSS__default=_interopDefault(PurgeCSS);const purgeCSSPlugin=postcss.plugin("postcss-plugin-purgecss",(function(e){return async function(t,s){const r=new PurgeCSS__default,o={...PurgeCSS.defaultOptions,...e};r.options=o;const{content:n,extractors:u}=o,c=n.filter(e=>"string"==typeof e),i=n.filter(e=>"object"==typeof e),p=await r.extractSelectorsFromFiles(c,u),a=r.extractSelectorsFromString(i,u),l=PurgeCSS.mergeExtractorSelectors(p,a);r.walkThroughCSS(t,l),r.options.fontFace&&r.removeUnusedFontFaces(),r.options.keyframes&&r.removeUnusedKeyframes(),r.options.variables&&r.removeUnusedCSSVariables(),r.options.rejected&&r.selectorsRemoved.size>0&&(s.messages.push({type:"purgecss",plugin:"postcss-purgecss",text:`purging ${r.selectorsRemoved.size} selectors:\n ${Array.from(r.selectorsRemoved).map(e=>e.trim()).join("\n ")}`}),r.selectorsRemoved.clear())}}));module.exports=purgeCSSPlugin; diff --git a/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/package.json b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/package.json new file mode 100644 index 0000000..c070aec --- /dev/null +++ b/themes/piratecare/node_modules/@fullhuman/postcss-purgecss/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "@fullhuman/postcss-purgecss@2.0.6", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@fullhuman/postcss-purgecss@2.0.6", + "_id": "@fullhuman/postcss-purgecss@2.0.6", + "_inBundle": false, + "_integrity": "sha512-RgD05Yd1VFudo1H1b2inb+10AS1mexp1edHfdoJvoeKaoMVoi/9DWrbWOpIrDmKq1CO82oQrb5wf4V64oaNkKQ==", + "_location": "/@fullhuman/postcss-purgecss", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@fullhuman/postcss-purgecss@2.0.6", + "name": "@fullhuman/postcss-purgecss", + "escapedName": "@fullhuman%2fpostcss-purgecss", + "scope": "@fullhuman", + "rawSpec": "2.0.6", + "saveSpec": null, + "fetchSpec": "2.0.6" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.0.6.tgz", + "_spec": "2.0.6", + "_where": "/tmp/tailwind-hugo", + "author": { + "name": "FoundrySH", + "email": "no-reply@foundry.sh" + }, + "bugs": { + "url": "https://github.com/FullHuman/purgecss/issues" + }, + "dependencies": { + "postcss": "7.0.26", + "purgecss": "^2.0.6" + }, + "description": "PostCSS plugin for PurgeCSS", + "directories": { + "lib": "lib", + "test": "__tests__" + }, + "files": [ + "lib" + ], + "gitHead": "11f76506924277ec6833e0cd7d0798676b4ac9ef", + "homepage": "https://github.com/FullHuman/purgecss#readme", + "license": "MIT", + "main": "lib/postcss-purgecss.js", + "module": "lib/postcss-purgecss.esm.js", + "name": "@fullhuman/postcss-purgecss", + "repository": { + "type": "git", + "url": "git+https://github.com/FullHuman/purgecss.git" + }, + "scripts": { + "test": "echo \"Error: run tests from root\" && exit 1" + }, + "types": "lib/postcss-purgecss.d.ts", + "version": "2.0.6" +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/LICENSE b/themes/piratecare/node_modules/@nodelib/fs.scandir/LICENSE new file mode 100644 index 0000000..65a9994 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/README.md b/themes/piratecare/node_modules/@nodelib/fs.scandir/README.md new file mode 100644 index 0000000..e0b218b --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/README.md @@ -0,0 +1,171 @@ +# @nodelib/fs.scandir + +> List files and directories inside the specified directory. + +## :bulb: Highlights + +The package is aimed at obtaining information about entries in the directory. + +* :moneybag: Returns useful information: `name`, `path`, `dirent` and `stats` (optional). +* :gear: On Node.js 10.10+ uses the mechanism without additional calls to determine the entry type. See [`old` and `modern` mode](#old-and-modern-mode). +* :link: Can safely work with broken symbolic links. + +## Install + +```console +npm install @nodelib/fs.scandir +``` + +## Usage + +```ts +import * as fsScandir from '@nodelib/fs.scandir'; + +fsScandir.scandir('path', (error, stats) => { /* … */ }); +``` + +## API + +### .scandir(path, [optionsOrSettings], callback) + +Returns an array of plain objects ([`Entry`](#entry)) with information about entry for provided path with standard callback-style. + +```ts +fsScandir.scandir('path', (error, entries) => { /* … */ }); +fsScandir.scandir('path', {}, (error, entries) => { /* … */ }); +fsScandir.scandir('path', new fsScandir.Settings(), (error, entries) => { /* … */ }); +``` + +### .scandirSync(path, [optionsOrSettings]) + +Returns an array of plain objects ([`Entry`](#entry)) with information about entry for provided path. + +```ts +const entries = fsScandir.scandirSync('path'); +const entries = fsScandir.scandirSync('path', {}); +const entries = fsScandir.scandirSync(('path', new fsScandir.Settings()); +``` + +#### path + +* Required: `true` +* Type: `string | Buffer | URL` + +A path to a file. If a URL is provided, it must use the `file:` protocol. + +#### optionsOrSettings + +* Required: `false` +* Type: `Options | Settings` +* Default: An instance of `Settings` class + +An [`Options`](#options) object or an instance of [`Settings`](#settingsoptions) class. + +> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class. + +### Settings([options]) + +A class of full settings of the package. + +```ts +const settings = new fsScandir.Settings({ followSymbolicLinks: false }); + +const entries = fsScandir.scandirSync('path', settings); +``` + +## Entry + +* `name` — The name of the entry (`unknown.txt`). +* `path` — The path of the entry relative to call directory (`root/unknown.txt`). +* `dirent` — An instance of [`fs.Dirent`](./src/types/index.ts) class. On Node.js below 10.10 will be emulated by [`DirentFromStats`](./src/utils/fs.ts) class. +* `stats` (optional) — An instance of `fs.Stats` class. + +For example, the `scandir` call for `tools` directory with one directory inside: + +```ts +{ + dirent: Dirent { name: 'typedoc', /* … */ }, + name: 'typedoc', + path: 'tools/typedoc' +} +``` + +## Options + +### stats + +* Type: `boolean` +* Default: `false` + +Adds an instance of `fs.Stats` class to the [`Entry`](#entry). + +> :book: Always use `fs.readdir` without the `withFileTypes` option. ??TODO?? + +### followSymbolicLinks + +* Type: `boolean` +* Default: `false` + +Follow symbolic links or not. Call `fs.stat` on symbolic link if `true`. + +### `throwErrorOnBrokenSymbolicLink` + +* Type: `boolean` +* Default: `true` + +Throw an error when symbolic link is broken if `true` or safely use `lstat` call if `false`. + +### `pathSegmentSeparator` + +* Type: `string` +* Default: `path.sep` + +By default, this package uses the correct path separator for your OS (`\` on Windows, `/` on Unix-like systems). But you can set this option to any separator character(s) that you want to use instead. + +### `fs` + +* Type: [`FileSystemAdapter`](./src/adapters/fs.ts) +* Default: A default FS methods + +By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own. + +```ts +interface FileSystemAdapter { + lstat?: typeof fs.lstat; + stat?: typeof fs.stat; + lstatSync?: typeof fs.lstatSync; + statSync?: typeof fs.statSync; + readdir?: typeof fs.readdir; + readdirSync?: typeof fs.readdirSync; +} + +const settings = new fsScandir.Settings({ + fs: { lstat: fakeLstat } +}); +``` + +## `old` and `modern` mode + +This package has two modes that are used depending on the environment and parameters of use. + +### old + +* Node.js below `10.10` or when the `stats` option is enabled + +When working in the old mode, the directory is read first (`fs.readdir`), then the type of entries is determined (`fs.lstat` and/or `fs.stat` for symbolic links). + +### modern + +* Node.js 10.10+ and the `stats` option is disabled + +In the modern mode, reading the directory (`fs.readdir` with the `withFileTypes` option) is combined with obtaining information about its entries. An additional call for symbolic links (`fs.stat`) is still present. + +This mode makes fewer calls to the file system. It's faster. + +## Changelog + +See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version. + +## License + +This software is released under the terms of the MIT license. diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts new file mode 100644 index 0000000..d0adcb4 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts @@ -0,0 +1,13 @@ +/// +import * as fs from 'fs'; +export declare type FileSystemAdapter = { + lstat: typeof fs.lstat; + stat: typeof fs.stat; + lstatSync: typeof fs.lstatSync; + statSync: typeof fs.statSync; + readdir: typeof fs.readdir; + readdirSync: typeof fs.readdirSync; +}; +export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter; +export declare function createFileSystemAdapter(fsMethods?: Partial): FileSystemAdapter; +//# sourceMappingURL=fs.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/adapters/fs.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/adapters/fs.js new file mode 100644 index 0000000..dd95e35 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/adapters/fs.js @@ -0,0 +1,18 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fs = require("fs"); +exports.FILE_SYSTEM_ADAPTER = { + lstat: fs.lstat, + stat: fs.stat, + lstatSync: fs.lstatSync, + statSync: fs.statSync, + readdir: fs.readdir, + readdirSync: fs.readdirSync +}; +function createFileSystemAdapter(fsMethods) { + if (fsMethods === undefined) { + return exports.FILE_SYSTEM_ADAPTER; + } + return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods); +} +exports.createFileSystemAdapter = createFileSystemAdapter; diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/constants.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/constants.d.ts new file mode 100644 index 0000000..bb3f4fd --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/constants.d.ts @@ -0,0 +1,5 @@ +/** + * IS `true` for Node.js 10.10 and greater. + */ +export declare const IS_SUPPORT_READDIR_WITH_FILE_TYPES: boolean; +//# sourceMappingURL=constants.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/constants.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/constants.js new file mode 100644 index 0000000..43917c8 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/constants.js @@ -0,0 +1,13 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const NODE_PROCESS_VERSION_PARTS = process.versions.node.split('.'); +const MAJOR_VERSION = parseInt(NODE_PROCESS_VERSION_PARTS[0], 10); +const MINOR_VERSION = parseInt(NODE_PROCESS_VERSION_PARTS[1], 10); +const SUPPORTED_MAJOR_VERSION = 10; +const SUPPORTED_MINOR_VERSION = 10; +const IS_MATCHED_BY_MAJOR = MAJOR_VERSION > SUPPORTED_MAJOR_VERSION; +const IS_MATCHED_BY_MAJOR_AND_MINOR = MAJOR_VERSION === SUPPORTED_MAJOR_VERSION && MINOR_VERSION >= SUPPORTED_MINOR_VERSION; +/** + * IS `true` for Node.js 10.10 and greater. + */ +exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = IS_MATCHED_BY_MAJOR || IS_MATCHED_BY_MAJOR_AND_MINOR; diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/index.d.ts new file mode 100644 index 0000000..b12b529 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/index.d.ts @@ -0,0 +1,13 @@ +import { FileSystemAdapter } from './adapters/fs'; +import * as async from './providers/async'; +import Settings, { Options } from './settings'; +import { Dirent, Entry } from './types'; +declare type AsyncCallback = async.AsyncCallback; +declare function scandir(path: string, callback: AsyncCallback): void; +declare function scandir(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; +declare namespace scandir { + function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise; +} +declare function scandirSync(path: string, optionsOrSettings?: Options | Settings): Entry[]; +export { scandir, scandirSync, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, Options }; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/index.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/index.js new file mode 100644 index 0000000..6e12de0 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/index.js @@ -0,0 +1,24 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const async = require("./providers/async"); +const sync = require("./providers/sync"); +const settings_1 = require("./settings"); +exports.Settings = settings_1.default; +function scandir(path, optionsOrSettingsOrCallback, callback) { + if (typeof optionsOrSettingsOrCallback === 'function') { + return async.read(path, getSettings(), optionsOrSettingsOrCallback); + } + async.read(path, getSettings(optionsOrSettingsOrCallback), callback); +} +exports.scandir = scandir; +function scandirSync(path, optionsOrSettings) { + const settings = getSettings(optionsOrSettings); + return sync.read(path, settings); +} +exports.scandirSync = scandirSync; +function getSettings(settingsOrOptions = {}) { + if (settingsOrOptions instanceof settings_1.default) { + return settingsOrOptions; + } + return new settings_1.default(settingsOrOptions); +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts new file mode 100644 index 0000000..def26de --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts @@ -0,0 +1,8 @@ +/// +import Settings from '../settings'; +import { Entry } from '../types'; +export declare type AsyncCallback = (err: NodeJS.ErrnoException, entries: Entry[]) => void; +export declare function read(directory: string, settings: Settings, callback: AsyncCallback): void; +export declare function readdirWithFileTypes(directory: string, settings: Settings, callback: AsyncCallback): void; +export declare function readdir(directory: string, settings: Settings, callback: AsyncCallback): void; +//# sourceMappingURL=async.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/async.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/async.js new file mode 100644 index 0000000..d506853 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/async.js @@ -0,0 +1,90 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fsStat = require("@nodelib/fs.stat"); +const rpl = require("run-parallel"); +const constants_1 = require("../constants"); +const utils = require("../utils"); +function read(directory, settings, callback) { + if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) { + return readdirWithFileTypes(directory, settings, callback); + } + return readdir(directory, settings, callback); +} +exports.read = read; +function readdirWithFileTypes(directory, settings, callback) { + settings.fs.readdir(directory, { withFileTypes: true }, (readdirError, dirents) => { + if (readdirError !== null) { + return callFailureCallback(callback, readdirError); + } + const entries = dirents.map((dirent) => ({ + dirent, + name: dirent.name, + path: `${directory}${settings.pathSegmentSeparator}${dirent.name}` + })); + if (!settings.followSymbolicLinks) { + return callSuccessCallback(callback, entries); + } + const tasks = entries.map((entry) => makeRplTaskEntry(entry, settings)); + rpl(tasks, (rplError, rplEntries) => { + if (rplError !== null) { + return callFailureCallback(callback, rplError); + } + callSuccessCallback(callback, rplEntries); + }); + }); +} +exports.readdirWithFileTypes = readdirWithFileTypes; +function makeRplTaskEntry(entry, settings) { + return (done) => { + if (!entry.dirent.isSymbolicLink()) { + return done(null, entry); + } + settings.fs.stat(entry.path, (statError, stats) => { + if (statError !== null) { + if (settings.throwErrorOnBrokenSymbolicLink) { + return done(statError); + } + return done(null, entry); + } + entry.dirent = utils.fs.createDirentFromStats(entry.name, stats); + return done(null, entry); + }); + }; +} +function readdir(directory, settings, callback) { + settings.fs.readdir(directory, (readdirError, names) => { + if (readdirError !== null) { + return callFailureCallback(callback, readdirError); + } + const filepaths = names.map((name) => `${directory}${settings.pathSegmentSeparator}${name}`); + const tasks = filepaths.map((filepath) => { + return (done) => fsStat.stat(filepath, settings.fsStatSettings, done); + }); + rpl(tasks, (rplError, results) => { + if (rplError !== null) { + return callFailureCallback(callback, rplError); + } + const entries = []; + names.forEach((name, index) => { + const stats = results[index]; + const entry = { + name, + path: filepaths[index], + dirent: utils.fs.createDirentFromStats(name, stats) + }; + if (settings.stats) { + entry.stats = stats; + } + entries.push(entry); + }); + callSuccessCallback(callback, entries); + }); + }); +} +exports.readdir = readdir; +function callFailureCallback(callback, error) { + callback(error); +} +function callSuccessCallback(callback, result) { + callback(null, result); +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts new file mode 100644 index 0000000..d6ed468 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts @@ -0,0 +1,6 @@ +import Settings from '../settings'; +import { Entry } from '../types'; +export declare function read(directory: string, settings: Settings): Entry[]; +export declare function readdirWithFileTypes(directory: string, settings: Settings): Entry[]; +export declare function readdir(directory: string, settings: Settings): Entry[]; +//# sourceMappingURL=sync.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/sync.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/sync.js new file mode 100644 index 0000000..7cc36af --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/providers/sync.js @@ -0,0 +1,52 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fsStat = require("@nodelib/fs.stat"); +const constants_1 = require("../constants"); +const utils = require("../utils"); +function read(directory, settings) { + if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) { + return readdirWithFileTypes(directory, settings); + } + return readdir(directory, settings); +} +exports.read = read; +function readdirWithFileTypes(directory, settings) { + const dirents = settings.fs.readdirSync(directory, { withFileTypes: true }); + return dirents.map((dirent) => { + const entry = { + dirent, + name: dirent.name, + path: `${directory}${settings.pathSegmentSeparator}${dirent.name}` + }; + if (entry.dirent.isSymbolicLink() && settings.followSymbolicLinks) { + try { + const stats = settings.fs.statSync(entry.path); + entry.dirent = utils.fs.createDirentFromStats(entry.name, stats); + } + catch (error) { + if (settings.throwErrorOnBrokenSymbolicLink) { + throw error; + } + } + } + return entry; + }); +} +exports.readdirWithFileTypes = readdirWithFileTypes; +function readdir(directory, settings) { + const names = settings.fs.readdirSync(directory); + return names.map((name) => { + const entryPath = `${directory}${settings.pathSegmentSeparator}${name}`; + const stats = fsStat.statSync(entryPath, settings.fsStatSettings); + const entry = { + name, + path: entryPath, + dirent: utils.fs.createDirentFromStats(name, stats) + }; + if (settings.stats) { + entry.stats = stats; + } + return entry; + }); +} +exports.readdir = readdir; diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/settings.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/settings.d.ts new file mode 100644 index 0000000..175f7c1 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/settings.d.ts @@ -0,0 +1,21 @@ +import * as fsStat from '@nodelib/fs.stat'; +import * as fs from './adapters/fs'; +export declare type Options = { + followSymbolicLinks?: boolean; + fs?: Partial; + pathSegmentSeparator?: string; + stats?: boolean; + throwErrorOnBrokenSymbolicLink?: boolean; +}; +export default class Settings { + private readonly _options; + readonly followSymbolicLinks: boolean; + readonly fs: fs.FileSystemAdapter; + readonly pathSegmentSeparator: string; + readonly stats: boolean; + readonly throwErrorOnBrokenSymbolicLink: boolean; + readonly fsStatSettings: fsStat.Settings; + constructor(_options?: Options); + private _getValue; +} +//# sourceMappingURL=settings.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/settings.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/settings.js new file mode 100644 index 0000000..52c3a09 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/settings.js @@ -0,0 +1,24 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const path = require("path"); +const fsStat = require("@nodelib/fs.stat"); +const fs = require("./adapters/fs"); +class Settings { + constructor(_options = {}) { + this._options = _options; + this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, false); + this.fs = fs.createFileSystemAdapter(this._options.fs); + this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path.sep); + this.stats = this._getValue(this._options.stats, false); + this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true); + this.fsStatSettings = new fsStat.Settings({ + followSymbolicLink: this.followSymbolicLinks, + fs: this.fs, + throwErrorOnBrokenSymbolicLink: this.throwErrorOnBrokenSymbolicLink + }); + } + _getValue(option, value) { + return option === undefined ? value : option; + } +} +exports.default = Settings; diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/types/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/types/index.d.ts new file mode 100644 index 0000000..50e4b8f --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/types/index.d.ts @@ -0,0 +1,20 @@ +/// +import * as fs from 'fs'; +export declare type Entry = { + dirent: Dirent; + name: string; + path: string; + stats?: Stats; +}; +export declare type Stats = fs.Stats; +export declare type Dirent = { + isBlockDevice(): boolean; + isCharacterDevice(): boolean; + isDirectory(): boolean; + isFIFO(): boolean; + isFile(): boolean; + isSocket(): boolean; + isSymbolicLink(): boolean; + name: string; +}; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/types/index.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/types/index.js new file mode 100644 index 0000000..ce03781 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/types/index.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts new file mode 100644 index 0000000..8aef008 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts @@ -0,0 +1,3 @@ +import { Dirent, Stats } from '../types'; +export declare function createDirentFromStats(name: string, stats: Stats): Dirent; +//# sourceMappingURL=fs.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/fs.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/fs.js new file mode 100644 index 0000000..cd70c6b --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/fs.js @@ -0,0 +1,18 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +class DirentFromStats { + constructor(name, stats) { + this.name = name; + this.isBlockDevice = stats.isBlockDevice.bind(stats); + this.isCharacterDevice = stats.isCharacterDevice.bind(stats); + this.isDirectory = stats.isDirectory.bind(stats); + this.isFIFO = stats.isFIFO.bind(stats); + this.isFile = stats.isFile.bind(stats); + this.isSocket = stats.isSocket.bind(stats); + this.isSymbolicLink = stats.isSymbolicLink.bind(stats); + } +} +function createDirentFromStats(name, stats) { + return new DirentFromStats(name, stats); +} +exports.createDirentFromStats = createDirentFromStats; diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts new file mode 100644 index 0000000..5ecd894 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts @@ -0,0 +1,3 @@ +import * as fs from './fs'; +export { fs }; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/index.js b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/index.js new file mode 100644 index 0000000..61c1045 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/out/utils/index.js @@ -0,0 +1,4 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fs = require("./fs"); +exports.fs = fs; diff --git a/themes/piratecare/node_modules/@nodelib/fs.scandir/package.json b/themes/piratecare/node_modules/@nodelib/fs.scandir/package.json new file mode 100644 index 0000000..d0cc042 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.scandir/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "@nodelib/fs.scandir@2.1.3", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@nodelib/fs.scandir@2.1.3", + "_id": "@nodelib/fs.scandir@2.1.3", + "_inBundle": false, + "_integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "_location": "/@nodelib/fs.scandir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@nodelib/fs.scandir@2.1.3", + "name": "@nodelib/fs.scandir", + "escapedName": "@nodelib%2ffs.scandir", + "scope": "@nodelib", + "rawSpec": "2.1.3", + "saveSpec": null, + "fetchSpec": "2.1.3" + }, + "_requiredBy": [ + "/@nodelib/fs.walk" + ], + "_resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", + "_spec": "2.1.3", + "_where": "/tmp/tailwind-hugo", + "dependencies": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + }, + "description": "List files and directories inside the specified directory", + "engines": { + "node": ">= 8" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", + "keywords": [ + "NodeLib", + "fs", + "FileSystem", + "file system", + "scandir", + "readdir", + "dirent" + ], + "license": "MIT", + "main": "out/index.js", + "name": "@nodelib/fs.scandir", + "repository": { + "type": "git", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir" + }, + "scripts": { + "build": "npm run clean && npm run compile && npm run lint && npm test", + "clean": "rimraf {tsconfig.tsbuildinfo,out}", + "compile": "tsc -b .", + "compile:watch": "tsc -p . --watch --sourceMap", + "lint": "eslint \"src/**/*.ts\" --cache", + "test": "mocha \"out/**/*.spec.js\" -s 0", + "watch": "npm run clean && npm run compile:watch" + }, + "typings": "out/index.d.ts", + "version": "2.1.3" +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/LICENSE b/themes/piratecare/node_modules/@nodelib/fs.stat/LICENSE new file mode 100644 index 0000000..65a9994 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/README.md b/themes/piratecare/node_modules/@nodelib/fs.stat/README.md new file mode 100644 index 0000000..686f047 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/README.md @@ -0,0 +1,126 @@ +# @nodelib/fs.stat + +> Get the status of a file with some features. + +## :bulb: Highlights + +Wrapper around standard method `fs.lstat` and `fs.stat` with some features. + +* :beginner: Normally follows symbolic link. +* :gear: Can safely work with broken symbolic link. + +## Install + +```console +npm install @nodelib/fs.stat +``` + +## Usage + +```ts +import * as fsStat from '@nodelib/fs.stat'; + +fsStat.stat('path', (error, stats) => { /* … */ }); +``` + +## API + +### .stat(path, [optionsOrSettings], callback) + +Returns an instance of `fs.Stats` class for provided path with standard callback-style. + +```ts +fsStat.stat('path', (error, stats) => { /* … */ }); +fsStat.stat('path', {}, (error, stats) => { /* … */ }); +fsStat.stat('path', new fsStat.Settings(), (error, stats) => { /* … */ }); +``` + +### .statSync(path, [optionsOrSettings]) + +Returns an instance of `fs.Stats` class for provided path. + +```ts +const stats = fsStat.stat('path'); +const stats = fsStat.stat('path', {}); +const stats = fsStat.stat('path', new fsStat.Settings()); +``` + +#### path + +* Required: `true` +* Type: `string | Buffer | URL` + +A path to a file. If a URL is provided, it must use the `file:` protocol. + +#### optionsOrSettings + +* Required: `false` +* Type: `Options | Settings` +* Default: An instance of `Settings` class + +An [`Options`](#options) object or an instance of [`Settings`](#settings) class. + +> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class. + +### Settings([options]) + +A class of full settings of the package. + +```ts +const settings = new fsStat.Settings({ followSymbolicLink: false }); + +const stats = fsStat.stat('path', settings); +``` + +## Options + +### `followSymbolicLink` + +* Type: `boolean` +* Default: `true` + +Follow symbolic link or not. Call `fs.stat` on symbolic link if `true`. + +### `markSymbolicLink` + +* Type: `boolean` +* Default: `false` + +Mark symbolic link by setting the return value of `isSymbolicLink` function to always `true` (even after `fs.stat`). + +> :book: Can be used if you want to know what is hidden behind a symbolic link, but still continue to know that it is a symbolic link. + +### `throwErrorOnBrokenSymbolicLink` + +* Type: `boolean` +* Default: `true` + +Throw an error when symbolic link is broken if `true` or safely return `lstat` call if `false`. + +### `fs` + +* Type: [`FileSystemAdapter`](./src/adapters/fs.ts) +* Default: A default FS methods + +By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own. + +```ts +interface FileSystemAdapter { + lstat?: typeof fs.lstat; + stat?: typeof fs.stat; + lstatSync?: typeof fs.lstatSync; + statSync?: typeof fs.statSync; +} + +const settings = new fsStat.Settings({ + fs: { lstat: fakeLstat } +}); +``` + +## Changelog + +See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version. + +## License + +This software is released under the terms of the MIT license. diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts b/themes/piratecare/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts new file mode 100644 index 0000000..d17b356 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts @@ -0,0 +1,11 @@ +/// +import * as fs from 'fs'; +export declare type FileSystemAdapter = { + lstat: typeof fs.lstat; + stat: typeof fs.stat; + lstatSync: typeof fs.lstatSync; + statSync: typeof fs.statSync; +}; +export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter; +export declare function createFileSystemAdapter(fsMethods?: Partial): FileSystemAdapter; +//# sourceMappingURL=fs.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/adapters/fs.js b/themes/piratecare/node_modules/@nodelib/fs.stat/out/adapters/fs.js new file mode 100644 index 0000000..3a9806f --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/adapters/fs.js @@ -0,0 +1,16 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fs = require("fs"); +exports.FILE_SYSTEM_ADAPTER = { + lstat: fs.lstat, + stat: fs.stat, + lstatSync: fs.lstatSync, + statSync: fs.statSync +}; +function createFileSystemAdapter(fsMethods) { + if (fsMethods === undefined) { + return exports.FILE_SYSTEM_ADAPTER; + } + return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods); +} +exports.createFileSystemAdapter = createFileSystemAdapter; diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.stat/out/index.d.ts new file mode 100644 index 0000000..5f092f9 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/index.d.ts @@ -0,0 +1,13 @@ +import { FileSystemAdapter } from './adapters/fs'; +import * as async from './providers/async'; +import Settings, { Options } from './settings'; +import { Stats } from './types'; +declare type AsyncCallback = async.AsyncCallback; +declare function stat(path: string, callback: AsyncCallback): void; +declare function stat(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; +declare namespace stat { + function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise; +} +declare function statSync(path: string, optionsOrSettings?: Options | Settings): Stats; +export { Settings, stat, statSync, AsyncCallback, FileSystemAdapter, Options, Stats }; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/index.js b/themes/piratecare/node_modules/@nodelib/fs.stat/out/index.js new file mode 100644 index 0000000..6a98f77 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/index.js @@ -0,0 +1,24 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const async = require("./providers/async"); +const sync = require("./providers/sync"); +const settings_1 = require("./settings"); +exports.Settings = settings_1.default; +function stat(path, optionsOrSettingsOrCallback, callback) { + if (typeof optionsOrSettingsOrCallback === 'function') { + return async.read(path, getSettings(), optionsOrSettingsOrCallback); + } + async.read(path, getSettings(optionsOrSettingsOrCallback), callback); +} +exports.stat = stat; +function statSync(path, optionsOrSettings) { + const settings = getSettings(optionsOrSettings); + return sync.read(path, settings); +} +exports.statSync = statSync; +function getSettings(settingsOrOptions = {}) { + if (settingsOrOptions instanceof settings_1.default) { + return settingsOrOptions; + } + return new settings_1.default(settingsOrOptions); +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/async.d.ts b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/async.d.ts new file mode 100644 index 0000000..a9637c5 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/async.d.ts @@ -0,0 +1,5 @@ +import Settings from '../settings'; +import { ErrnoException, Stats } from '../types'; +export declare type AsyncCallback = (err: ErrnoException, stats: Stats) => void; +export declare function read(path: string, settings: Settings, callback: AsyncCallback): void; +//# sourceMappingURL=async.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/async.js b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/async.js new file mode 100644 index 0000000..ab98c29 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/async.js @@ -0,0 +1,31 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +function read(path, settings, callback) { + settings.fs.lstat(path, (lstatError, lstat) => { + if (lstatError !== null) { + return callFailureCallback(callback, lstatError); + } + if (!lstat.isSymbolicLink() || !settings.followSymbolicLink) { + return callSuccessCallback(callback, lstat); + } + settings.fs.stat(path, (statError, stat) => { + if (statError !== null) { + if (settings.throwErrorOnBrokenSymbolicLink) { + return callFailureCallback(callback, statError); + } + return callSuccessCallback(callback, lstat); + } + if (settings.markSymbolicLink) { + stat.isSymbolicLink = () => true; + } + callSuccessCallback(callback, stat); + }); + }); +} +exports.read = read; +function callFailureCallback(callback, error) { + callback(error); +} +function callSuccessCallback(callback, result) { + callback(null, result); +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts new file mode 100644 index 0000000..f4c1d78 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts @@ -0,0 +1,4 @@ +import Settings from '../settings'; +import { Stats } from '../types'; +export declare function read(path: string, settings: Settings): Stats; +//# sourceMappingURL=sync.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/sync.js b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/sync.js new file mode 100644 index 0000000..31dab38 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/providers/sync.js @@ -0,0 +1,22 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +function read(path, settings) { + const lstat = settings.fs.lstatSync(path); + if (!lstat.isSymbolicLink() || !settings.followSymbolicLink) { + return lstat; + } + try { + const stat = settings.fs.statSync(path); + if (settings.markSymbolicLink) { + stat.isSymbolicLink = () => true; + } + return stat; + } + catch (error) { + if (!settings.throwErrorOnBrokenSymbolicLink) { + return lstat; + } + throw error; + } +} +exports.read = read; diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/settings.d.ts b/themes/piratecare/node_modules/@nodelib/fs.stat/out/settings.d.ts new file mode 100644 index 0000000..34c4620 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/settings.d.ts @@ -0,0 +1,17 @@ +import * as fs from './adapters/fs'; +export declare type Options = { + followSymbolicLink?: boolean; + fs?: Partial; + markSymbolicLink?: boolean; + throwErrorOnBrokenSymbolicLink?: boolean; +}; +export default class Settings { + private readonly _options; + readonly followSymbolicLink: boolean; + readonly fs: fs.FileSystemAdapter; + readonly markSymbolicLink: boolean; + readonly throwErrorOnBrokenSymbolicLink: boolean; + constructor(_options?: Options); + private _getValue; +} +//# sourceMappingURL=settings.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/settings.js b/themes/piratecare/node_modules/@nodelib/fs.stat/out/settings.js new file mode 100644 index 0000000..ef4d057 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/settings.js @@ -0,0 +1,16 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fs = require("./adapters/fs"); +class Settings { + constructor(_options = {}) { + this._options = _options; + this.followSymbolicLink = this._getValue(this._options.followSymbolicLink, true); + this.fs = fs.createFileSystemAdapter(this._options.fs); + this.markSymbolicLink = this._getValue(this._options.markSymbolicLink, false); + this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true); + } + _getValue(option, value) { + return option === undefined ? value : option; + } +} +exports.default = Settings; diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/types/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.stat/out/types/index.d.ts new file mode 100644 index 0000000..227f7bf --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/types/index.d.ts @@ -0,0 +1,5 @@ +/// +import * as fs from 'fs'; +export declare type Stats = fs.Stats; +export declare type ErrnoException = NodeJS.ErrnoException; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/out/types/index.js b/themes/piratecare/node_modules/@nodelib/fs.stat/out/types/index.js new file mode 100644 index 0000000..ce03781 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/out/types/index.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/themes/piratecare/node_modules/@nodelib/fs.stat/package.json b/themes/piratecare/node_modules/@nodelib/fs.stat/package.json new file mode 100644 index 0000000..c7b2e31 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.stat/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "@nodelib/fs.stat@2.0.3", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@nodelib/fs.stat@2.0.3", + "_id": "@nodelib/fs.stat@2.0.3", + "_inBundle": false, + "_integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "_location": "/@nodelib/fs.stat", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@nodelib/fs.stat@2.0.3", + "name": "@nodelib/fs.stat", + "escapedName": "@nodelib%2ffs.stat", + "scope": "@nodelib", + "rawSpec": "2.0.3", + "saveSpec": null, + "fetchSpec": "2.0.3" + }, + "_requiredBy": [ + "/@nodelib/fs.scandir", + "/fast-glob" + ], + "_resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "_spec": "2.0.3", + "_where": "/tmp/tailwind-hugo", + "description": "Get the status of a file with some features", + "engines": { + "node": ">= 8" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", + "keywords": [ + "NodeLib", + "fs", + "FileSystem", + "file system", + "stat" + ], + "license": "MIT", + "main": "out/index.js", + "name": "@nodelib/fs.stat", + "repository": { + "type": "git", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat" + }, + "scripts": { + "build": "npm run clean && npm run compile && npm run lint && npm test", + "clean": "rimraf {tsconfig.tsbuildinfo,out}", + "compile": "tsc -b .", + "compile:watch": "tsc -p . --watch --sourceMap", + "lint": "eslint \"src/**/*.ts\" --cache", + "test": "mocha \"out/**/*.spec.js\" -s 0", + "watch": "npm run clean && npm run compile:watch" + }, + "typings": "out/index.d.ts", + "version": "2.0.3" +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/LICENSE b/themes/piratecare/node_modules/@nodelib/fs.walk/LICENSE new file mode 100644 index 0000000..65a9994 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/README.md b/themes/piratecare/node_modules/@nodelib/fs.walk/README.md new file mode 100644 index 0000000..6ccc08d --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/README.md @@ -0,0 +1,215 @@ +# @nodelib/fs.walk + +> A library for efficiently walking a directory recursively. + +## :bulb: Highlights + +* :moneybag: Returns useful information: `name`, `path`, `dirent` and `stats` (optional). +* :rocket: On Node.js 10.10+ uses the mechanism without additional calls to determine the entry type for performance reasons. See [`old` and `modern` mode](https://github.com/nodelib/nodelib/blob/master/packages/fs/fs.scandir/README.md#old-and-modern-mode). +* :gear: Built-in directories/files and error filtering system. +* :link: Can safely work with broken symbolic links. + +## Install + +```console +npm install @nodelib/fs.walk +``` + +## Usage + +```ts +import * as fsWalk from '@nodelib/fs.walk'; + +fsWalk.walk('path', (error, entries) => { /* … */ }); +``` + +## API + +### .walk(path, [optionsOrSettings], callback) + +Reads the directory recursively and asynchronously. Requires a callback function. + +> :book: If you want to use the Promise API, use `util.promisify`. + +```ts +fsWalk.walk('path', (error, entries) => { /* … */ }); +fsWalk.walk('path', {}, (error, entries) => { /* … */ }); +fsWalk.walk('path', new fsWalk.Settings(), (error, entries) => { /* … */ }); +``` + +### .walkStream(path, [optionsOrSettings]) + +Reads the directory recursively and asynchronously. [Readable Stream](https://nodejs.org/dist/latest-v12.x/docs/api/stream.html#stream_readable_streams) is used as a provider. + +```ts +const stream = fsWalk.walkStream('path'); +const stream = fsWalk.walkStream('path', {}); +const stream = fsWalk.walkStream('path', new fsWalk.Settings()); +``` + +### .walkSync(path, [optionsOrSettings]) + +Reads the directory recursively and synchronously. Returns an array of entries. + +```ts +const entries = fsWalk.walkSync('path'); +const entries = fsWalk.walkSync('path', {}); +const entries = fsWalk.walkSync('path', new fsWalk.Settings()); +``` + +#### path + +* Required: `true` +* Type: `string | Buffer | URL` + +A path to a file. If a URL is provided, it must use the `file:` protocol. + +#### optionsOrSettings + +* Required: `false` +* Type: `Options | Settings` +* Default: An instance of `Settings` class + +An [`Options`](#options) object or an instance of [`Settings`](#settings) class. + +> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class. + +### Settings([options]) + +A class of full settings of the package. + +```ts +const settings = new fsWalk.Settings({ followSymbolicLinks: true }); + +const entries = fsWalk.walkSync('path', settings); +``` + +## Entry + +* `name` — The name of the entry (`unknown.txt`). +* `path` — The path of the entry relative to call directory (`root/unknown.txt`). +* `dirent` — An instance of [`fs.Dirent`](./src/types/index.ts) class. +* [`stats`] — An instance of `fs.Stats` class. + +## Options + +### basePath + +* Type: `string` +* Default: `undefined` + +By default, all paths are built relative to the root path. You can use this option to set custom root path. + +In the example below we read the files from the `root` directory, but in the results the root path will be `custom`. + +```ts +fsWalk.walkSync('root'); // → ['root/file.txt'] +fsWalk.walkSync('root', { basePath: 'custom' }); // → ['custom/file.txt'] +``` + +### concurrency + +* Type: `number` +* Default: `Infinity` + +The maximum number of concurrent calls to `fs.readdir`. + +> :book: The higher the number, the higher performance and the load on the File System. If you want to read in quiet mode, set the value to `4 * os.cpus().length` (4 is default size of [thread pool work scheduling](http://docs.libuv.org/en/v1.x/threadpool.html#thread-pool-work-scheduling)). + +### deepFilter + +* Type: [`DeepFilterFunction`](./src/settings.ts) +* Default: `undefined` + +A function that indicates whether the directory will be read deep or not. + +```ts +// Skip all directories that starts with `node_modules` +const filter: DeepFilterFunction = (entry) => !entry.path.startsWith('node_modules'); +``` + +### entryFilter + +* Type: [`EntryFilterFunction`](./src/settings.ts) +* Default: `undefined` + +A function that indicates whether the entry will be included to results or not. + +```ts +// Exclude all `.js` files from results +const filter: EntryFilterFunction = (entry) => !entry.name.endsWith('.js'); +``` + +### errorFilter + +* Type: [`ErrorFilterFunction`](./src/settings.ts) +* Default: `undefined` + +A function that allows you to skip errors that occur when reading directories. + +For example, you can skip `ENOENT` errors if required: + +```ts +// Skip all ENOENT errors +const filter: ErrorFilterFunction = (error) => error.code == 'ENOENT'; +``` + +### stats + +* Type: `boolean` +* Default: `false` + +Adds an instance of `fs.Stats` class to the [`Entry`](#entry). + +> :book: Always use `fs.readdir` with additional `fs.lstat/fs.stat` calls to determine the entry type. + +### followSymbolicLinks + +* Type: `boolean` +* Default: `false` + +Follow symbolic links or not. Call `fs.stat` on symbolic link if `true`. + +### `throwErrorOnBrokenSymbolicLink` + +* Type: `boolean` +* Default: `true` + +Throw an error when symbolic link is broken if `true` or safely return `lstat` call if `false`. + +### `pathSegmentSeparator` + +* Type: `string` +* Default: `path.sep` + +By default, this package uses the correct path separator for your OS (`\` on Windows, `/` on Unix-like systems). But you can set this option to any separator character(s) that you want to use instead. + +### `fs` + +* Type: `FileSystemAdapter` +* Default: A default FS methods + +By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own. + +```ts +interface FileSystemAdapter { + lstat: typeof fs.lstat; + stat: typeof fs.stat; + lstatSync: typeof fs.lstatSync; + statSync: typeof fs.statSync; + readdir: typeof fs.readdir; + readdirSync: typeof fs.readdirSync; +} + +const settings = new fsWalk.Settings({ + fs: { lstat: fakeLstat } +}); +``` + +## Changelog + +See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version. + +## License + +This software is released under the terms of the MIT license. diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/index.d.ts new file mode 100644 index 0000000..5070b6a --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/index.d.ts @@ -0,0 +1,15 @@ +/// +import { Readable } from 'stream'; +import { Dirent, FileSystemAdapter } from '@nodelib/fs.scandir'; +import { AsyncCallback } from './providers/async'; +import Settings, { DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction, Options } from './settings'; +import { Entry } from './types'; +declare function walk(directory: string, callback: AsyncCallback): void; +declare function walk(directory: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; +declare namespace walk { + function __promisify__(directory: string, optionsOrSettings?: Options | Settings): Promise; +} +declare function walkSync(directory: string, optionsOrSettings?: Options | Settings): Entry[]; +declare function walkStream(directory: string, optionsOrSettings?: Options | Settings): Readable; +export { walk, walkSync, walkStream, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, Options, DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction }; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/index.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/index.js new file mode 100644 index 0000000..f081527 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/index.js @@ -0,0 +1,32 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const async_1 = require("./providers/async"); +const stream_1 = require("./providers/stream"); +const sync_1 = require("./providers/sync"); +const settings_1 = require("./settings"); +exports.Settings = settings_1.default; +function walk(directory, optionsOrSettingsOrCallback, callback) { + if (typeof optionsOrSettingsOrCallback === 'function') { + return new async_1.default(directory, getSettings()).read(optionsOrSettingsOrCallback); + } + new async_1.default(directory, getSettings(optionsOrSettingsOrCallback)).read(callback); +} +exports.walk = walk; +function walkSync(directory, optionsOrSettings) { + const settings = getSettings(optionsOrSettings); + const provider = new sync_1.default(directory, settings); + return provider.read(); +} +exports.walkSync = walkSync; +function walkStream(directory, optionsOrSettings) { + const settings = getSettings(optionsOrSettings); + const provider = new stream_1.default(directory, settings); + return provider.read(); +} +exports.walkStream = walkStream; +function getSettings(settingsOrOptions = {}) { + if (settingsOrOptions instanceof settings_1.default) { + return settingsOrOptions; + } + return new settings_1.default(settingsOrOptions); +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/async.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/async.d.ts new file mode 100644 index 0000000..1f5f1ba --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/async.d.ts @@ -0,0 +1,13 @@ +import AsyncReader from '../readers/async'; +import Settings from '../settings'; +import { Entry, Errno } from '../types'; +export declare type AsyncCallback = (err: Errno, entries: Entry[]) => void; +export default class AsyncProvider { + private readonly _root; + private readonly _settings; + protected readonly _reader: AsyncReader; + private readonly _storage; + constructor(_root: string, _settings: Settings); + read(callback: AsyncCallback): void; +} +//# sourceMappingURL=async.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/async.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/async.js new file mode 100644 index 0000000..20e4ab5 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/async.js @@ -0,0 +1,30 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const async_1 = require("../readers/async"); +class AsyncProvider { + constructor(_root, _settings) { + this._root = _root; + this._settings = _settings; + this._reader = new async_1.default(this._root, this._settings); + this._storage = new Set(); + } + read(callback) { + this._reader.onError((error) => { + callFailureCallback(callback, error); + }); + this._reader.onEntry((entry) => { + this._storage.add(entry); + }); + this._reader.onEnd(() => { + callSuccessCallback(callback, [...this._storage]); + }); + this._reader.read(); + } +} +exports.default = AsyncProvider; +function callFailureCallback(callback, error) { + callback(error); +} +function callSuccessCallback(callback, entries) { + callback(null, entries); +} diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/index.d.ts new file mode 100644 index 0000000..cbdfb3b --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/index.d.ts @@ -0,0 +1,5 @@ +import AsyncProvider from './async'; +import StreamProvider from './stream'; +import SyncProvider from './sync'; +export { AsyncProvider, StreamProvider, SyncProvider }; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/index.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/index.js new file mode 100644 index 0000000..c6dd916 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/index.js @@ -0,0 +1,8 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const async_1 = require("./async"); +exports.AsyncProvider = async_1.default; +const stream_1 = require("./stream"); +exports.StreamProvider = stream_1.default; +const sync_1 = require("./sync"); +exports.SyncProvider = sync_1.default; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts new file mode 100644 index 0000000..810111d --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts @@ -0,0 +1,13 @@ +/// +import { Readable } from 'stream'; +import AsyncReader from '../readers/async'; +import Settings from '../settings'; +export default class StreamProvider { + private readonly _root; + private readonly _settings; + protected readonly _reader: AsyncReader; + protected readonly _stream: Readable; + constructor(_root: string, _settings: Settings); + read(): Readable; +} +//# sourceMappingURL=stream.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/stream.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/stream.js new file mode 100644 index 0000000..f44cd8a --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/stream.js @@ -0,0 +1,30 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const stream_1 = require("stream"); +const async_1 = require("../readers/async"); +class StreamProvider { + constructor(_root, _settings) { + this._root = _root; + this._settings = _settings; + this._reader = new async_1.default(this._root, this._settings); + this._stream = new stream_1.Readable({ + objectMode: true, + read: () => { }, + destroy: this._reader.destroy.bind(this._reader) + }); + } + read() { + this._reader.onError((error) => { + this._stream.emit('error', error); + }); + this._reader.onEntry((entry) => { + this._stream.push(entry); + }); + this._reader.onEnd(() => { + this._stream.push(null); + }); + this._reader.read(); + return this._stream; + } +} +exports.default = StreamProvider; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts new file mode 100644 index 0000000..9570fd1 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts @@ -0,0 +1,11 @@ +import SyncReader from '../readers/sync'; +import Settings from '../settings'; +import { Entry } from '../types'; +export default class SyncProvider { + private readonly _root; + private readonly _settings; + protected readonly _reader: SyncReader; + constructor(_root: string, _settings: Settings); + read(): Entry[]; +} +//# sourceMappingURL=sync.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/sync.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/sync.js new file mode 100644 index 0000000..fef1d8d --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/providers/sync.js @@ -0,0 +1,14 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const sync_1 = require("../readers/sync"); +class SyncProvider { + constructor(_root, _settings) { + this._root = _root; + this._settings = _settings; + this._reader = new sync_1.default(this._root, this._settings); + } + read() { + return this._reader.read(); + } +} +exports.default = SyncProvider; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/async.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/async.d.ts new file mode 100644 index 0000000..7325382 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/async.d.ts @@ -0,0 +1,30 @@ +/// +import { EventEmitter } from 'events'; +import * as fsScandir from '@nodelib/fs.scandir'; +import Settings from '../settings'; +import { Entry, Errno } from '../types'; +import Reader from './reader'; +declare type EntryEventCallback = (entry: Entry) => void; +declare type ErrorEventCallback = (error: Errno) => void; +declare type EndEventCallback = () => void; +export default class AsyncReader extends Reader { + protected readonly _settings: Settings; + protected readonly _scandir: typeof fsScandir.scandir; + protected readonly _emitter: EventEmitter; + private readonly _queue; + private _isFatalError; + private _isDestroyed; + constructor(_root: string, _settings: Settings); + read(): EventEmitter; + destroy(): void; + onEntry(callback: EntryEventCallback): void; + onError(callback: ErrorEventCallback): void; + onEnd(callback: EndEventCallback): void; + private _pushToQueue; + private _worker; + private _handleError; + private _handleEntry; + private _emitEntry; +} +export {}; +//# sourceMappingURL=async.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/async.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/async.js new file mode 100644 index 0000000..d6f666d --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/async.js @@ -0,0 +1,93 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const events_1 = require("events"); +const fsScandir = require("@nodelib/fs.scandir"); +const fastq = require("fastq"); +const common = require("./common"); +const reader_1 = require("./reader"); +class AsyncReader extends reader_1.default { + constructor(_root, _settings) { + super(_root, _settings); + this._settings = _settings; + this._scandir = fsScandir.scandir; + this._emitter = new events_1.EventEmitter(); + this._queue = fastq(this._worker.bind(this), this._settings.concurrency); + this._isFatalError = false; + this._isDestroyed = false; + this._queue.drain = () => { + if (!this._isFatalError) { + this._emitter.emit('end'); + } + }; + } + read() { + this._isFatalError = false; + this._isDestroyed = false; + setImmediate(() => { + this._pushToQueue(this._root, this._settings.basePath); + }); + return this._emitter; + } + destroy() { + if (this._isDestroyed) { + throw new Error('The reader is already destroyed'); + } + this._isDestroyed = true; + this._queue.killAndDrain(); + } + onEntry(callback) { + this._emitter.on('entry', callback); + } + onError(callback) { + this._emitter.once('error', callback); + } + onEnd(callback) { + this._emitter.once('end', callback); + } + _pushToQueue(directory, base) { + const queueItem = { directory, base }; + this._queue.push(queueItem, (error) => { + if (error !== null) { + this._handleError(error); + } + }); + } + _worker(item, done) { + this._scandir(item.directory, this._settings.fsScandirSettings, (error, entries) => { + if (error !== null) { + return done(error, undefined); + } + for (const entry of entries) { + this._handleEntry(entry, item.base); + } + done(null, undefined); + }); + } + _handleError(error) { + if (!common.isFatalError(this._settings, error)) { + return; + } + this._isFatalError = true; + this._isDestroyed = true; + this._emitter.emit('error', error); + } + _handleEntry(entry, base) { + if (this._isDestroyed || this._isFatalError) { + return; + } + const fullpath = entry.path; + if (base !== undefined) { + entry.path = common.joinPathSegments(base, entry.name, this._settings.pathSegmentSeparator); + } + if (common.isAppliedFilter(this._settings.entryFilter, entry)) { + this._emitEntry(entry); + } + if (entry.dirent.isDirectory() && common.isAppliedFilter(this._settings.deepFilter, entry)) { + this._pushToQueue(fullpath, entry.path); + } + } + _emitEntry(entry) { + this._emitter.emit('entry', entry); + } +} +exports.default = AsyncReader; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/common.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/common.d.ts new file mode 100644 index 0000000..93bbae3 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/common.d.ts @@ -0,0 +1,7 @@ +import Settings, { FilterFunction } from '../settings'; +import { Errno } from '../types'; +export declare function isFatalError(settings: Settings, error: Errno): boolean; +export declare function isAppliedFilter(filter: FilterFunction | null, value: T): boolean; +export declare function replacePathSegmentSeparator(filepath: string, separator: string): string; +export declare function joinPathSegments(a: string, b: string, separator: string): string; +//# sourceMappingURL=common.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/common.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/common.js new file mode 100644 index 0000000..c340606 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/common.js @@ -0,0 +1,24 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +function isFatalError(settings, error) { + if (settings.errorFilter === null) { + return true; + } + return !settings.errorFilter(error); +} +exports.isFatalError = isFatalError; +function isAppliedFilter(filter, value) { + return filter === null || filter(value); +} +exports.isAppliedFilter = isAppliedFilter; +function replacePathSegmentSeparator(filepath, separator) { + return filepath.split(/[\\/]/).join(separator); +} +exports.replacePathSegmentSeparator = replacePathSegmentSeparator; +function joinPathSegments(a, b, separator) { + if (a === '') { + return b; + } + return a + separator + b; +} +exports.joinPathSegments = joinPathSegments; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts new file mode 100644 index 0000000..688968f --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts @@ -0,0 +1,7 @@ +import Settings from '../settings'; +export default class Reader { + protected readonly _root: string; + protected readonly _settings: Settings; + constructor(_root: string, _settings: Settings); +} +//# sourceMappingURL=reader.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/reader.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/reader.js new file mode 100644 index 0000000..25e7997 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/reader.js @@ -0,0 +1,11 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const common = require("./common"); +class Reader { + constructor(_root, _settings) { + this._root = _root; + this._settings = _settings; + this._root = common.replacePathSegmentSeparator(_root, _settings.pathSegmentSeparator); + } +} +exports.default = Reader; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts new file mode 100644 index 0000000..b0bb267 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts @@ -0,0 +1,16 @@ +import * as fsScandir from '@nodelib/fs.scandir'; +import { Entry } from '../types'; +import Reader from './reader'; +export default class SyncReader extends Reader { + protected readonly _scandir: typeof fsScandir.scandirSync; + private readonly _storage; + private readonly _queue; + read(): Entry[]; + private _pushToQueue; + private _handleQueue; + private _handleDirectory; + private _handleError; + private _handleEntry; + private _pushToStorage; +} +//# sourceMappingURL=sync.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/sync.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/sync.js new file mode 100644 index 0000000..d0f0691 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/readers/sync.js @@ -0,0 +1,59 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fsScandir = require("@nodelib/fs.scandir"); +const common = require("./common"); +const reader_1 = require("./reader"); +class SyncReader extends reader_1.default { + constructor() { + super(...arguments); + this._scandir = fsScandir.scandirSync; + this._storage = new Set(); + this._queue = new Set(); + } + read() { + this._pushToQueue(this._root, this._settings.basePath); + this._handleQueue(); + return [...this._storage]; + } + _pushToQueue(directory, base) { + this._queue.add({ directory, base }); + } + _handleQueue() { + for (const item of this._queue.values()) { + this._handleDirectory(item.directory, item.base); + } + } + _handleDirectory(directory, base) { + try { + const entries = this._scandir(directory, this._settings.fsScandirSettings); + for (const entry of entries) { + this._handleEntry(entry, base); + } + } + catch (error) { + this._handleError(error); + } + } + _handleError(error) { + if (!common.isFatalError(this._settings, error)) { + return; + } + throw error; + } + _handleEntry(entry, base) { + const fullpath = entry.path; + if (base !== undefined) { + entry.path = common.joinPathSegments(base, entry.name, this._settings.pathSegmentSeparator); + } + if (common.isAppliedFilter(this._settings.entryFilter, entry)) { + this._pushToStorage(entry); + } + if (entry.dirent.isDirectory() && common.isAppliedFilter(this._settings.deepFilter, entry)) { + this._pushToQueue(fullpath, entry.path); + } + } + _pushToStorage(entry) { + this._storage.add(entry); + } +} +exports.default = SyncReader; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/settings.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/settings.d.ts new file mode 100644 index 0000000..bc1f9d5 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/settings.d.ts @@ -0,0 +1,31 @@ +import * as fsScandir from '@nodelib/fs.scandir'; +import { Entry, Errno } from './types'; +export declare type FilterFunction = (value: T) => boolean; +export declare type DeepFilterFunction = FilterFunction; +export declare type EntryFilterFunction = FilterFunction; +export declare type ErrorFilterFunction = FilterFunction; +export declare type Options = { + basePath?: string; + concurrency?: number; + deepFilter?: DeepFilterFunction; + entryFilter?: EntryFilterFunction; + errorFilter?: ErrorFilterFunction; + followSymbolicLinks?: boolean; + fs?: Partial; + pathSegmentSeparator?: string; + stats?: boolean; + throwErrorOnBrokenSymbolicLink?: boolean; +}; +export default class Settings { + private readonly _options; + readonly basePath?: string; + readonly concurrency: number; + readonly deepFilter: DeepFilterFunction | null; + readonly entryFilter: EntryFilterFunction | null; + readonly errorFilter: ErrorFilterFunction | null; + readonly pathSegmentSeparator: string; + readonly fsScandirSettings: fsScandir.Settings; + constructor(_options?: Options); + private _getValue; +} +//# sourceMappingURL=settings.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/settings.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/settings.js new file mode 100644 index 0000000..4357987 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/settings.js @@ -0,0 +1,26 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const path = require("path"); +const fsScandir = require("@nodelib/fs.scandir"); +class Settings { + constructor(_options = {}) { + this._options = _options; + this.basePath = this._getValue(this._options.basePath, undefined); + this.concurrency = this._getValue(this._options.concurrency, Infinity); + this.deepFilter = this._getValue(this._options.deepFilter, null); + this.entryFilter = this._getValue(this._options.entryFilter, null); + this.errorFilter = this._getValue(this._options.errorFilter, null); + this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path.sep); + this.fsScandirSettings = new fsScandir.Settings({ + followSymbolicLinks: this._options.followSymbolicLinks, + fs: this._options.fs, + pathSegmentSeparator: this._options.pathSegmentSeparator, + stats: this._options.stats, + throwErrorOnBrokenSymbolicLink: this._options.throwErrorOnBrokenSymbolicLink + }); + } + _getValue(option, value) { + return option === undefined ? value : option; + } +} +exports.default = Settings; diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/types/index.d.ts b/themes/piratecare/node_modules/@nodelib/fs.walk/out/types/index.d.ts new file mode 100644 index 0000000..75bc4ab --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/types/index.d.ts @@ -0,0 +1,9 @@ +/// +import * as scandir from '@nodelib/fs.scandir'; +export declare type Entry = scandir.Entry; +export declare type Errno = NodeJS.ErrnoException; +export declare type QueueItem = { + directory: string; + base?: string; +}; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/out/types/index.js b/themes/piratecare/node_modules/@nodelib/fs.walk/out/types/index.js new file mode 100644 index 0000000..ce03781 --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/out/types/index.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/themes/piratecare/node_modules/@nodelib/fs.walk/package.json b/themes/piratecare/node_modules/@nodelib/fs.walk/package.json new file mode 100644 index 0000000..76b1eea --- /dev/null +++ b/themes/piratecare/node_modules/@nodelib/fs.walk/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "@nodelib/fs.walk@1.2.4", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@nodelib/fs.walk@1.2.4", + "_id": "@nodelib/fs.walk@1.2.4", + "_inBundle": false, + "_integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", + "_location": "/@nodelib/fs.walk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@nodelib/fs.walk@1.2.4", + "name": "@nodelib/fs.walk", + "escapedName": "@nodelib%2ffs.walk", + "scope": "@nodelib", + "rawSpec": "1.2.4", + "saveSpec": null, + "fetchSpec": "1.2.4" + }, + "_requiredBy": [ + "/fast-glob" + ], + "_resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", + "_spec": "1.2.4", + "_where": "/tmp/tailwind-hugo", + "dependencies": { + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" + }, + "description": "A library for efficiently walking a directory recursively", + "engines": { + "node": ">= 8" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", + "keywords": [ + "NodeLib", + "fs", + "FileSystem", + "file system", + "walk", + "scanner", + "crawler" + ], + "license": "MIT", + "main": "out/index.js", + "name": "@nodelib/fs.walk", + "repository": { + "type": "git", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk" + }, + "scripts": { + "build": "npm run clean && npm run compile && npm run lint && npm test", + "clean": "rimraf {tsconfig.tsbuildinfo,out}", + "compile": "tsc -b .", + "compile:watch": "tsc -p . --watch --sourceMap", + "lint": "eslint \"src/**/*.ts\" --cache", + "test": "mocha \"out/**/*.spec.js\" -s 0", + "watch": "npm run clean && npm run compile:watch" + }, + "typings": "out/index.d.ts", + "version": "1.2.4" +} diff --git a/themes/piratecare/node_modules/@types/color-name/LICENSE b/themes/piratecare/node_modules/@types/color-name/LICENSE new file mode 100644 index 0000000..4b1ad51 --- /dev/null +++ b/themes/piratecare/node_modules/@types/color-name/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + 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 diff --git a/themes/piratecare/node_modules/@types/color-name/README.md b/themes/piratecare/node_modules/@types/color-name/README.md new file mode 100644 index 0000000..5c77cba --- /dev/null +++ b/themes/piratecare/node_modules/@types/color-name/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/color-name` + +# Summary +This package contains type definitions for color-name ( https://github.com/colorjs/color-name ). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/color-name + +Additional Details + * Last updated: Wed, 13 Feb 2019 16:16:48 GMT + * Dependencies: none + * Global values: none + +# Credits +These definitions were written by Junyoung Clare Jang . diff --git a/themes/piratecare/node_modules/@types/color-name/index.d.ts b/themes/piratecare/node_modules/@types/color-name/index.d.ts new file mode 100644 index 0000000..b5bff47 --- /dev/null +++ b/themes/piratecare/node_modules/@types/color-name/index.d.ts @@ -0,0 +1,161 @@ +// Type definitions for color-name 1.1 +// Project: https://github.com/colorjs/color-name +// Definitions by: Junyoung Clare Jang +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/** + * Tuple of Red, Green, and Blue + * @example + * // Red = 55, Green = 70, Blue = 0 + * const rgb: RGB = [55, 70, 0]; + */ +export type RGB = [number, number, number]; + +export const aliceblue: RGB; +export const antiquewhite: RGB; +export const aqua: RGB; +export const aquamarine: RGB; +export const azure: RGB; +export const beige: RGB; +export const bisque: RGB; +export const black: RGB; +export const blanchedalmond: RGB; +export const blue: RGB; +export const blueviolet: RGB; +export const brown: RGB; +export const burlywood: RGB; +export const cadetblue: RGB; +export const chartreuse: RGB; +export const chocolate: RGB; +export const coral: RGB; +export const cornflowerblue: RGB; +export const cornsilk: RGB; +export const crimson: RGB; +export const cyan: RGB; +export const darkblue: RGB; +export const darkcyan: RGB; +export const darkgoldenrod: RGB; +export const darkgray: RGB; +export const darkgreen: RGB; +export const darkgrey: RGB; +export const darkkhaki: RGB; +export const darkmagenta: RGB; +export const darkolivegreen: RGB; +export const darkorange: RGB; +export const darkorchid: RGB; +export const darkred: RGB; +export const darksalmon: RGB; +export const darkseagreen: RGB; +export const darkslateblue: RGB; +export const darkslategray: RGB; +export const darkslategrey: RGB; +export const darkturquoise: RGB; +export const darkviolet: RGB; +export const deeppink: RGB; +export const deepskyblue: RGB; +export const dimgray: RGB; +export const dimgrey: RGB; +export const dodgerblue: RGB; +export const firebrick: RGB; +export const floralwhite: RGB; +export const forestgreen: RGB; +export const fuchsia: RGB; +export const gainsboro: RGB; +export const ghostwhite: RGB; +export const gold: RGB; +export const goldenrod: RGB; +export const gray: RGB; +export const green: RGB; +export const greenyellow: RGB; +export const grey: RGB; +export const honeydew: RGB; +export const hotpink: RGB; +export const indianred: RGB; +export const indigo: RGB; +export const ivory: RGB; +export const khaki: RGB; +export const lavender: RGB; +export const lavenderblush: RGB; +export const lawngreen: RGB; +export const lemonchiffon: RGB; +export const lightblue: RGB; +export const lightcoral: RGB; +export const lightcyan: RGB; +export const lightgoldenrodyellow: RGB; +export const lightgray: RGB; +export const lightgreen: RGB; +export const lightgrey: RGB; +export const lightpink: RGB; +export const lightsalmon: RGB; +export const lightseagreen: RGB; +export const lightskyblue: RGB; +export const lightslategray: RGB; +export const lightslategrey: RGB; +export const lightsteelblue: RGB; +export const lightyellow: RGB; +export const lime: RGB; +export const limegreen: RGB; +export const linen: RGB; +export const magenta: RGB; +export const maroon: RGB; +export const mediumaquamarine: RGB; +export const mediumblue: RGB; +export const mediumorchid: RGB; +export const mediumpurple: RGB; +export const mediumseagreen: RGB; +export const mediumslateblue: RGB; +export const mediumspringgreen: RGB; +export const mediumturquoise: RGB; +export const mediumvioletred: RGB; +export const midnightblue: RGB; +export const mintcream: RGB; +export const mistyrose: RGB; +export const moccasin: RGB; +export const navajowhite: RGB; +export const navy: RGB; +export const oldlace: RGB; +export const olive: RGB; +export const olivedrab: RGB; +export const orange: RGB; +export const orangered: RGB; +export const orchid: RGB; +export const palegoldenrod: RGB; +export const palegreen: RGB; +export const paleturquoise: RGB; +export const palevioletred: RGB; +export const papayawhip: RGB; +export const peachpuff: RGB; +export const peru: RGB; +export const pink: RGB; +export const plum: RGB; +export const powderblue: RGB; +export const purple: RGB; +export const rebeccapurple: RGB; +export const red: RGB; +export const rosybrown: RGB; +export const royalblue: RGB; +export const saddlebrown: RGB; +export const salmon: RGB; +export const sandybrown: RGB; +export const seagreen: RGB; +export const seashell: RGB; +export const sienna: RGB; +export const silver: RGB; +export const skyblue: RGB; +export const slateblue: RGB; +export const slategray: RGB; +export const slategrey: RGB; +export const snow: RGB; +export const springgreen: RGB; +export const steelblue: RGB; +export const tan: RGB; +export const teal: RGB; +export const thistle: RGB; +export const tomato: RGB; +export const turquoise: RGB; +export const violet: RGB; +export const wheat: RGB; +export const white: RGB; +export const whitesmoke: RGB; +export const yellow: RGB; +export const yellowgreen: RGB; diff --git a/themes/piratecare/node_modules/@types/color-name/package.json b/themes/piratecare/node_modules/@types/color-name/package.json new file mode 100644 index 0000000..a1a00be --- /dev/null +++ b/themes/piratecare/node_modules/@types/color-name/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "@types/color-name@1.1.1", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@types/color-name@1.1.1", + "_id": "@types/color-name@1.1.1", + "_inBundle": false, + "_integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", + "_location": "/@types/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/color-name@1.1.1", + "name": "@types/color-name", + "escapedName": "@types%2fcolor-name", + "scope": "@types", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/postcss-cli/ansi-styles", + "/tailwindcss/ansi-styles", + "/wrap-ansi/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/tmp/tailwind-hugo", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Junyoung Clare Jang", + "url": "https://github.com/Ailrun" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for color-name", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/color-name", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "types": "index", + "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", + "version": "1.1.1" +} diff --git a/themes/piratecare/node_modules/@types/events/LICENSE b/themes/piratecare/node_modules/@types/events/LICENSE new file mode 100644 index 0000000..4b1ad51 --- /dev/null +++ b/themes/piratecare/node_modules/@types/events/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + 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 diff --git a/themes/piratecare/node_modules/@types/events/README.md b/themes/piratecare/node_modules/@types/events/README.md new file mode 100644 index 0000000..0dfd471 --- /dev/null +++ b/themes/piratecare/node_modules/@types/events/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/events` + +# Summary +This package contains type definitions for events (https://github.com/Gozala/events). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/events + +Additional Details + * Last updated: Thu, 24 Jan 2019 03:19:08 GMT + * Dependencies: none + * Global values: none + +# Credits +These definitions were written by Yasunori Ohoka , Shenwei Wang . diff --git a/themes/piratecare/node_modules/@types/events/index.d.ts b/themes/piratecare/node_modules/@types/events/index.d.ts new file mode 100644 index 0000000..a6cf834 --- /dev/null +++ b/themes/piratecare/node_modules/@types/events/index.d.ts @@ -0,0 +1,28 @@ +// Type definitions for events 3.0 +// Project: https://github.com/Gozala/events +// Definitions by: Yasunori Ohoka +// Shenwei Wang +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +export type Listener = (...args: any[]) => void; + +export class EventEmitter { + static listenerCount(emitter: EventEmitter, type: string | number): number; + static defaultMaxListeners: number; + + eventNames(): Array; + setMaxListeners(n: number): this; + getMaxListeners(): number; + emit(type: string | number, ...args: any[]): boolean; + addListener(type: string | number, listener: Listener): this; + on(type: string | number, listener: Listener): this; + once(type: string | number, listener: Listener): this; + prependListener(type: string | number, listener: Listener): this; + prependOnceListener(type: string | number, listener: Listener): this; + removeListener(type: string | number, listener: Listener): this; + off(type: string | number, listener: Listener): this; + removeAllListeners(type?: string | number): this; + listeners(type: string | number): Listener[]; + listenerCount(type: string | number): number; + rawListeners(type: string | number): Listener[]; +} diff --git a/themes/piratecare/node_modules/@types/events/package.json b/themes/piratecare/node_modules/@types/events/package.json new file mode 100644 index 0000000..72ff910 --- /dev/null +++ b/themes/piratecare/node_modules/@types/events/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "@types/events@3.0.0", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@types/events@3.0.0", + "_id": "@types/events@3.0.0", + "_inBundle": false, + "_integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", + "_location": "/@types/events", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/events@3.0.0", + "name": "@types/events", + "escapedName": "@types%2fevents", + "scope": "@types", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/@types/glob" + ], + "_resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/tmp/tailwind-hugo", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Yasunori Ohoka", + "url": "https://github.com/yasupeke" + }, + { + "name": "Shenwei Wang", + "url": "https://github.com/weareoutman" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for events", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/events", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "types": "index", + "typesPublisherContentHash": "ae078136220837864b64cc7c1c5267ca1ceb809166fb74569e637bc7de9f2e12", + "version": "3.0.0" +} diff --git a/themes/piratecare/node_modules/@types/glob/LICENSE b/themes/piratecare/node_modules/@types/glob/LICENSE new file mode 100644 index 0000000..4b1ad51 --- /dev/null +++ b/themes/piratecare/node_modules/@types/glob/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + 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 diff --git a/themes/piratecare/node_modules/@types/glob/README.md b/themes/piratecare/node_modules/@types/glob/README.md new file mode 100644 index 0000000..906b319 --- /dev/null +++ b/themes/piratecare/node_modules/@types/glob/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/glob` + +# Summary +This package contains type definitions for Glob (https://github.com/isaacs/node-glob). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob + +Additional Details + * Last updated: Thu, 27 Sep 2018 12:34:19 GMT + * Dependencies: events, minimatch, node + * Global values: none + +# Credits +These definitions were written by vvakame , voy , Klaus Meinhardt . diff --git a/themes/piratecare/node_modules/@types/glob/index.d.ts b/themes/piratecare/node_modules/@types/glob/index.d.ts new file mode 100644 index 0000000..c2a2ef9 --- /dev/null +++ b/themes/piratecare/node_modules/@types/glob/index.d.ts @@ -0,0 +1,87 @@ +// Type definitions for Glob 7.1 +// Project: https://github.com/isaacs/node-glob +// Definitions by: vvakame +// voy +// Klaus Meinhardt +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +import events = require("events"); +import minimatch = require("minimatch"); + +declare function G(pattern: string, cb: (err: Error | null, matches: string[]) => void): void; +declare function G(pattern: string, options: G.IOptions, cb: (err: Error | null, matches: string[]) => void): void; + +declare namespace G { + function __promisify__(pattern: string, options?: IOptions): Promise; + + function sync(pattern: string, options?: IOptions): string[]; + + function hasMagic(pattern: string, options?: IOptions): boolean; + + let Glob: IGlobStatic; + let GlobSync: IGlobSyncStatic; + + interface IOptions extends minimatch.IOptions { + cwd?: string; + root?: string; + dot?: boolean; + nomount?: boolean; + mark?: boolean; + nosort?: boolean; + stat?: boolean; + silent?: boolean; + strict?: boolean; + cache?: { [path: string]: boolean | 'DIR' | 'FILE' | ReadonlyArray }; + statCache?: { [path: string]: false | { isDirectory(): boolean} | undefined }; + symlinks?: { [path: string]: boolean | undefined }; + realpathCache?: { [path: string]: string }; + sync?: boolean; + nounique?: boolean; + nonull?: boolean; + debug?: boolean; + nobrace?: boolean; + noglobstar?: boolean; + noext?: boolean; + nocase?: boolean; + matchBase?: any; + nodir?: boolean; + ignore?: string | ReadonlyArray; + follow?: boolean; + realpath?: boolean; + nonegate?: boolean; + nocomment?: boolean; + absolute?: boolean; + } + + interface IGlobStatic extends events.EventEmitter { + new (pattern: string, cb?: (err: Error | null, matches: string[]) => void): IGlob; + new (pattern: string, options: IOptions, cb?: (err: Error | null, matches: string[]) => void): IGlob; + prototype: IGlob; + } + + interface IGlobSyncStatic { + new (pattern: string, options?: IOptions): IGlobBase; + prototype: IGlobBase; + } + + interface IGlobBase { + minimatch: minimatch.IMinimatch; + options: IOptions; + aborted: boolean; + cache: { [path: string]: boolean | 'DIR' | 'FILE' | ReadonlyArray }; + statCache: { [path: string]: false | { isDirectory(): boolean; } | undefined }; + symlinks: { [path: string]: boolean | undefined }; + realpathCache: { [path: string]: string }; + found: string[]; + } + + interface IGlob extends IGlobBase, events.EventEmitter { + pause(): void; + resume(): void; + abort(): void; + } +} + +export = G; diff --git a/themes/piratecare/node_modules/@types/glob/package.json b/themes/piratecare/node_modules/@types/glob/package.json new file mode 100644 index 0000000..887a142 --- /dev/null +++ b/themes/piratecare/node_modules/@types/glob/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "@types/glob@7.1.1", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@types/glob@7.1.1", + "_id": "@types/glob@7.1.1", + "_inBundle": false, + "_integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "_location": "/@types/glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/glob@7.1.1", + "name": "@types/glob", + "escapedName": "@types%2fglob", + "scope": "@types", + "rawSpec": "7.1.1", + "saveSpec": null, + "fetchSpec": "7.1.1" + }, + "_requiredBy": [ + "/globby" + ], + "_resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", + "_spec": "7.1.1", + "_where": "/tmp/tailwind-hugo", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "vvakame", + "url": "https://github.com/vvakame" + }, + { + "name": "voy", + "url": "https://github.com/voy" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff" + } + ], + "dependencies": { + "@types/events": "*", + "@types/minimatch": "*", + "@types/node": "*" + }, + "description": "TypeScript definitions for Glob", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/glob", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "typesPublisherContentHash": "43019f2af91c7a4ca3453c4b806a01c521ca3008ffe1bfefd37c5f9d6135660e", + "version": "7.1.1" +} diff --git a/themes/piratecare/node_modules/@types/minimatch/LICENSE b/themes/piratecare/node_modules/@types/minimatch/LICENSE new file mode 100644 index 0000000..2107107 --- /dev/null +++ b/themes/piratecare/node_modules/@types/minimatch/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + 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 diff --git a/themes/piratecare/node_modules/@types/minimatch/README.md b/themes/piratecare/node_modules/@types/minimatch/README.md new file mode 100644 index 0000000..6c7fedb --- /dev/null +++ b/themes/piratecare/node_modules/@types/minimatch/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/minimatch` + +# Summary +This package contains type definitions for Minimatch (https://github.com/isaacs/minimatch). + +# Details +Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimatch + +Additional Details + * Last updated: Thu, 04 Jan 2018 23:26:01 GMT + * Dependencies: none + * Global values: none + +# Credits +These definitions were written by vvakame , Shant Marouti . diff --git a/themes/piratecare/node_modules/@types/minimatch/index.d.ts b/themes/piratecare/node_modules/@types/minimatch/index.d.ts new file mode 100644 index 0000000..d6982de --- /dev/null +++ b/themes/piratecare/node_modules/@types/minimatch/index.d.ts @@ -0,0 +1,214 @@ +// Type definitions for Minimatch 3.0 +// Project: https://github.com/isaacs/minimatch +// Definitions by: vvakame +// Shant Marouti +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/** + * Tests a path against the pattern using the options. + */ +declare function M(target: string, pattern: string, options?: M.IOptions): boolean; + +declare namespace M { + /** + * Match against the list of files, in the style of fnmatch or glob. + * If nothing is matched, and options.nonull is set, + * then return a list containing the pattern itself. + */ + function match(list: ReadonlyArray, pattern: string, options?: IOptions): string[]; + + /** + * Returns a function that tests its supplied argument, suitable for use with Array.filter + */ + function filter(pattern: string, options?: IOptions): (element: string, indexed: number, array: ReadonlyArray) => boolean; + + /** + * Make a regular expression object from the pattern. + */ + function makeRe(pattern: string, options?: IOptions): RegExp; + + let Minimatch: IMinimatchStatic; + + interface IOptions { + /** + * Dump a ton of stuff to stderr. + * + * @default false + */ + debug?: boolean; + + /** + * Do not expand {a,b} and {1..3} brace sets. + * + * @default false + */ + nobrace?: boolean; + + /** + * Disable ** matching against multiple folder names. + * + * @default false + */ + noglobstar?: boolean; + + /** + * Allow patterns to match filenames starting with a period, + * even if the pattern does not explicitly have a period in that spot. + * + * @default false + */ + dot?: boolean; + + /** + * Disable "extglob" style patterns like +(a|b). + * + * @default false + */ + noext?: boolean; + + /** + * Perform a case-insensitive match. + * + * @default false + */ + nocase?: boolean; + + /** + * When a match is not found by minimatch.match, + * return a list containing the pattern itself if this option is set. + * Otherwise, an empty list is returned if there are no matches. + * + * @default false + */ + nonull?: boolean; + + /** + * If set, then patterns without slashes will be matched against + * the basename of the path if it contains slashes. + * + * @default false + */ + matchBase?: boolean; + + /** + * Suppress the behavior of treating # + * at the start of a pattern as a comment. + * + * @default false + */ + nocomment?: boolean; + + /** + * Suppress the behavior of treating a leading ! character as negation. + * + * @default false + */ + nonegate?: boolean; + + /** + * Returns from negate expressions the same as if they were not negated. + * (Ie, true on a hit, false on a miss.) + * + * @default false + */ + flipNegate?: boolean; + } + + interface IMinimatchStatic { + new(pattern: string, options?: IOptions): IMinimatch; + prototype: IMinimatch; + } + + interface IMinimatch { + /** + * The original pattern the minimatch object represents. + */ + pattern: string; + + /** + * The options supplied to the constructor. + */ + options: IOptions; + + /** + * A 2-dimensional array of regexp or string expressions. + */ + set: any[][]; // (RegExp | string)[][] + + /** + * A single regular expression expressing the entire pattern. + * Created by the makeRe method. + */ + regexp: RegExp; + + /** + * True if the pattern is negated. + */ + negate: boolean; + + /** + * True if the pattern is a comment. + */ + comment: boolean; + + /** + * True if the pattern is "" + */ + empty: boolean; + + /** + * Generate the regexp member if necessary, and return it. + * Will return false if the pattern is invalid. + */ + makeRe(): RegExp; // regexp or boolean + + /** + * Return true if the filename matches the pattern, or false otherwise. + */ + match(fname: string): boolean; + + /** + * Take a /-split filename, and match it against a single row in the regExpSet. + * This method is mainly for internal use, but is exposed so that it can be used + * by a glob-walker that needs to avoid excessive filesystem calls. + */ + matchOne(files: string[], pattern: string[], partial: boolean): boolean; + + /** + * Deprecated. For internal use. + * + * @private + */ + debug(): void; + + /** + * Deprecated. For internal use. + * + * @private + */ + make(): void; + + /** + * Deprecated. For internal use. + * + * @private + */ + parseNegate(): void; + + /** + * Deprecated. For internal use. + * + * @private + */ + braceExpand(pattern: string, options: IOptions): void; + + /** + * Deprecated. For internal use. + * + * @private + */ + parse(pattern: string, isSub?: boolean): void; + } +} + +export = M; diff --git a/themes/piratecare/node_modules/@types/minimatch/package.json b/themes/piratecare/node_modules/@types/minimatch/package.json new file mode 100644 index 0000000..1e4036b --- /dev/null +++ b/themes/piratecare/node_modules/@types/minimatch/package.json @@ -0,0 +1,55 @@ +{ + "_args": [ + [ + "@types/minimatch@3.0.3", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@types/minimatch@3.0.3", + "_id": "@types/minimatch@3.0.3", + "_inBundle": false, + "_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "_location": "/@types/minimatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/minimatch@3.0.3", + "name": "@types/minimatch", + "escapedName": "@types%2fminimatch", + "scope": "@types", + "rawSpec": "3.0.3", + "saveSpec": null, + "fetchSpec": "3.0.3" + }, + "_requiredBy": [ + "/@types/glob" + ], + "_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "_spec": "3.0.3", + "_where": "/tmp/tailwind-hugo", + "contributors": [ + { + "name": "vvakame", + "url": "https://github.com/vvakame" + }, + { + "name": "Shant Marouti", + "url": "https://github.com/shantmarouti" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for Minimatch", + "license": "MIT", + "main": "", + "name": "@types/minimatch", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1", + "version": "3.0.3" +} diff --git a/themes/piratecare/node_modules/@types/node/LICENSE b/themes/piratecare/node_modules/@types/node/LICENSE new file mode 100644 index 0000000..4b1ad51 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + 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 diff --git a/themes/piratecare/node_modules/@types/node/README.md b/themes/piratecare/node_modules/@types/node/README.md new file mode 100644 index 0000000..bccbf0a --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/node` + +# Summary +This package contains type definitions for Node.js (http://nodejs.org/). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node. + +### Additional Details + * Last updated: Wed, 29 Jan 2020 21:49:45 GMT + * Dependencies: none + * Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout` + +# Credits +These definitions were written by Microsoft TypeScript (https://github.com/Microsoft), DefinitelyTyped (https://github.com/DefinitelyTyped), Alberto Schiabel (https://github.com/jkomyno), Alexander T. (https://github.com/a-tarasyuk), Alvis HT Tang (https://github.com/alvis), Andrew Makarov (https://github.com/r3nya), Benjamin Toueg (https://github.com/btoueg), Bruno Scheufler (https://github.com/brunoscheufler), Chigozirim C. (https://github.com/smac89), Christian Vaagland Tellnes (https://github.com/tellnes), David Junger (https://github.com/touffy), Deividas Bakanas (https://github.com/DeividasBakanas), Eugene Y. Q. Shen (https://github.com/eyqs), Flarna (https://github.com/Flarna), Hannes Magnusson (https://github.com/Hannes-Magnusson-CK), Hoàng Văn Khải (https://github.com/KSXGitHub), Huw (https://github.com/hoo29), Kelvin Jin (https://github.com/kjin), Klaus Meinhardt (https://github.com/ajafff), Lishude (https://github.com/islishude), Mariusz Wiktorczyk (https://github.com/mwiktorczyk), Mohsen Azimi (https://github.com/mohsen1), Nicolas Even (https://github.com/n-e), Nicolas Voigt (https://github.com/octo-sniffle), Nikita Galkin (https://github.com/galkin), Parambir Singh (https://github.com/parambirs), Sebastian Silbermann (https://github.com/eps1lon), Simon Schick (https://github.com/SimonSchick), Thomas den Hollander (https://github.com/ThomasdenH), Wilco Bakker (https://github.com/WilcoBakker), wwwy3y3 (https://github.com/wwwy3y3), Zane Hannan AU (https://github.com/ZaneHannanAU), Samuel Ainsworth (https://github.com/samuela), Kyle Uehlein (https://github.com/kuehlein), Jordi Oliveras Rovira (https://github.com/j-oliveras), Thanik Bhongbhibhat (https://github.com/bhongy), Marcin Kopacz (https://github.com/chyzwar), Trivikram Kamat (https://github.com/trivikr), Minh Son Nguyen (https://github.com/nguymin4), Junxiao Shi (https://github.com/yoursunny), and Ilia Baryshnikov (https://github.com/qwelias). diff --git a/themes/piratecare/node_modules/@types/node/assert.d.ts b/themes/piratecare/node_modules/@types/node/assert.d.ts new file mode 100644 index 0000000..df6df63 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/assert.d.ts @@ -0,0 +1,53 @@ +declare module "assert" { + function internal(value: any, message?: string | Error): void; + namespace internal { + class AssertionError implements Error { + name: string; + message: string; + actual: any; + expected: any; + operator: string; + generatedMessage: boolean; + code: 'ERR_ASSERTION'; + + constructor(options?: { + message?: string; actual?: any; expected?: any; + operator?: string; stackStartFn?: Function + }); + } + + type AssertPredicate = RegExp | (new() => object) | ((thrown: any) => boolean) | object | Error; + + function fail(message?: string | Error): never; + /** @deprecated since v10.0.0 - use fail([message]) or other assert functions instead. */ + function fail(actual: any, expected: any, message?: string | Error, operator?: string, stackStartFn?: Function): never; + function ok(value: any, message?: string | Error): void; + function equal(actual: any, expected: any, message?: string | Error): void; + function notEqual(actual: any, expected: any, message?: string | Error): void; + function deepEqual(actual: any, expected: any, message?: string | Error): void; + function notDeepEqual(actual: any, expected: any, message?: string | Error): void; + function strictEqual(actual: any, expected: any, message?: string | Error): void; + function notStrictEqual(actual: any, expected: any, message?: string | Error): void; + function deepStrictEqual(actual: any, expected: any, message?: string | Error): void; + function notDeepStrictEqual(actual: any, expected: any, message?: string | Error): void; + + function throws(block: () => any, message?: string | Error): void; + function throws(block: () => any, error: AssertPredicate, message?: string | Error): void; + function doesNotThrow(block: () => any, message?: string | Error): void; + function doesNotThrow(block: () => any, error: RegExp | Function, message?: string | Error): void; + + function ifError(value: any): void; + + function rejects(block: (() => Promise) | Promise, message?: string | Error): Promise; + function rejects(block: (() => Promise) | Promise, error: AssertPredicate, message?: string | Error): Promise; + function doesNotReject(block: (() => Promise) | Promise, message?: string | Error): Promise; + function doesNotReject(block: (() => Promise) | Promise, error: RegExp | Function, message?: string | Error): Promise; + + function match(value: string, regExp: RegExp, message?: string | Error): void; + function doesNotMatch(value: string, regExp: RegExp, message?: string | Error): void; + + const strict: typeof internal; + } + + export = internal; +} diff --git a/themes/piratecare/node_modules/@types/node/async_hooks.d.ts b/themes/piratecare/node_modules/@types/node/async_hooks.d.ts new file mode 100644 index 0000000..6487c38 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/async_hooks.d.ts @@ -0,0 +1,132 @@ +/** + * Async Hooks module: https://nodejs.org/api/async_hooks.html + */ +declare module "async_hooks" { + /** + * Returns the asyncId of the current execution context. + */ + function executionAsyncId(): number; + + /** + * Returns the ID of the resource responsible for calling the callback that is currently being executed. + */ + function triggerAsyncId(): number; + + interface HookCallbacks { + /** + * Called when a class is constructed that has the possibility to emit an asynchronous event. + * @param asyncId a unique ID for the async resource + * @param type the type of the async resource + * @param triggerAsyncId the unique ID of the async resource in whose execution context this async resource was created + * @param resource reference to the resource representing the async operation, needs to be released during destroy + */ + init?(asyncId: number, type: string, triggerAsyncId: number, resource: object): void; + + /** + * When an asynchronous operation is initiated or completes a callback is called to notify the user. + * The before callback is called just before said callback is executed. + * @param asyncId the unique identifier assigned to the resource about to execute the callback. + */ + before?(asyncId: number): void; + + /** + * Called immediately after the callback specified in before is completed. + * @param asyncId the unique identifier assigned to the resource which has executed the callback. + */ + after?(asyncId: number): void; + + /** + * Called when a promise has resolve() called. This may not be in the same execution id + * as the promise itself. + * @param asyncId the unique id for the promise that was resolve()d. + */ + promiseResolve?(asyncId: number): void; + + /** + * Called after the resource corresponding to asyncId is destroyed + * @param asyncId a unique ID for the async resource + */ + destroy?(asyncId: number): void; + } + + interface AsyncHook { + /** + * Enable the callbacks for a given AsyncHook instance. If no callbacks are provided enabling is a noop. + */ + enable(): this; + + /** + * Disable the callbacks for a given AsyncHook instance from the global pool of AsyncHook callbacks to be executed. Once a hook has been disabled it will not be called again until enabled. + */ + disable(): this; + } + + /** + * Registers functions to be called for different lifetime events of each async operation. + * @param options the callbacks to register + * @return an AsyncHooks instance used for disabling and enabling hooks + */ + function createHook(options: HookCallbacks): AsyncHook; + + interface AsyncResourceOptions { + /** + * The ID of the execution context that created this async event. + * Default: `executionAsyncId()` + */ + triggerAsyncId?: number; + + /** + * Disables automatic `emitDestroy` when the object is garbage collected. + * This usually does not need to be set (even if `emitDestroy` is called + * manually), unless the resource's `asyncId` is retrieved and the + * sensitive API's `emitDestroy` is called with it. + * Default: `false` + */ + requireManualDestroy?: boolean; + } + + /** + * The class AsyncResource was designed to be extended by the embedder's async resources. + * Using this users can easily trigger the lifetime events of their own resources. + */ + class AsyncResource { + /** + * AsyncResource() is meant to be extended. Instantiating a + * new AsyncResource() also triggers init. If triggerAsyncId is omitted then + * async_hook.executionAsyncId() is used. + * @param type The type of async event. + * @param triggerAsyncId The ID of the execution context that created + * this async event (default: `executionAsyncId()`), or an + * AsyncResourceOptions object (since 9.3) + */ + constructor(type: string, triggerAsyncId?: number|AsyncResourceOptions); + + /** + * Call the provided function with the provided arguments in the + * execution context of the async resource. This will establish the + * context, trigger the AsyncHooks before callbacks, call the function, + * trigger the AsyncHooks after callbacks, and then restore the original + * execution context. + * @param fn The function to call in the execution context of this + * async resource. + * @param thisArg The receiver to be used for the function call. + * @param args Optional arguments to pass to the function. + */ + runInAsyncScope(fn: (this: This, ...args: any[]) => Result, thisArg?: This, ...args: any[]): Result; + + /** + * Call AsyncHooks destroy callbacks. + */ + emitDestroy(): void; + + /** + * @return the unique ID assigned to this AsyncResource instance. + */ + asyncId(): number; + + /** + * @return the trigger ID for this AsyncResource instance. + */ + triggerAsyncId(): number; + } +} diff --git a/themes/piratecare/node_modules/@types/node/base.d.ts b/themes/piratecare/node_modules/@types/node/base.d.ts new file mode 100644 index 0000000..70983d9 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/base.d.ts @@ -0,0 +1,41 @@ +// base definnitions for all NodeJS modules that are not specific to any version of TypeScript +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// diff --git a/themes/piratecare/node_modules/@types/node/buffer.d.ts b/themes/piratecare/node_modules/@types/node/buffer.d.ts new file mode 100644 index 0000000..7eb1061 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/buffer.d.ts @@ -0,0 +1,22 @@ +declare module "buffer" { + export const INSPECT_MAX_BYTES: number; + export const kMaxLength: number; + export const kStringMaxLength: number; + export const constants: { + MAX_LENGTH: number; + MAX_STRING_LENGTH: number; + }; + const BuffType: typeof Buffer; + + export type TranscodeEncoding = "ascii" | "utf8" | "utf16le" | "ucs2" | "latin1" | "binary"; + + export function transcode(source: Uint8Array, fromEnc: TranscodeEncoding, toEnc: TranscodeEncoding): Buffer; + + export const SlowBuffer: { + /** @deprecated since v6.0.0, use Buffer.allocUnsafeSlow() */ + new(size: number): Buffer; + prototype: Buffer; + }; + + export { BuffType as Buffer }; +} diff --git a/themes/piratecare/node_modules/@types/node/child_process.d.ts b/themes/piratecare/node_modules/@types/node/child_process.d.ts new file mode 100644 index 0000000..ed2e13a --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/child_process.d.ts @@ -0,0 +1,495 @@ +declare module "child_process" { + import * as events from "events"; + import * as net from "net"; + import { Writable, Readable, Stream, Pipe } from "stream"; + + type Serializable = string | object | number | boolean; + type SendHandle = net.Socket | net.Server; + + interface ChildProcess extends events.EventEmitter { + stdin: Writable | null; + stdout: Readable | null; + stderr: Readable | null; + readonly channel?: Pipe | null; + readonly stdio: [ + Writable | null, // stdin + Readable | null, // stdout + Readable | null, // stderr + Readable | Writable | null | undefined, // extra + Readable | Writable | null | undefined // extra + ]; + readonly killed: boolean; + readonly pid: number; + readonly connected: boolean; + kill(signal?: NodeJS.Signals | number): void; + send(message: Serializable, callback?: (error: Error | null) => void): boolean; + send(message: Serializable, sendHandle?: SendHandle, callback?: (error: Error | null) => void): boolean; + send(message: Serializable, sendHandle?: SendHandle, options?: MessageOptions, callback?: (error: Error | null) => void): boolean; + disconnect(): void; + unref(): void; + ref(): void; + + /** + * events.EventEmitter + * 1. close + * 2. disconnect + * 3. error + * 4. exit + * 5. message + */ + + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "close", listener: (code: number, signal: NodeJS.Signals) => void): this; + addListener(event: "disconnect", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "exit", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + addListener(event: "message", listener: (message: Serializable, sendHandle: SendHandle) => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "close", code: number, signal: NodeJS.Signals): boolean; + emit(event: "disconnect"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "exit", code: number | null, signal: NodeJS.Signals | null): boolean; + emit(event: "message", message: Serializable, sendHandle: SendHandle): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "close", listener: (code: number, signal: NodeJS.Signals) => void): this; + on(event: "disconnect", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "exit", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + on(event: "message", listener: (message: Serializable, sendHandle: SendHandle) => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "close", listener: (code: number, signal: NodeJS.Signals) => void): this; + once(event: "disconnect", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "exit", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + once(event: "message", listener: (message: Serializable, sendHandle: SendHandle) => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "close", listener: (code: number, signal: NodeJS.Signals) => void): this; + prependListener(event: "disconnect", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "exit", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependListener(event: "message", listener: (message: Serializable, sendHandle: SendHandle) => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "close", listener: (code: number, signal: NodeJS.Signals) => void): this; + prependOnceListener(event: "disconnect", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "exit", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependOnceListener(event: "message", listener: (message: Serializable, sendHandle: SendHandle) => void): this; + } + + // return this object when stdio option is undefined or not specified + interface ChildProcessWithoutNullStreams extends ChildProcess { + stdin: Writable; + stdout: Readable; + stderr: Readable; + readonly stdio: [ + Writable, // stdin + Readable, // stdout + Readable, // stderr + Readable | Writable | null | undefined, // extra, no modification + Readable | Writable | null | undefined // extra, no modification + ]; + } + + // return this object when stdio option is a tuple of 3 + interface ChildProcessByStdio< + I extends null | Writable, + O extends null | Readable, + E extends null | Readable, + > extends ChildProcess { + stdin: I; + stdout: O; + stderr: E; + readonly stdio: [ + I, + O, + E, + Readable | Writable | null | undefined, // extra, no modification + Readable | Writable | null | undefined // extra, no modification + ]; + } + + interface MessageOptions { + keepOpen?: boolean; + } + + type StdioOptions = "pipe" | "ignore" | "inherit" | Array<("pipe" | "ipc" | "ignore" | "inherit" | Stream | number | null | undefined)>; + + type SerializationType = 'json' | 'advanced'; + + interface MessagingOptions { + /** + * Specify the kind of serialization used for sending messages between processes. + * @default 'json' + */ + serialization?: SerializationType; + } + + interface ProcessEnvOptions { + uid?: number; + gid?: number; + cwd?: string; + env?: NodeJS.ProcessEnv; + } + + interface CommonOptions extends ProcessEnvOptions { + /** + * @default true + */ + windowsHide?: boolean; + /** + * @default 0 + */ + timeout?: number; + } + + interface CommonSpawnOptions extends CommonOptions, MessagingOptions { + argv0?: string; + stdio?: StdioOptions; + shell?: boolean | string; + windowsVerbatimArguments?: boolean; + } + + interface SpawnOptions extends CommonSpawnOptions { + detached?: boolean; + } + + interface SpawnOptionsWithoutStdio extends SpawnOptions { + stdio?: 'pipe' | Array; + } + + type StdioNull = 'inherit' | 'ignore' | Stream; + type StdioPipe = undefined | null | 'pipe'; + + interface SpawnOptionsWithStdioTuple< + Stdin extends StdioNull | StdioPipe, + Stdout extends StdioNull | StdioPipe, + Stderr extends StdioNull | StdioPipe, + > extends SpawnOptions { + stdio: [Stdin, Stdout, Stderr]; + } + + // overloads of spawn without 'args' + function spawn(command: string, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams; + + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + + function spawn(command: string, options: SpawnOptions): ChildProcess; + + // overloads of spawn with 'args' + function spawn(command: string, args?: ReadonlyArray, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams; + + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + function spawn( + command: string, + args: ReadonlyArray, + options: SpawnOptionsWithStdioTuple, + ): ChildProcessByStdio; + + function spawn(command: string, args: ReadonlyArray, options: SpawnOptions): ChildProcess; + + interface ExecOptions extends CommonOptions { + shell?: string; + maxBuffer?: number; + killSignal?: NodeJS.Signals | number; + } + + interface ExecOptionsWithStringEncoding extends ExecOptions { + encoding: BufferEncoding; + } + + interface ExecOptionsWithBufferEncoding extends ExecOptions { + encoding: string | null; // specify `null`. + } + + interface ExecException extends Error { + cmd?: string; + killed?: boolean; + code?: number; + signal?: NodeJS.Signals; + } + + // no `options` definitely means stdout/stderr are `string`. + function exec(command: string, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + + // `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`. + function exec(command: string, options: { encoding: "buffer" | null } & ExecOptions, callback?: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void): ChildProcess; + + // `options` with well known `encoding` means stdout/stderr are definitely `string`. + function exec(command: string, options: { encoding: BufferEncoding } & ExecOptions, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + + // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`. + // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`. + function exec(command: string, options: { encoding: string } & ExecOptions, callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void): ChildProcess; + + // `options` without an `encoding` means stdout/stderr are definitely `string`. + function exec(command: string, options: ExecOptions, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + + // fallback if nothing else matches. Worst case is always `string | Buffer`. + function exec( + command: string, + options: ({ encoding?: string | null } & ExecOptions) | undefined | null, + callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void, + ): ChildProcess; + + interface PromiseWithChild extends Promise { + child: ChildProcess; + } + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace exec { + function __promisify__(command: string): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(command: string, options: { encoding: "buffer" | null } & ExecOptions): PromiseWithChild<{ stdout: Buffer, stderr: Buffer }>; + function __promisify__(command: string, options: { encoding: BufferEncoding } & ExecOptions): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(command: string, options: ExecOptions): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(command: string, options?: ({ encoding?: string | null } & ExecOptions) | null): PromiseWithChild<{ stdout: string | Buffer, stderr: string | Buffer }>; + } + + interface ExecFileOptions extends CommonOptions { + maxBuffer?: number; + killSignal?: NodeJS.Signals | number; + windowsVerbatimArguments?: boolean; + shell?: boolean | string; + } + interface ExecFileOptionsWithStringEncoding extends ExecFileOptions { + encoding: BufferEncoding; + } + interface ExecFileOptionsWithBufferEncoding extends ExecFileOptions { + encoding: 'buffer' | null; + } + interface ExecFileOptionsWithOtherEncoding extends ExecFileOptions { + encoding: string; + } + + function execFile(file: string): ChildProcess; + function execFile(file: string, options: ({ encoding?: string | null } & ExecFileOptions) | undefined | null): ChildProcess; + function execFile(file: string, args?: ReadonlyArray | null): ChildProcess; + function execFile(file: string, args: ReadonlyArray | undefined | null, options: ({ encoding?: string | null } & ExecFileOptions) | undefined | null): ChildProcess; + + // no `options` definitely means stdout/stderr are `string`. + function execFile(file: string, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile(file: string, args: ReadonlyArray | undefined | null, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + + // `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`. + function execFile(file: string, options: ExecFileOptionsWithBufferEncoding, callback: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithBufferEncoding, + callback: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void, + ): ChildProcess; + + // `options` with well known `encoding` means stdout/stderr are definitely `string`. + function execFile(file: string, options: ExecFileOptionsWithStringEncoding, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithStringEncoding, + callback: (error: ExecException | null, stdout: string, stderr: string) => void, + ): ChildProcess; + + // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`. + // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`. + function execFile( + file: string, + options: ExecFileOptionsWithOtherEncoding, + callback: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void, + ): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithOtherEncoding, + callback: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void, + ): ChildProcess; + + // `options` without an `encoding` means stdout/stderr are definitely `string`. + function execFile(file: string, options: ExecFileOptions, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptions, + callback: (error: ExecException | null, stdout: string, stderr: string) => void + ): ChildProcess; + + // fallback if nothing else matches. Worst case is always `string | Buffer`. + function execFile( + file: string, + options: ({ encoding?: string | null } & ExecFileOptions) | undefined | null, + callback: ((error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null, + ): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ({ encoding?: string | null } & ExecFileOptions) | undefined | null, + callback: ((error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null, + ): ChildProcess; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace execFile { + function __promisify__(file: string): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(file: string, args: string[] | undefined | null): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(file: string, options: ExecFileOptionsWithBufferEncoding): PromiseWithChild<{ stdout: Buffer, stderr: Buffer }>; + function __promisify__(file: string, args: string[] | undefined | null, options: ExecFileOptionsWithBufferEncoding): PromiseWithChild<{ stdout: Buffer, stderr: Buffer }>; + function __promisify__(file: string, options: ExecFileOptionsWithStringEncoding): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(file: string, args: string[] | undefined | null, options: ExecFileOptionsWithStringEncoding): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(file: string, options: ExecFileOptionsWithOtherEncoding): PromiseWithChild<{ stdout: string | Buffer, stderr: string | Buffer }>; + function __promisify__(file: string, args: string[] | undefined | null, options: ExecFileOptionsWithOtherEncoding): PromiseWithChild<{ stdout: string | Buffer, stderr: string | Buffer }>; + function __promisify__(file: string, options: ExecFileOptions): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(file: string, args: string[] | undefined | null, options: ExecFileOptions): PromiseWithChild<{ stdout: string, stderr: string }>; + function __promisify__(file: string, options: ({ encoding?: string | null } & ExecFileOptions) | undefined | null): PromiseWithChild<{ stdout: string | Buffer, stderr: string | Buffer }>; + function __promisify__( + file: string, + args: string[] | undefined | null, + options: ({ encoding?: string | null } & ExecFileOptions) | undefined | null, + ): PromiseWithChild<{ stdout: string | Buffer, stderr: string | Buffer }>; + } + + interface ForkOptions extends ProcessEnvOptions, MessagingOptions { + execPath?: string; + execArgv?: string[]; + silent?: boolean; + stdio?: StdioOptions; + detached?: boolean; + windowsVerbatimArguments?: boolean; + } + function fork(modulePath: string, args?: ReadonlyArray, options?: ForkOptions): ChildProcess; + + interface SpawnSyncOptions extends CommonSpawnOptions { + input?: string | NodeJS.ArrayBufferView; + killSignal?: NodeJS.Signals | number; + maxBuffer?: number; + encoding?: string; + } + interface SpawnSyncOptionsWithStringEncoding extends SpawnSyncOptions { + encoding: BufferEncoding; + } + interface SpawnSyncOptionsWithBufferEncoding extends SpawnSyncOptions { + encoding: string; // specify `null`. + } + interface SpawnSyncReturns { + pid: number; + output: string[]; + stdout: T; + stderr: T; + status: number | null; + signal: NodeJS.Signals | null; + error?: Error; + } + function spawnSync(command: string): SpawnSyncReturns; + function spawnSync(command: string, options?: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + function spawnSync(command: string, options?: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + function spawnSync(command: string, options?: SpawnSyncOptions): SpawnSyncReturns; + function spawnSync(command: string, args?: ReadonlyArray, options?: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + function spawnSync(command: string, args?: ReadonlyArray, options?: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + function spawnSync(command: string, args?: ReadonlyArray, options?: SpawnSyncOptions): SpawnSyncReturns; + + interface ExecSyncOptions extends CommonOptions { + input?: string | Uint8Array; + stdio?: StdioOptions; + shell?: string; + killSignal?: NodeJS.Signals | number; + maxBuffer?: number; + encoding?: string; + } + interface ExecSyncOptionsWithStringEncoding extends ExecSyncOptions { + encoding: BufferEncoding; + } + interface ExecSyncOptionsWithBufferEncoding extends ExecSyncOptions { + encoding: string; // specify `null`. + } + function execSync(command: string): Buffer; + function execSync(command: string, options?: ExecSyncOptionsWithStringEncoding): string; + function execSync(command: string, options?: ExecSyncOptionsWithBufferEncoding): Buffer; + function execSync(command: string, options?: ExecSyncOptions): Buffer; + + interface ExecFileSyncOptions extends CommonOptions { + input?: string | NodeJS.ArrayBufferView; + stdio?: StdioOptions; + killSignal?: NodeJS.Signals | number; + maxBuffer?: number; + encoding?: string; + shell?: boolean | string; + } + interface ExecFileSyncOptionsWithStringEncoding extends ExecFileSyncOptions { + encoding: BufferEncoding; + } + interface ExecFileSyncOptionsWithBufferEncoding extends ExecFileSyncOptions { + encoding: string; // specify `null`. + } + function execFileSync(command: string): Buffer; + function execFileSync(command: string, options?: ExecFileSyncOptionsWithStringEncoding): string; + function execFileSync(command: string, options?: ExecFileSyncOptionsWithBufferEncoding): Buffer; + function execFileSync(command: string, options?: ExecFileSyncOptions): Buffer; + function execFileSync(command: string, args?: ReadonlyArray, options?: ExecFileSyncOptionsWithStringEncoding): string; + function execFileSync(command: string, args?: ReadonlyArray, options?: ExecFileSyncOptionsWithBufferEncoding): Buffer; + function execFileSync(command: string, args?: ReadonlyArray, options?: ExecFileSyncOptions): Buffer; +} diff --git a/themes/piratecare/node_modules/@types/node/cluster.d.ts b/themes/piratecare/node_modules/@types/node/cluster.d.ts new file mode 100644 index 0000000..2992af8 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/cluster.d.ts @@ -0,0 +1,266 @@ +declare module "cluster" { + import * as child from "child_process"; + import * as events from "events"; + import * as net from "net"; + + // interfaces + interface ClusterSettings { + execArgv?: string[]; // default: process.execArgv + exec?: string; + args?: string[]; + silent?: boolean; + stdio?: any[]; + uid?: number; + gid?: number; + inspectPort?: number | (() => number); + } + + interface Address { + address: string; + port: number; + addressType: number | "udp4" | "udp6"; // 4, 6, -1, "udp4", "udp6" + } + + class Worker extends events.EventEmitter { + id: number; + process: child.ChildProcess; + send(message: child.Serializable, sendHandle?: child.SendHandle, callback?: (error: Error | null) => void): boolean; + kill(signal?: string): void; + destroy(signal?: string): void; + disconnect(): void; + isConnected(): boolean; + isDead(): boolean; + exitedAfterDisconnect: boolean; + + /** + * events.EventEmitter + * 1. disconnect + * 2. error + * 3. exit + * 4. listening + * 5. message + * 6. online + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "disconnect", listener: () => void): this; + addListener(event: "error", listener: (error: Error) => void): this; + addListener(event: "exit", listener: (code: number, signal: string) => void): this; + addListener(event: "listening", listener: (address: Address) => void): this; + addListener(event: "message", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + addListener(event: "online", listener: () => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "disconnect"): boolean; + emit(event: "error", error: Error): boolean; + emit(event: "exit", code: number, signal: string): boolean; + emit(event: "listening", address: Address): boolean; + emit(event: "message", message: any, handle: net.Socket | net.Server): boolean; + emit(event: "online"): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "disconnect", listener: () => void): this; + on(event: "error", listener: (error: Error) => void): this; + on(event: "exit", listener: (code: number, signal: string) => void): this; + on(event: "listening", listener: (address: Address) => void): this; + on(event: "message", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + on(event: "online", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "disconnect", listener: () => void): this; + once(event: "error", listener: (error: Error) => void): this; + once(event: "exit", listener: (code: number, signal: string) => void): this; + once(event: "listening", listener: (address: Address) => void): this; + once(event: "message", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + once(event: "online", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "disconnect", listener: () => void): this; + prependListener(event: "error", listener: (error: Error) => void): this; + prependListener(event: "exit", listener: (code: number, signal: string) => void): this; + prependListener(event: "listening", listener: (address: Address) => void): this; + prependListener(event: "message", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependListener(event: "online", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "disconnect", listener: () => void): this; + prependOnceListener(event: "error", listener: (error: Error) => void): this; + prependOnceListener(event: "exit", listener: (code: number, signal: string) => void): this; + prependOnceListener(event: "listening", listener: (address: Address) => void): this; + prependOnceListener(event: "message", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependOnceListener(event: "online", listener: () => void): this; + } + + interface Cluster extends events.EventEmitter { + Worker: Worker; + disconnect(callback?: () => void): void; + fork(env?: any): Worker; + isMaster: boolean; + isWorker: boolean; + schedulingPolicy: number; + settings: ClusterSettings; + setupMaster(settings?: ClusterSettings): void; + worker?: Worker; + workers?: { + [index: string]: Worker | undefined + }; + + readonly SCHED_NONE: number; + readonly SCHED_RR: number; + + /** + * events.EventEmitter + * 1. disconnect + * 2. exit + * 3. fork + * 4. listening + * 5. message + * 6. online + * 7. setup + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "disconnect", listener: (worker: Worker) => void): this; + addListener(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): this; + addListener(event: "fork", listener: (worker: Worker) => void): this; + addListener(event: "listening", listener: (worker: Worker, address: Address) => void): this; + addListener(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + addListener(event: "online", listener: (worker: Worker) => void): this; + addListener(event: "setup", listener: (settings: ClusterSettings) => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "disconnect", worker: Worker): boolean; + emit(event: "exit", worker: Worker, code: number, signal: string): boolean; + emit(event: "fork", worker: Worker): boolean; + emit(event: "listening", worker: Worker, address: Address): boolean; + emit(event: "message", worker: Worker, message: any, handle: net.Socket | net.Server): boolean; + emit(event: "online", worker: Worker): boolean; + emit(event: "setup", settings: ClusterSettings): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "disconnect", listener: (worker: Worker) => void): this; + on(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): this; + on(event: "fork", listener: (worker: Worker) => void): this; + on(event: "listening", listener: (worker: Worker, address: Address) => void): this; + on(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + on(event: "online", listener: (worker: Worker) => void): this; + on(event: "setup", listener: (settings: ClusterSettings) => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "disconnect", listener: (worker: Worker) => void): this; + once(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): this; + once(event: "fork", listener: (worker: Worker) => void): this; + once(event: "listening", listener: (worker: Worker, address: Address) => void): this; + once(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + once(event: "online", listener: (worker: Worker) => void): this; + once(event: "setup", listener: (settings: ClusterSettings) => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "disconnect", listener: (worker: Worker) => void): this; + prependListener(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): this; + prependListener(event: "fork", listener: (worker: Worker) => void): this; + prependListener(event: "listening", listener: (worker: Worker, address: Address) => void): this; + prependListener(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependListener(event: "online", listener: (worker: Worker) => void): this; + prependListener(event: "setup", listener: (settings: ClusterSettings) => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "disconnect", listener: (worker: Worker) => void): this; + prependOnceListener(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): this; + prependOnceListener(event: "fork", listener: (worker: Worker) => void): this; + prependOnceListener(event: "listening", listener: (worker: Worker, address: Address) => void): this; + // the handle is a net.Socket or net.Server object, or undefined. + prependOnceListener(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; + prependOnceListener(event: "online", listener: (worker: Worker) => void): this; + prependOnceListener(event: "setup", listener: (settings: ClusterSettings) => void): this; + } + + const SCHED_NONE: number; + const SCHED_RR: number; + + function disconnect(callback?: () => void): void; + function fork(env?: any): Worker; + const isMaster: boolean; + const isWorker: boolean; + let schedulingPolicy: number; + const settings: ClusterSettings; + function setupMaster(settings?: ClusterSettings): void; + const worker: Worker; + const workers: { + [index: string]: Worker | undefined + }; + + /** + * events.EventEmitter + * 1. disconnect + * 2. exit + * 3. fork + * 4. listening + * 5. message + * 6. online + * 7. setup + */ + function addListener(event: string, listener: (...args: any[]) => void): Cluster; + function addListener(event: "disconnect", listener: (worker: Worker) => void): Cluster; + function addListener(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): Cluster; + function addListener(event: "fork", listener: (worker: Worker) => void): Cluster; + function addListener(event: "listening", listener: (worker: Worker, address: Address) => void): Cluster; + // the handle is a net.Socket or net.Server object, or undefined. + function addListener(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): Cluster; + function addListener(event: "online", listener: (worker: Worker) => void): Cluster; + function addListener(event: "setup", listener: (settings: ClusterSettings) => void): Cluster; + + function emit(event: string | symbol, ...args: any[]): boolean; + function emit(event: "disconnect", worker: Worker): boolean; + function emit(event: "exit", worker: Worker, code: number, signal: string): boolean; + function emit(event: "fork", worker: Worker): boolean; + function emit(event: "listening", worker: Worker, address: Address): boolean; + function emit(event: "message", worker: Worker, message: any, handle: net.Socket | net.Server): boolean; + function emit(event: "online", worker: Worker): boolean; + function emit(event: "setup", settings: ClusterSettings): boolean; + + function on(event: string, listener: (...args: any[]) => void): Cluster; + function on(event: "disconnect", listener: (worker: Worker) => void): Cluster; + function on(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): Cluster; + function on(event: "fork", listener: (worker: Worker) => void): Cluster; + function on(event: "listening", listener: (worker: Worker, address: Address) => void): Cluster; + function on(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): Cluster; // the handle is a net.Socket or net.Server object, or undefined. + function on(event: "online", listener: (worker: Worker) => void): Cluster; + function on(event: "setup", listener: (settings: ClusterSettings) => void): Cluster; + + function once(event: string, listener: (...args: any[]) => void): Cluster; + function once(event: "disconnect", listener: (worker: Worker) => void): Cluster; + function once(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): Cluster; + function once(event: "fork", listener: (worker: Worker) => void): Cluster; + function once(event: "listening", listener: (worker: Worker, address: Address) => void): Cluster; + function once(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): Cluster; // the handle is a net.Socket or net.Server object, or undefined. + function once(event: "online", listener: (worker: Worker) => void): Cluster; + function once(event: "setup", listener: (settings: ClusterSettings) => void): Cluster; + + function removeListener(event: string, listener: (...args: any[]) => void): Cluster; + function removeAllListeners(event?: string): Cluster; + function setMaxListeners(n: number): Cluster; + function getMaxListeners(): number; + function listeners(event: string): Function[]; + function listenerCount(type: string): number; + + function prependListener(event: string, listener: (...args: any[]) => void): Cluster; + function prependListener(event: "disconnect", listener: (worker: Worker) => void): Cluster; + function prependListener(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): Cluster; + function prependListener(event: "fork", listener: (worker: Worker) => void): Cluster; + function prependListener(event: "listening", listener: (worker: Worker, address: Address) => void): Cluster; + // the handle is a net.Socket or net.Server object, or undefined. + function prependListener(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): Cluster; + function prependListener(event: "online", listener: (worker: Worker) => void): Cluster; + function prependListener(event: "setup", listener: (settings: ClusterSettings) => void): Cluster; + + function prependOnceListener(event: string, listener: (...args: any[]) => void): Cluster; + function prependOnceListener(event: "disconnect", listener: (worker: Worker) => void): Cluster; + function prependOnceListener(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): Cluster; + function prependOnceListener(event: "fork", listener: (worker: Worker) => void): Cluster; + function prependOnceListener(event: "listening", listener: (worker: Worker, address: Address) => void): Cluster; + // the handle is a net.Socket or net.Server object, or undefined. + function prependOnceListener(event: "message", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): Cluster; + function prependOnceListener(event: "online", listener: (worker: Worker) => void): Cluster; + function prependOnceListener(event: "setup", listener: (settings: ClusterSettings) => void): Cluster; + + function eventNames(): string[]; +} diff --git a/themes/piratecare/node_modules/@types/node/console.d.ts b/themes/piratecare/node_modules/@types/node/console.d.ts new file mode 100644 index 0000000..d30d13f --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/console.d.ts @@ -0,0 +1,3 @@ +declare module "console" { + export = console; +} diff --git a/themes/piratecare/node_modules/@types/node/constants.d.ts b/themes/piratecare/node_modules/@types/node/constants.d.ts new file mode 100644 index 0000000..d124ae6 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/constants.d.ts @@ -0,0 +1,8 @@ +/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */ +declare module "constants" { + import { constants as osConstants, SignalConstants } from 'os'; + import { constants as cryptoConstants } from 'crypto'; + import { constants as fsConstants } from 'fs'; + const exp: typeof osConstants.errno & typeof osConstants.priority & SignalConstants & typeof cryptoConstants & typeof fsConstants; + export = exp; +} diff --git a/themes/piratecare/node_modules/@types/node/crypto.d.ts b/themes/piratecare/node_modules/@types/node/crypto.d.ts new file mode 100644 index 0000000..87555f9 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/crypto.d.ts @@ -0,0 +1,615 @@ +declare module "crypto" { + import * as stream from "stream"; + + interface Certificate { + exportChallenge(spkac: BinaryLike): Buffer; + exportPublicKey(spkac: BinaryLike): Buffer; + verifySpkac(spkac: NodeJS.ArrayBufferView): boolean; + } + const Certificate: { + new(): Certificate; + (): Certificate; + }; + + namespace constants { // https://nodejs.org/dist/latest-v10.x/docs/api/crypto.html#crypto_crypto_constants + const OPENSSL_VERSION_NUMBER: number; + + /** Applies multiple bug workarounds within OpenSSL. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for detail. */ + const SSL_OP_ALL: number; + /** Allows legacy insecure renegotiation between OpenSSL and unpatched clients or servers. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */ + const SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number; + /** Attempts to use the server's preferences instead of the client's when selecting a cipher. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */ + const SSL_OP_CIPHER_SERVER_PREFERENCE: number; + /** Instructs OpenSSL to use Cisco's "speshul" version of DTLS_BAD_VER. */ + const SSL_OP_CISCO_ANYCONNECT: number; + /** Instructs OpenSSL to turn on cookie exchange. */ + const SSL_OP_COOKIE_EXCHANGE: number; + /** Instructs OpenSSL to add server-hello extension from an early version of the cryptopro draft. */ + const SSL_OP_CRYPTOPRO_TLSEXT_BUG: number; + /** Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability workaround added in OpenSSL 0.9.6d. */ + const SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number; + /** Instructs OpenSSL to always use the tmp_rsa key when performing RSA operations. */ + const SSL_OP_EPHEMERAL_RSA: number; + /** Allows initial connection to servers that do not support RI. */ + const SSL_OP_LEGACY_SERVER_CONNECT: number; + const SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number; + const SSL_OP_MICROSOFT_SESS_ID_BUG: number; + /** Instructs OpenSSL to disable the workaround for a man-in-the-middle protocol-version vulnerability in the SSL 2.0 server implementation. */ + const SSL_OP_MSIE_SSLV2_RSA_PADDING: number; + const SSL_OP_NETSCAPE_CA_DN_BUG: number; + const SSL_OP_NETSCAPE_CHALLENGE_BUG: number; + const SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number; + const SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number; + /** Instructs OpenSSL to disable support for SSL/TLS compression. */ + const SSL_OP_NO_COMPRESSION: number; + const SSL_OP_NO_QUERY_MTU: number; + /** Instructs OpenSSL to always start a new session when performing renegotiation. */ + const SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number; + const SSL_OP_NO_SSLv2: number; + const SSL_OP_NO_SSLv3: number; + const SSL_OP_NO_TICKET: number; + const SSL_OP_NO_TLSv1: number; + const SSL_OP_NO_TLSv1_1: number; + const SSL_OP_NO_TLSv1_2: number; + const SSL_OP_PKCS1_CHECK_1: number; + const SSL_OP_PKCS1_CHECK_2: number; + /** Instructs OpenSSL to always create a new key when using temporary/ephemeral DH parameters. */ + const SSL_OP_SINGLE_DH_USE: number; + /** Instructs OpenSSL to always create a new key when using temporary/ephemeral ECDH parameters. */ + const SSL_OP_SINGLE_ECDH_USE: number; + const SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number; + const SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number; + const SSL_OP_TLS_BLOCK_PADDING_BUG: number; + const SSL_OP_TLS_D5_BUG: number; + /** Instructs OpenSSL to disable version rollback attack detection. */ + const SSL_OP_TLS_ROLLBACK_BUG: number; + + const ENGINE_METHOD_RSA: number; + const ENGINE_METHOD_DSA: number; + const ENGINE_METHOD_DH: number; + const ENGINE_METHOD_RAND: number; + const ENGINE_METHOD_EC: number; + const ENGINE_METHOD_CIPHERS: number; + const ENGINE_METHOD_DIGESTS: number; + const ENGINE_METHOD_PKEY_METHS: number; + const ENGINE_METHOD_PKEY_ASN1_METHS: number; + const ENGINE_METHOD_ALL: number; + const ENGINE_METHOD_NONE: number; + + const DH_CHECK_P_NOT_SAFE_PRIME: number; + const DH_CHECK_P_NOT_PRIME: number; + const DH_UNABLE_TO_CHECK_GENERATOR: number; + const DH_NOT_SUITABLE_GENERATOR: number; + + const ALPN_ENABLED: number; + + const RSA_PKCS1_PADDING: number; + const RSA_SSLV23_PADDING: number; + const RSA_NO_PADDING: number; + const RSA_PKCS1_OAEP_PADDING: number; + const RSA_X931_PADDING: number; + const RSA_PKCS1_PSS_PADDING: number; + /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the digest size when signing or verifying. */ + const RSA_PSS_SALTLEN_DIGEST: number; + /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the maximum permissible value when signing data. */ + const RSA_PSS_SALTLEN_MAX_SIGN: number; + /** Causes the salt length for RSA_PKCS1_PSS_PADDING to be determined automatically when verifying a signature. */ + const RSA_PSS_SALTLEN_AUTO: number; + + const POINT_CONVERSION_COMPRESSED: number; + const POINT_CONVERSION_UNCOMPRESSED: number; + const POINT_CONVERSION_HYBRID: number; + + /** Specifies the built-in default cipher list used by Node.js (colon-separated values). */ + const defaultCoreCipherList: string; + /** Specifies the active default cipher list used by the current Node.js process (colon-separated values). */ + const defaultCipherList: string; + } + + interface HashOptions extends stream.TransformOptions { + /** + * For XOF hash functions such as `shake256`, the + * outputLength option can be used to specify the desired output length in bytes. + */ + outputLength?: number; + } + + /** @deprecated since v10.0.0 */ + const fips: boolean; + + function createHash(algorithm: string, options?: HashOptions): Hash; + function createHmac(algorithm: string, key: BinaryLike, options?: stream.TransformOptions): Hmac; + + type Utf8AsciiLatin1Encoding = "utf8" | "ascii" | "latin1"; + type HexBase64Latin1Encoding = "latin1" | "hex" | "base64"; + type Utf8AsciiBinaryEncoding = "utf8" | "ascii" | "binary"; + type HexBase64BinaryEncoding = "binary" | "base64" | "hex"; + type ECDHKeyFormat = "compressed" | "uncompressed" | "hybrid"; + + class Hash extends stream.Transform { + private constructor(); + copy(): Hash; + update(data: BinaryLike): Hash; + update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Hash; + digest(): Buffer; + digest(encoding: HexBase64Latin1Encoding): string; + } + class Hmac extends stream.Transform { + private constructor(); + update(data: BinaryLike): Hmac; + update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Hmac; + digest(): Buffer; + digest(encoding: HexBase64Latin1Encoding): string; + } + + type KeyObjectType = 'secret' | 'public' | 'private'; + + interface KeyExportOptions { + type: 'pkcs1' | 'spki' | 'pkcs8' | 'sec1'; + format: T; + cipher?: string; + passphrase?: string | Buffer; + } + + class KeyObject { + private constructor(); + asymmetricKeyType?: KeyType; + /** + * For asymmetric keys, this property represents the size of the embedded key in + * bytes. This property is `undefined` for symmetric keys. + */ + asymmetricKeySize?: number; + export(options: KeyExportOptions<'pem'>): string | Buffer; + export(options?: KeyExportOptions<'der'>): Buffer; + symmetricSize?: number; + type: KeyObjectType; + } + + type CipherCCMTypes = 'aes-128-ccm' | 'aes-192-ccm' | 'aes-256-ccm' | 'chacha20-poly1305'; + type CipherGCMTypes = 'aes-128-gcm' | 'aes-192-gcm' | 'aes-256-gcm'; + + type BinaryLike = string | NodeJS.ArrayBufferView; + + type CipherKey = BinaryLike | KeyObject; + + interface CipherCCMOptions extends stream.TransformOptions { + authTagLength: number; + } + interface CipherGCMOptions extends stream.TransformOptions { + authTagLength?: number; + } + /** @deprecated since v10.0.0 use createCipheriv() */ + function createCipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): CipherCCM; + /** @deprecated since v10.0.0 use createCipheriv() */ + function createCipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): CipherGCM; + /** @deprecated since v10.0.0 use createCipheriv() */ + function createCipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Cipher; + + function createCipheriv( + algorithm: CipherCCMTypes, + key: CipherKey, + iv: BinaryLike | null, + options: CipherCCMOptions + ): CipherCCM; + function createCipheriv( + algorithm: CipherGCMTypes, + key: CipherKey, + iv: BinaryLike | null, + options?: CipherGCMOptions + ): CipherGCM; + function createCipheriv( + algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions + ): Cipher; + + class Cipher extends stream.Transform { + private constructor(); + update(data: BinaryLike): Buffer; + update(data: string, input_encoding: Utf8AsciiBinaryEncoding): Buffer; + update(data: NodeJS.ArrayBufferView, input_encoding: undefined, output_encoding: HexBase64BinaryEncoding): string; + update(data: string, input_encoding: Utf8AsciiBinaryEncoding | undefined, output_encoding: HexBase64BinaryEncoding): string; + final(): Buffer; + final(output_encoding: string): string; + setAutoPadding(auto_padding?: boolean): this; + // getAuthTag(): Buffer; + // setAAD(buffer: Buffer): this; // docs only say buffer + } + interface CipherCCM extends Cipher { + setAAD(buffer: Buffer, options: { plaintextLength: number }): this; + getAuthTag(): Buffer; + } + interface CipherGCM extends Cipher { + setAAD(buffer: Buffer, options?: { plaintextLength: number }): this; + getAuthTag(): Buffer; + } + /** @deprecated since v10.0.0 use createDecipheriv() */ + function createDecipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): DecipherCCM; + /** @deprecated since v10.0.0 use createDecipheriv() */ + function createDecipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): DecipherGCM; + /** @deprecated since v10.0.0 use createDecipheriv() */ + function createDecipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Decipher; + + function createDecipheriv( + algorithm: CipherCCMTypes, + key: BinaryLike, + iv: BinaryLike | null, + options: CipherCCMOptions, + ): DecipherCCM; + function createDecipheriv( + algorithm: CipherGCMTypes, + key: BinaryLike, + iv: BinaryLike | null, + options?: CipherGCMOptions, + ): DecipherGCM; + function createDecipheriv(algorithm: string, key: BinaryLike, iv: BinaryLike | null, options?: stream.TransformOptions): Decipher; + + class Decipher extends stream.Transform { + private constructor(); + update(data: NodeJS.ArrayBufferView): Buffer; + update(data: string, input_encoding: HexBase64BinaryEncoding): Buffer; + update(data: NodeJS.ArrayBufferView, input_encoding: HexBase64BinaryEncoding | undefined, output_encoding: Utf8AsciiBinaryEncoding): string; + update(data: string, input_encoding: HexBase64BinaryEncoding | undefined, output_encoding: Utf8AsciiBinaryEncoding): string; + final(): Buffer; + final(output_encoding: string): string; + setAutoPadding(auto_padding?: boolean): this; + // setAuthTag(tag: NodeJS.ArrayBufferView): this; + // setAAD(buffer: NodeJS.ArrayBufferView): this; + } + interface DecipherCCM extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD(buffer: NodeJS.ArrayBufferView, options: { plaintextLength: number }): this; + } + interface DecipherGCM extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD(buffer: NodeJS.ArrayBufferView, options?: { plaintextLength: number }): this; + } + + interface PrivateKeyInput { + key: string | Buffer; + format?: KeyFormat; + type?: 'pkcs1' | 'pkcs8' | 'sec1'; + passphrase?: string | Buffer; + } + + interface PublicKeyInput { + key: string | Buffer; + format?: KeyFormat; + type?: 'pkcs1' | 'spki'; + } + + function createPrivateKey(key: PrivateKeyInput | string | Buffer): KeyObject; + function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject): KeyObject; + function createSecretKey(key: Buffer): KeyObject; + + function createSign(algorithm: string, options?: stream.WritableOptions): Signer; + + interface SigningOptions { + /** + * @See crypto.constants.RSA_PKCS1_PADDING + */ + padding?: number; + saltLength?: number; + } + + interface SignPrivateKeyInput extends PrivateKeyInput, SigningOptions { + } + + type KeyLike = string | Buffer | KeyObject; + + class Signer extends stream.Writable { + private constructor(); + + update(data: BinaryLike): Signer; + update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Signer; + sign(private_key: SignPrivateKeyInput | KeyLike): Buffer; + sign(private_key: SignPrivateKeyInput | KeyLike, output_format: HexBase64Latin1Encoding): string; + } + + function createVerify(algorithm: string, options?: stream.WritableOptions): Verify; + class Verify extends stream.Writable { + private constructor(); + + update(data: BinaryLike): Verify; + update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Verify; + verify(object: object | KeyLike, signature: NodeJS.ArrayBufferView): boolean; + verify(object: object | KeyLike, signature: string, signature_format?: HexBase64Latin1Encoding): boolean; + // https://nodejs.org/api/crypto.html#crypto_verifier_verify_object_signature_signature_format + // The signature field accepts a TypedArray type, but it is only available starting ES2017 + } + function createDiffieHellman(prime_length: number, generator?: number | NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: string, prime_encoding: HexBase64Latin1Encoding): DiffieHellman; + function createDiffieHellman(prime: string, prime_encoding: HexBase64Latin1Encoding, generator: number | NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: string, prime_encoding: HexBase64Latin1Encoding, generator: string, generator_encoding: HexBase64Latin1Encoding): DiffieHellman; + class DiffieHellman { + private constructor(); + generateKeys(): Buffer; + generateKeys(encoding: HexBase64Latin1Encoding): string; + computeSecret(other_public_key: NodeJS.ArrayBufferView): Buffer; + computeSecret(other_public_key: string, input_encoding: HexBase64Latin1Encoding): Buffer; + computeSecret(other_public_key: NodeJS.ArrayBufferView, output_encoding: HexBase64Latin1Encoding): string; + computeSecret(other_public_key: string, input_encoding: HexBase64Latin1Encoding, output_encoding: HexBase64Latin1Encoding): string; + getPrime(): Buffer; + getPrime(encoding: HexBase64Latin1Encoding): string; + getGenerator(): Buffer; + getGenerator(encoding: HexBase64Latin1Encoding): string; + getPublicKey(): Buffer; + getPublicKey(encoding: HexBase64Latin1Encoding): string; + getPrivateKey(): Buffer; + getPrivateKey(encoding: HexBase64Latin1Encoding): string; + setPublicKey(public_key: NodeJS.ArrayBufferView): void; + setPublicKey(public_key: string, encoding: string): void; + setPrivateKey(private_key: NodeJS.ArrayBufferView): void; + setPrivateKey(private_key: string, encoding: string): void; + verifyError: number; + } + function getDiffieHellman(group_name: string): DiffieHellman; + function pbkdf2( + password: BinaryLike, + salt: BinaryLike, + iterations: number, + keylen: number, + digest: string, + callback: (err: Error | null, derivedKey: Buffer) => any, + ): void; + function pbkdf2Sync(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string): Buffer; + + function randomBytes(size: number): Buffer; + function randomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void; + function pseudoRandomBytes(size: number): Buffer; + function pseudoRandomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void; + + function randomFillSync(buffer: T, offset?: number, size?: number): T; + function randomFill(buffer: T, callback: (err: Error | null, buf: T) => void): void; + function randomFill(buffer: T, offset: number, callback: (err: Error | null, buf: T) => void): void; + function randomFill(buffer: T, offset: number, size: number, callback: (err: Error | null, buf: T) => void): void; + + interface ScryptOptions { + N?: number; + r?: number; + p?: number; + maxmem?: number; + } + function scrypt( + password: BinaryLike, + salt: BinaryLike, + keylen: number, callback: (err: Error | null, derivedKey: Buffer) => void, + ): void; + function scrypt( + password: BinaryLike, + salt: BinaryLike, + keylen: number, + options: ScryptOptions, + callback: (err: Error | null, derivedKey: Buffer) => void, + ): void; + function scryptSync(password: BinaryLike, salt: BinaryLike, keylen: number, options?: ScryptOptions): Buffer; + + interface RsaPublicKey { + key: KeyLike; + padding?: number; + } + interface RsaPrivateKey { + key: KeyLike; + passphrase?: string; + /** + * @default 'sha1' + */ + oaepHash?: string; + oaepLabel?: NodeJS.TypedArray; + padding?: number; + } + function publicEncrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + function publicDecrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + function privateDecrypt(private_key: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + function privateEncrypt(private_key: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + function getCiphers(): string[]; + function getCurves(): string[]; + function getHashes(): string[]; + class ECDH { + private constructor(); + static convertKey( + key: BinaryLike, + curve: string, + inputEncoding?: HexBase64Latin1Encoding, + outputEncoding?: "latin1" | "hex" | "base64", + format?: "uncompressed" | "compressed" | "hybrid", + ): Buffer | string; + generateKeys(): Buffer; + generateKeys(encoding: HexBase64Latin1Encoding, format?: ECDHKeyFormat): string; + computeSecret(other_public_key: NodeJS.ArrayBufferView): Buffer; + computeSecret(other_public_key: string, input_encoding: HexBase64Latin1Encoding): Buffer; + computeSecret(other_public_key: NodeJS.ArrayBufferView, output_encoding: HexBase64Latin1Encoding): string; + computeSecret(other_public_key: string, input_encoding: HexBase64Latin1Encoding, output_encoding: HexBase64Latin1Encoding): string; + getPrivateKey(): Buffer; + getPrivateKey(encoding: HexBase64Latin1Encoding): string; + getPublicKey(): Buffer; + getPublicKey(encoding: HexBase64Latin1Encoding, format?: ECDHKeyFormat): string; + setPrivateKey(private_key: NodeJS.ArrayBufferView): void; + setPrivateKey(private_key: string, encoding: HexBase64Latin1Encoding): void; + } + function createECDH(curve_name: string): ECDH; + function timingSafeEqual(a: NodeJS.ArrayBufferView, b: NodeJS.ArrayBufferView): boolean; + /** @deprecated since v10.0.0 */ + const DEFAULT_ENCODING: string; + + type KeyType = 'rsa' | 'dsa' | 'ec'; + type KeyFormat = 'pem' | 'der'; + + interface BasePrivateKeyEncodingOptions { + format: T; + cipher?: string; + passphrase?: string; + } + + interface KeyPairKeyObjectResult { + publicKey: KeyObject; + privateKey: KeyObject; + } + + interface ECKeyPairKeyObjectOptions { + /** + * Name of the curve to use. + */ + namedCurve: string; + } + + interface RSAKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + + /** + * @default 0x10001 + */ + publicExponent?: number; + } + + interface DSAKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + + /** + * Size of q in bits + */ + divisorLength: number; + } + + interface RSAKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * @default 0x10001 + */ + publicExponent?: number; + + publicKeyEncoding: { + type: 'pkcs1' | 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs1' | 'pkcs8'; + }; + } + + interface DSAKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Size of q in bits + */ + divisorLength: number; + + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + + interface ECKeyPairOptions { + /** + * Name of the curve to use. + */ + namedCurve: string; + + publicKeyEncoding: { + type: 'pkcs1' | 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'sec1' | 'pkcs8'; + }; + } + + interface KeyPairSyncResult { + publicKey: T1; + privateKey: T2; + } + + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + + namespace generateKeyPair { + function __promisify__(type: "rsa", options: RSAKeyPairOptions<'pem', 'pem'>): Promise<{ publicKey: string, privateKey: string }>; + function __promisify__(type: "rsa", options: RSAKeyPairOptions<'pem', 'der'>): Promise<{ publicKey: string, privateKey: Buffer }>; + function __promisify__(type: "rsa", options: RSAKeyPairOptions<'der', 'pem'>): Promise<{ publicKey: Buffer, privateKey: string }>; + function __promisify__(type: "rsa", options: RSAKeyPairOptions<'der', 'der'>): Promise<{ publicKey: Buffer, privateKey: Buffer }>; + function __promisify__(type: "rsa", options: RSAKeyPairKeyObjectOptions): Promise; + + function __promisify__(type: "dsa", options: DSAKeyPairOptions<'pem', 'pem'>): Promise<{ publicKey: string, privateKey: string }>; + function __promisify__(type: "dsa", options: DSAKeyPairOptions<'pem', 'der'>): Promise<{ publicKey: string, privateKey: Buffer }>; + function __promisify__(type: "dsa", options: DSAKeyPairOptions<'der', 'pem'>): Promise<{ publicKey: Buffer, privateKey: string }>; + function __promisify__(type: "dsa", options: DSAKeyPairOptions<'der', 'der'>): Promise<{ publicKey: Buffer, privateKey: Buffer }>; + function __promisify__(type: "dsa", options: DSAKeyPairKeyObjectOptions): Promise; + + function __promisify__(type: "ec", options: ECKeyPairOptions<'pem', 'pem'>): Promise<{ publicKey: string, privateKey: string }>; + function __promisify__(type: "ec", options: ECKeyPairOptions<'pem', 'der'>): Promise<{ publicKey: string, privateKey: Buffer }>; + function __promisify__(type: "ec", options: ECKeyPairOptions<'der', 'pem'>): Promise<{ publicKey: Buffer, privateKey: string }>; + function __promisify__(type: "ec", options: ECKeyPairOptions<'der', 'der'>): Promise<{ publicKey: Buffer, privateKey: Buffer }>; + function __promisify__(type: "ec", options: ECKeyPairKeyObjectOptions): Promise; + } + + /** + * Calculates and returns the signature for `data` using the given private key and + * algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is + * dependent upon the key type (especially Ed25519 and Ed448). + * + * If `key` is not a [`KeyObject`][], this function behaves as if `key` had been + * passed to [`crypto.createPrivateKey()`][]. + */ + function sign(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | SignPrivateKeyInput): Buffer; + + interface VerifyKeyWithOptions extends KeyObject, SigningOptions { + } + + /** + * Calculates and returns the signature for `data` using the given private key and + * algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is + * dependent upon the key type (especially Ed25519 and Ed448). + * + * If `key` is not a [`KeyObject`][], this function behaves as if `key` had been + * passed to [`crypto.createPublicKey()`][]. + */ + function verify(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | VerifyKeyWithOptions, signature: NodeJS.ArrayBufferView): boolean; +} diff --git a/themes/piratecare/node_modules/@types/node/dgram.d.ts b/themes/piratecare/node_modules/@types/node/dgram.d.ts new file mode 100644 index 0000000..91fb0cb --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/dgram.d.ts @@ -0,0 +1,141 @@ +declare module "dgram" { + import { AddressInfo } from "net"; + import * as dns from "dns"; + import * as events from "events"; + + interface RemoteInfo { + address: string; + family: 'IPv4' | 'IPv6'; + port: number; + size: number; + } + + interface BindOptions { + port?: number; + address?: string; + exclusive?: boolean; + fd?: number; + } + + type SocketType = "udp4" | "udp6"; + + interface SocketOptions { + type: SocketType; + reuseAddr?: boolean; + /** + * @default false + */ + ipv6Only?: boolean; + recvBufferSize?: number; + sendBufferSize?: number; + lookup?: (hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void; + } + + function createSocket(type: SocketType, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + function createSocket(options: SocketOptions, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + + class Socket extends events.EventEmitter { + addMembership(multicastAddress: string, multicastInterface?: string): void; + address(): AddressInfo; + bind(port?: number, address?: string, callback?: () => void): void; + bind(port?: number, callback?: () => void): void; + bind(callback?: () => void): void; + bind(options: BindOptions, callback?: () => void): void; + close(callback?: () => void): void; + connect(port: number, address?: string, callback?: () => void): void; + connect(port: number, callback: () => void): void; + disconnect(): void; + dropMembership(multicastAddress: string, multicastInterface?: string): void; + getRecvBufferSize(): number; + getSendBufferSize(): number; + ref(): this; + remoteAddress(): AddressInfo; + send(msg: string | Uint8Array | any[], port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array | any[], port?: number, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array | any[], callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, port?: number, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, callback?: (error: Error | null, bytes: number) => void): void; + setBroadcast(flag: boolean): void; + setMulticastInterface(multicastInterface: string): void; + setMulticastLoopback(flag: boolean): void; + setMulticastTTL(ttl: number): void; + setRecvBufferSize(size: number): void; + setSendBufferSize(size: number): void; + setTTL(ttl: number): void; + unref(): this; + /** + * Tells the kernel to join a source-specific multicast channel at the given + * `sourceAddress` and `groupAddress`, using the `multicastInterface` with the + * `IP_ADD_SOURCE_MEMBERSHIP` socket option. + * If the `multicastInterface` argument + * is not specified, the operating system will choose one interface and will add + * membership to it. + * To add membership to every available interface, call + * `socket.addSourceSpecificMembership()` multiple times, once per interface. + */ + addSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; + + /** + * Instructs the kernel to leave a source-specific multicast channel at the given + * `sourceAddress` and `groupAddress` using the `IP_DROP_SOURCE_MEMBERSHIP` + * socket option. This method is automatically called by the kernel when the + * socket is closed or the process terminates, so most apps will never have + * reason to call this. + * + * If `multicastInterface` is not specified, the operating system will attempt to + * drop membership on all valid interfaces. + */ + dropSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; + + /** + * events.EventEmitter + * 1. close + * 2. connect + * 3. error + * 4. listening + * 5. message + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "close", listener: () => void): this; + addListener(event: "connect", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "listening", listener: () => void): this; + addListener(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "close"): boolean; + emit(event: "connect"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "listening"): boolean; + emit(event: "message", msg: Buffer, rinfo: RemoteInfo): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "close", listener: () => void): this; + on(event: "connect", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "listening", listener: () => void): this; + on(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "close", listener: () => void): this; + once(event: "connect", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "listening", listener: () => void): this; + once(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "close", listener: () => void): this; + prependListener(event: "connect", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "listening", listener: () => void): this; + prependListener(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "connect", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "listening", listener: () => void): this; + prependOnceListener(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + } +} diff --git a/themes/piratecare/node_modules/@types/node/dns.d.ts b/themes/piratecare/node_modules/@types/node/dns.d.ts new file mode 100644 index 0000000..d2b0505 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/dns.d.ts @@ -0,0 +1,366 @@ +declare module "dns" { + // Supported getaddrinfo flags. + const ADDRCONFIG: number; + const V4MAPPED: number; + + interface LookupOptions { + family?: number; + hints?: number; + all?: boolean; + verbatim?: boolean; + } + + interface LookupOneOptions extends LookupOptions { + all?: false; + } + + interface LookupAllOptions extends LookupOptions { + all: true; + } + + interface LookupAddress { + address: string; + family: number; + } + + function lookup(hostname: string, family: number, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + function lookup(hostname: string, options: LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + function lookup(hostname: string, options: LookupAllOptions, callback: (err: NodeJS.ErrnoException | null, addresses: LookupAddress[]) => void): void; + function lookup(hostname: string, options: LookupOptions, callback: (err: NodeJS.ErrnoException | null, address: string | LookupAddress[], family: number) => void): void; + function lookup(hostname: string, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace lookup { + function __promisify__(hostname: string, options: LookupAllOptions): Promise; + function __promisify__(hostname: string, options?: LookupOneOptions | number): Promise; + function __promisify__(hostname: string, options: LookupOptions): Promise; + } + + function lookupService(address: string, port: number, callback: (err: NodeJS.ErrnoException | null, hostname: string, service: string) => void): void; + + namespace lookupService { + function __promisify__(address: string, port: number): Promise<{ hostname: string, service: string }>; + } + + interface ResolveOptions { + ttl: boolean; + } + + interface ResolveWithTtlOptions extends ResolveOptions { + ttl: true; + } + + interface RecordWithTtl { + address: string; + ttl: number; + } + + /** @deprecated Use AnyARecord or AnyAaaaRecord instead. */ + type AnyRecordWithTtl = AnyARecord | AnyAaaaRecord; + + interface AnyARecord extends RecordWithTtl { + type: "A"; + } + + interface AnyAaaaRecord extends RecordWithTtl { + type: "AAAA"; + } + + interface MxRecord { + priority: number; + exchange: string; + } + + interface AnyMxRecord extends MxRecord { + type: "MX"; + } + + interface NaptrRecord { + flags: string; + service: string; + regexp: string; + replacement: string; + order: number; + preference: number; + } + + interface AnyNaptrRecord extends NaptrRecord { + type: "NAPTR"; + } + + interface SoaRecord { + nsname: string; + hostmaster: string; + serial: number; + refresh: number; + retry: number; + expire: number; + minttl: number; + } + + interface AnySoaRecord extends SoaRecord { + type: "SOA"; + } + + interface SrvRecord { + priority: number; + weight: number; + port: number; + name: string; + } + + interface AnySrvRecord extends SrvRecord { + type: "SRV"; + } + + interface AnyTxtRecord { + type: "TXT"; + entries: string[]; + } + + interface AnyNsRecord { + type: "NS"; + value: string; + } + + interface AnyPtrRecord { + type: "PTR"; + value: string; + } + + interface AnyCnameRecord { + type: "CNAME"; + value: string; + } + + type AnyRecord = AnyARecord | + AnyAaaaRecord | + AnyCnameRecord | + AnyMxRecord | + AnyNaptrRecord | + AnyNsRecord | + AnyPtrRecord | + AnySoaRecord | + AnySrvRecord | + AnyTxtRecord; + + function resolve(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve(hostname: string, rrtype: "A", callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve(hostname: string, rrtype: "AAAA", callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve(hostname: string, rrtype: "ANY", callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void): void; + function resolve(hostname: string, rrtype: "CNAME", callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve(hostname: string, rrtype: "MX", callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void): void; + function resolve(hostname: string, rrtype: "NAPTR", callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void): void; + function resolve(hostname: string, rrtype: "NS", callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve(hostname: string, rrtype: "PTR", callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve(hostname: string, rrtype: "SOA", callback: (err: NodeJS.ErrnoException | null, addresses: SoaRecord) => void): void; + function resolve(hostname: string, rrtype: "SRV", callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void): void; + function resolve(hostname: string, rrtype: "TXT", callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void): void; + function resolve( + hostname: string, + rrtype: string, + callback: (err: NodeJS.ErrnoException | null, addresses: string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | string[][] | AnyRecord[]) => void, + ): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace resolve { + function __promisify__(hostname: string, rrtype?: "A" | "AAAA" | "CNAME" | "NS" | "PTR"): Promise; + function __promisify__(hostname: string, rrtype: "ANY"): Promise; + function __promisify__(hostname: string, rrtype: "MX"): Promise; + function __promisify__(hostname: string, rrtype: "NAPTR"): Promise; + function __promisify__(hostname: string, rrtype: "SOA"): Promise; + function __promisify__(hostname: string, rrtype: "SRV"): Promise; + function __promisify__(hostname: string, rrtype: "TXT"): Promise; + function __promisify__(hostname: string, rrtype: string): Promise; + } + + function resolve4(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve4(hostname: string, options: ResolveWithTtlOptions, callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void): void; + function resolve4(hostname: string, options: ResolveOptions, callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace resolve4 { + function __promisify__(hostname: string): Promise; + function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise; + function __promisify__(hostname: string, options?: ResolveOptions): Promise; + } + + function resolve6(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + function resolve6(hostname: string, options: ResolveWithTtlOptions, callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void): void; + function resolve6(hostname: string, options: ResolveOptions, callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace resolve6 { + function __promisify__(hostname: string): Promise; + function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise; + function __promisify__(hostname: string, options?: ResolveOptions): Promise; + } + + function resolveCname(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + namespace resolveCname { + function __promisify__(hostname: string): Promise; + } + + function resolveMx(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void): void; + namespace resolveMx { + function __promisify__(hostname: string): Promise; + } + + function resolveNaptr(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void): void; + namespace resolveNaptr { + function __promisify__(hostname: string): Promise; + } + + function resolveNs(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + namespace resolveNs { + function __promisify__(hostname: string): Promise; + } + + function resolvePtr(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + namespace resolvePtr { + function __promisify__(hostname: string): Promise; + } + + function resolveSoa(hostname: string, callback: (err: NodeJS.ErrnoException | null, address: SoaRecord) => void): void; + namespace resolveSoa { + function __promisify__(hostname: string): Promise; + } + + function resolveSrv(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void): void; + namespace resolveSrv { + function __promisify__(hostname: string): Promise; + } + + function resolveTxt(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void): void; + namespace resolveTxt { + function __promisify__(hostname: string): Promise; + } + + function resolveAny(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void): void; + namespace resolveAny { + function __promisify__(hostname: string): Promise; + } + + function reverse(ip: string, callback: (err: NodeJS.ErrnoException | null, hostnames: string[]) => void): void; + function setServers(servers: ReadonlyArray): void; + function getServers(): string[]; + + // Error codes + const NODATA: string; + const FORMERR: string; + const SERVFAIL: string; + const NOTFOUND: string; + const NOTIMP: string; + const REFUSED: string; + const BADQUERY: string; + const BADNAME: string; + const BADFAMILY: string; + const BADRESP: string; + const CONNREFUSED: string; + const TIMEOUT: string; + const EOF: string; + const FILE: string; + const NOMEM: string; + const DESTRUCTION: string; + const BADSTR: string; + const BADFLAGS: string; + const NONAME: string; + const BADHINTS: string; + const NOTINITIALIZED: string; + const LOADIPHLPAPI: string; + const ADDRGETNETWORKPARAMS: string; + const CANCELLED: string; + + class Resolver { + getServers: typeof getServers; + setServers: typeof setServers; + resolve: typeof resolve; + resolve4: typeof resolve4; + resolve6: typeof resolve6; + resolveAny: typeof resolveAny; + resolveCname: typeof resolveCname; + resolveMx: typeof resolveMx; + resolveNaptr: typeof resolveNaptr; + resolveNs: typeof resolveNs; + resolvePtr: typeof resolvePtr; + resolveSoa: typeof resolveSoa; + resolveSrv: typeof resolveSrv; + resolveTxt: typeof resolveTxt; + reverse: typeof reverse; + cancel(): void; + } + + namespace promises { + function getServers(): string[]; + + function lookup(hostname: string, family: number): Promise; + function lookup(hostname: string, options: LookupOneOptions): Promise; + function lookup(hostname: string, options: LookupAllOptions): Promise; + function lookup(hostname: string, options: LookupOptions): Promise; + function lookup(hostname: string): Promise; + + function lookupService(address: string, port: number): Promise<{ hostname: string, service: string }>; + + function resolve(hostname: string): Promise; + function resolve(hostname: string, rrtype: "A"): Promise; + function resolve(hostname: string, rrtype: "AAAA"): Promise; + function resolve(hostname: string, rrtype: "ANY"): Promise; + function resolve(hostname: string, rrtype: "CNAME"): Promise; + function resolve(hostname: string, rrtype: "MX"): Promise; + function resolve(hostname: string, rrtype: "NAPTR"): Promise; + function resolve(hostname: string, rrtype: "NS"): Promise; + function resolve(hostname: string, rrtype: "PTR"): Promise; + function resolve(hostname: string, rrtype: "SOA"): Promise; + function resolve(hostname: string, rrtype: "SRV"): Promise; + function resolve(hostname: string, rrtype: "TXT"): Promise; + function resolve(hostname: string, rrtype: string): Promise; + + function resolve4(hostname: string): Promise; + function resolve4(hostname: string, options: ResolveWithTtlOptions): Promise; + function resolve4(hostname: string, options: ResolveOptions): Promise; + + function resolve6(hostname: string): Promise; + function resolve6(hostname: string, options: ResolveWithTtlOptions): Promise; + function resolve6(hostname: string, options: ResolveOptions): Promise; + + function resolveAny(hostname: string): Promise; + + function resolveCname(hostname: string): Promise; + + function resolveMx(hostname: string): Promise; + + function resolveNaptr(hostname: string): Promise; + + function resolveNs(hostname: string): Promise; + + function resolvePtr(hostname: string): Promise; + + function resolveSoa(hostname: string): Promise; + + function resolveSrv(hostname: string): Promise; + + function resolveTxt(hostname: string): Promise; + + function reverse(ip: string): Promise; + + function setServers(servers: ReadonlyArray): void; + + class Resolver { + getServers: typeof getServers; + resolve: typeof resolve; + resolve4: typeof resolve4; + resolve6: typeof resolve6; + resolveAny: typeof resolveAny; + resolveCname: typeof resolveCname; + resolveMx: typeof resolveMx; + resolveNaptr: typeof resolveNaptr; + resolveNs: typeof resolveNs; + resolvePtr: typeof resolvePtr; + resolveSoa: typeof resolveSoa; + resolveSrv: typeof resolveSrv; + resolveTxt: typeof resolveTxt; + reverse: typeof reverse; + setServers: typeof setServers; + } + } +} diff --git a/themes/piratecare/node_modules/@types/node/domain.d.ts b/themes/piratecare/node_modules/@types/node/domain.d.ts new file mode 100644 index 0000000..c7fa9b8 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/domain.d.ts @@ -0,0 +1,16 @@ +declare module "domain" { + import { EventEmitter } from "events"; + + class Domain extends EventEmitter implements NodeJS.Domain { + run(fn: (...args: any[]) => T, ...args: any[]): T; + add(emitter: EventEmitter | NodeJS.Timer): void; + remove(emitter: EventEmitter | NodeJS.Timer): void; + bind(cb: T): T; + intercept(cb: T): T; + members: Array; + enter(): void; + exit(): void; + } + + function create(): Domain; +} diff --git a/themes/piratecare/node_modules/@types/node/events.d.ts b/themes/piratecare/node_modules/@types/node/events.d.ts new file mode 100644 index 0000000..b07defc --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/events.d.ts @@ -0,0 +1,50 @@ +declare module "events" { + interface EventEmitterOptions { + /** + * Enables automatic capturing of promise rejection. + */ + captureRejections?: boolean; + } + + interface NodeEventTarget { + once(event: string | symbol, listener: (...args: any[]) => void): this; + } + + interface DOMEventTarget { + addEventListener(event: string, listener: (...args: any[]) => void, opts?: { once: boolean }): any; + } + + namespace EventEmitter { + function once(emitter: NodeEventTarget, event: string | symbol): Promise; + function once(emitter: DOMEventTarget, event: string): Promise; + function on(emitter: EventEmitter, event: string): AsyncIterableIterator; + const captureRejectionSymbol: unique symbol; + + /** + * This symbol shall be used to install a listener for only monitoring `'error'` + * events. Listeners installed using this symbol are called before the regular + * `'error'` listeners are called. + * + * Installing a listener using this symbol does not change the behavior once an + * `'error'` event is emitted, therefore the process will still crash if no + * regular `'error'` listener is installed. + */ + const errorMonitor: unique symbol; + /** + * Sets or gets the default captureRejection value for all emitters. + */ + let captureRejections: boolean; + + interface EventEmitter extends NodeJS.EventEmitter { + } + + class EventEmitter { + constructor(options?: EventEmitterOptions); + /** @deprecated since v4.0.0 */ + static listenerCount(emitter: EventEmitter, event: string | symbol): number; + static defaultMaxListeners: number; + } + } + + export = EventEmitter; +} diff --git a/themes/piratecare/node_modules/@types/node/fs.d.ts b/themes/piratecare/node_modules/@types/node/fs.d.ts new file mode 100644 index 0000000..c5ad15a --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/fs.d.ts @@ -0,0 +1,2458 @@ +declare module "fs" { + import * as stream from "stream"; + import * as events from "events"; + import { URL } from "url"; + + /** + * Valid types for path values in "fs". + */ + type PathLike = string | Buffer | URL; + + type NoParamCallback = (err: NodeJS.ErrnoException | null) => void; + + interface StatsBase { + isFile(): boolean; + isDirectory(): boolean; + isBlockDevice(): boolean; + isCharacterDevice(): boolean; + isSymbolicLink(): boolean; + isFIFO(): boolean; + isSocket(): boolean; + + dev: number; + ino: number; + mode: number; + nlink: number; + uid: number; + gid: number; + rdev: number; + size: number; + blksize: number; + blocks: number; + atimeMs: number; + mtimeMs: number; + ctimeMs: number; + birthtimeMs: number; + atime: Date; + mtime: Date; + ctime: Date; + birthtime: Date; + } + + interface Stats extends StatsBase { + } + + class Stats { + } + + class Dirent { + isFile(): boolean; + isDirectory(): boolean; + isBlockDevice(): boolean; + isCharacterDevice(): boolean; + isSymbolicLink(): boolean; + isFIFO(): boolean; + isSocket(): boolean; + name: string; + } + + /** + * A class representing a directory stream. + */ + class Dir { + readonly path: string; + + /** + * Asynchronously iterates over the directory via `readdir(3)` until all entries have been read. + */ + [Symbol.asyncIterator](): AsyncIterableIterator; + + /** + * Asynchronously close the directory's underlying resource handle. + * Subsequent reads will result in errors. + */ + close(): Promise; + close(cb: NoParamCallback): void; + + /** + * Synchronously close the directory's underlying resource handle. + * Subsequent reads will result in errors. + */ + closeSync(): void; + + /** + * Asynchronously read the next directory entry via `readdir(3)` as an `Dirent`. + * After the read is completed, a value is returned that will be resolved with an `Dirent`, or `null` if there are no more directory entries to read. + * Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms. + */ + read(): Promise; + read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void; + + /** + * Synchronously read the next directory entry via `readdir(3)` as a `Dirent`. + * If there are no more directory entries to read, null will be returned. + * Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms. + */ + readSync(): Dirent; + } + + interface FSWatcher extends events.EventEmitter { + close(): void; + + /** + * events.EventEmitter + * 1. change + * 2. error + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this; + addListener(event: "error", listener: (error: Error) => void): this; + addListener(event: "close", listener: () => void): this; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this; + on(event: "error", listener: (error: Error) => void): this; + on(event: "close", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this; + once(event: "error", listener: (error: Error) => void): this; + once(event: "close", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this; + prependListener(event: "error", listener: (error: Error) => void): this; + prependListener(event: "close", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this; + prependOnceListener(event: "error", listener: (error: Error) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + } + + class ReadStream extends stream.Readable { + close(): void; + bytesRead: number; + path: string | Buffer; + + /** + * events.EventEmitter + * 1. open + * 2. close + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "open", listener: (fd: number) => void): this; + addListener(event: "close", listener: () => void): this; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "open", listener: (fd: number) => void): this; + on(event: "close", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "open", listener: (fd: number) => void): this; + once(event: "close", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "open", listener: (fd: number) => void): this; + prependListener(event: "close", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "open", listener: (fd: number) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + } + + class WriteStream extends stream.Writable { + close(): void; + bytesWritten: number; + path: string | Buffer; + + /** + * events.EventEmitter + * 1. open + * 2. close + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "open", listener: (fd: number) => void): this; + addListener(event: "close", listener: () => void): this; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "open", listener: (fd: number) => void): this; + on(event: "close", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "open", listener: (fd: number) => void): this; + once(event: "close", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "open", listener: (fd: number) => void): this; + prependListener(event: "close", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "open", listener: (fd: number) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + } + + /** + * Asynchronous rename(2) - Change the name or location of a file or directory. + * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace rename { + /** + * Asynchronous rename(2) - Change the name or location of a file or directory. + * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(oldPath: PathLike, newPath: PathLike): Promise; + } + + /** + * Synchronous rename(2) - Change the name or location of a file or directory. + * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function renameSync(oldPath: PathLike, newPath: PathLike): void; + + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param len If not specified, defaults to `0`. + */ + function truncate(path: PathLike, len: number | undefined | null, callback: NoParamCallback): void; + + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function truncate(path: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace truncate { + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param len If not specified, defaults to `0`. + */ + function __promisify__(path: PathLike, len?: number | null): Promise; + } + + /** + * Synchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param len If not specified, defaults to `0`. + */ + function truncateSync(path: PathLike, len?: number | null): void; + + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + * @param len If not specified, defaults to `0`. + */ + function ftruncate(fd: number, len: number | undefined | null, callback: NoParamCallback): void; + + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + */ + function ftruncate(fd: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace ftruncate { + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + * @param len If not specified, defaults to `0`. + */ + function __promisify__(fd: number, len?: number | null): Promise; + } + + /** + * Synchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + * @param len If not specified, defaults to `0`. + */ + function ftruncateSync(fd: number, len?: number | null): void; + + /** + * Asynchronous chown(2) - Change ownership of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace chown { + /** + * Asynchronous chown(2) - Change ownership of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, uid: number, gid: number): Promise; + } + + /** + * Synchronous chown(2) - Change ownership of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function chownSync(path: PathLike, uid: number, gid: number): void; + + /** + * Asynchronous fchown(2) - Change ownership of a file. + * @param fd A file descriptor. + */ + function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace fchown { + /** + * Asynchronous fchown(2) - Change ownership of a file. + * @param fd A file descriptor. + */ + function __promisify__(fd: number, uid: number, gid: number): Promise; + } + + /** + * Synchronous fchown(2) - Change ownership of a file. + * @param fd A file descriptor. + */ + function fchownSync(fd: number, uid: number, gid: number): void; + + /** + * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace lchown { + /** + * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, uid: number, gid: number): Promise; + } + + /** + * Synchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function lchownSync(path: PathLike, uid: number, gid: number): void; + + /** + * Asynchronous chmod(2) - Change permissions of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function chmod(path: PathLike, mode: string | number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace chmod { + /** + * Asynchronous chmod(2) - Change permissions of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(path: PathLike, mode: string | number): Promise; + } + + /** + * Synchronous chmod(2) - Change permissions of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function chmodSync(path: PathLike, mode: string | number): void; + + /** + * Asynchronous fchmod(2) - Change permissions of a file. + * @param fd A file descriptor. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function fchmod(fd: number, mode: string | number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace fchmod { + /** + * Asynchronous fchmod(2) - Change permissions of a file. + * @param fd A file descriptor. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(fd: number, mode: string | number): Promise; + } + + /** + * Synchronous fchmod(2) - Change permissions of a file. + * @param fd A file descriptor. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function fchmodSync(fd: number, mode: string | number): void; + + /** + * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function lchmod(path: PathLike, mode: string | number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace lchmod { + /** + * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(path: PathLike, mode: string | number): Promise; + } + + /** + * Synchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function lchmodSync(path: PathLike, mode: string | number): void; + + /** + * Asynchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace stat { + /** + * Asynchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike): Promise; + } + + /** + * Synchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function statSync(path: PathLike): Stats; + + /** + * Asynchronous fstat(2) - Get file status. + * @param fd A file descriptor. + */ + function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace fstat { + /** + * Asynchronous fstat(2) - Get file status. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + + /** + * Synchronous fstat(2) - Get file status. + * @param fd A file descriptor. + */ + function fstatSync(fd: number): Stats; + + /** + * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace lstat { + /** + * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike): Promise; + } + + /** + * Synchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function lstatSync(path: PathLike): Stats; + + /** + * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file. + * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace link { + /** + * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file. + * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(existingPath: PathLike, newPath: PathLike): Promise; + } + + /** + * Synchronous link(2) - Create a new link (also known as a hard link) to an existing file. + * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function linkSync(existingPath: PathLike, newPath: PathLike): void; + + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms). + * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path. + */ + function symlink(target: PathLike, path: PathLike, type: symlink.Type | undefined | null, callback: NoParamCallback): void; + + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + */ + function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace symlink { + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms). + * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path. + */ + function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise; + + type Type = "dir" | "file" | "junction"; + } + + /** + * Synchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms). + * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path. + */ + function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink( + path: PathLike, + options: { encoding?: BufferEncoding | null } | BufferEncoding | undefined | null, + callback: (err: NodeJS.ErrnoException | null, linkString: string) => void + ): void; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options: { encoding: "buffer" } | "buffer", callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void): void; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options: { encoding?: string | null } | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void): void; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function readlink(path: PathLike, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace readlink { + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): Promise; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: { encoding: "buffer" } | "buffer"): Promise; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: { encoding?: string | null } | string | null): Promise; + } + + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlinkSync(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): string; + + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlinkSync(path: PathLike, options: { encoding: "buffer" } | "buffer"): Buffer; + + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlinkSync(path: PathLike, options?: { encoding?: string | null } | string | null): string | Buffer; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath( + path: PathLike, + options: { encoding?: BufferEncoding | null } | BufferEncoding | undefined | null, + callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void + ): void; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options: { encoding: "buffer" } | "buffer", callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options: { encoding?: string | null } | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function realpath(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace realpath { + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): Promise; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: { encoding: "buffer" } | "buffer"): Promise; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: { encoding?: string | null } | string | null): Promise; + + function native( + path: PathLike, + options: { encoding?: BufferEncoding | null } | BufferEncoding | undefined | null, + callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void + ): void; + function native(path: PathLike, options: { encoding: "buffer" } | "buffer", callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void; + function native(path: PathLike, options: { encoding?: string | null } | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void; + function native(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + } + + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpathSync(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): string; + + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpathSync(path: PathLike, options: { encoding: "buffer" } | "buffer"): Buffer; + + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpathSync(path: PathLike, options?: { encoding?: string | null } | string | null): string | Buffer; + + namespace realpathSync { + function native(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): string; + function native(path: PathLike, options: { encoding: "buffer" } | "buffer"): Buffer; + function native(path: PathLike, options?: { encoding?: string | null } | string | null): string | Buffer; + } + + /** + * Asynchronous unlink(2) - delete a name and possibly the file it refers to. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function unlink(path: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace unlink { + /** + * Asynchronous unlink(2) - delete a name and possibly the file it refers to. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike): Promise; + } + + /** + * Synchronous unlink(2) - delete a name and possibly the file it refers to. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function unlinkSync(path: PathLike): void; + + interface RmDirOptions { + /** + * If `true`, perform a recursive directory removal. In + * recursive mode, errors are not reported if `path` does not exist, and + * operations are retried on failure. + * @experimental + * @default false + */ + recursive?: boolean; + } + + interface RmDirAsyncOptions extends RmDirOptions { + /** + * The amount of time in milliseconds to wait between retries. + * This option is ignored if the `recursive` option is not `true`. + * @default 100 + */ + retryDelay?: number; + /** + * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or + * `EPERM` error is encountered, Node.js will retry the operation with a linear + * backoff wait of `retryDelay` ms longer on each try. This option represents the + * number of retries. This option is ignored if the `recursive` option is not + * `true`. + * @default 0 + */ + maxRetries?: number; + } + + /** + * Asynchronous rmdir(2) - delete a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function rmdir(path: PathLike, callback: NoParamCallback): void; + function rmdir(path: PathLike, options: RmDirAsyncOptions, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace rmdir { + /** + * Asynchronous rmdir(2) - delete a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, options?: RmDirAsyncOptions): Promise; + } + + /** + * Synchronous rmdir(2) - delete a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function rmdirSync(path: PathLike, options?: RmDirOptions): void; + + interface MakeDirectoryOptions { + /** + * Indicates whether parent folders should be created. + * @default false + */ + recursive?: boolean; + /** + * A file mode. If a string is passed, it is parsed as an octal integer. If not specified + * @default 0o777. + */ + mode?: number; + } + + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdir(path: PathLike, options: number | string | MakeDirectoryOptions | undefined | null, callback: NoParamCallback): void; + + /** + * Asynchronous mkdir(2) - create a directory with a mode of `0o777`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function mkdir(path: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace mkdir { + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__(path: PathLike, options?: number | string | MakeDirectoryOptions | null): Promise; + } + + /** + * Synchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdirSync(path: PathLike, options?: number | string | MakeDirectoryOptions | null): void; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options: { encoding?: BufferEncoding | null } | BufferEncoding | undefined | null, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options: "buffer" | { encoding: "buffer" }, callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void): void; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options: { encoding?: string | null } | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void): void; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + */ + function mkdtemp(prefix: string, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace mkdtemp { + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): Promise; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options: { encoding: "buffer" } | "buffer"): Promise; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options?: { encoding?: string | null } | string | null): Promise; + } + + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtempSync(prefix: string, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): string; + + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtempSync(prefix: string, options: { encoding: "buffer" } | "buffer"): Buffer; + + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtempSync(prefix: string, options?: { encoding?: string | null } | string | null): string | Buffer; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir( + path: PathLike, + options: { encoding: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | undefined | null, + callback: (err: NodeJS.ErrnoException | null, files: string[]) => void, + ): void; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir(path: PathLike, options: { encoding: "buffer"; withFileTypes?: false } | "buffer", callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void): void; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir( + path: PathLike, + options: { encoding?: string | null; withFileTypes?: false } | string | undefined | null, + callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void, + ): void; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function readdir(path: PathLike, callback: (err: NodeJS.ErrnoException | null, files: string[]) => void): void; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + function readdir(path: PathLike, options: { encoding?: string | null; withFileTypes: true }, callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace readdir { + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: { encoding: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | null): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: "buffer" | { encoding: "buffer"; withFileTypes?: false }): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: { encoding?: string | null; withFileTypes?: false } | string | null): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent + */ + function __promisify__(path: PathLike, options: { encoding?: string | null; withFileTypes: true }): Promise; + } + + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdirSync(path: PathLike, options?: { encoding: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | null): string[]; + + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdirSync(path: PathLike, options: { encoding: "buffer"; withFileTypes?: false } | "buffer"): Buffer[]; + + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdirSync(path: PathLike, options?: { encoding?: string | null; withFileTypes?: false } | string | null): string[] | Buffer[]; + + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + function readdirSync(path: PathLike, options: { encoding?: string | null; withFileTypes: true }): Dirent[]; + + /** + * Asynchronous close(2) - close a file descriptor. + * @param fd A file descriptor. + */ + function close(fd: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace close { + /** + * Asynchronous close(2) - close a file descriptor. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + + /** + * Synchronous close(2) - close a file descriptor. + * @param fd A file descriptor. + */ + function closeSync(fd: number): void; + + /** + * Asynchronous open(2) - open and possibly create a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`. + */ + function open(path: PathLike, flags: string | number, mode: string | number | undefined | null, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + + /** + * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function open(path: PathLike, flags: string | number, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace open { + /** + * Asynchronous open(2) - open and possibly create a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`. + */ + function __promisify__(path: PathLike, flags: string | number, mode?: string | number | null): Promise; + } + + /** + * Synchronous open(2) - open and possibly create a file, returning a file descriptor.. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`. + */ + function openSync(path: PathLike, flags: string | number, mode?: string | number | null): number; + + /** + * Asynchronously change file timestamps of the file referenced by the supplied path. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function utimes(path: PathLike, atime: string | number | Date, mtime: string | number | Date, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace utimes { + /** + * Asynchronously change file timestamps of the file referenced by the supplied path. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(path: PathLike, atime: string | number | Date, mtime: string | number | Date): Promise; + } + + /** + * Synchronously change file timestamps of the file referenced by the supplied path. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function utimesSync(path: PathLike, atime: string | number | Date, mtime: string | number | Date): void; + + /** + * Asynchronously change file timestamps of the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function futimes(fd: number, atime: string | number | Date, mtime: string | number | Date, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace futimes { + /** + * Asynchronously change file timestamps of the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(fd: number, atime: string | number | Date, mtime: string | number | Date): Promise; + } + + /** + * Synchronously change file timestamps of the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function futimesSync(fd: number, atime: string | number | Date, mtime: string | number | Date): void; + + /** + * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + * @param fd A file descriptor. + */ + function fsync(fd: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace fsync { + /** + * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + + /** + * Synchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + * @param fd A file descriptor. + */ + function fsyncSync(fd: number): void; + + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + length: number | undefined | null, + position: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void, + ): void; + + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + */ + function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + length: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void, + ): void; + + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + */ + function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + */ + function write(fd: number, buffer: TBuffer, callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void): void; + + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + function write( + fd: number, + string: any, + position: number | undefined | null, + encoding: string | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void, + ): void; + + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function write(fd: number, string: any, position: number | undefined | null, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void; + + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + */ + function write(fd: number, string: any, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace write { + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function __promisify__( + fd: number, + buffer?: TBuffer, + offset?: number, + length?: number, + position?: number | null, + ): Promise<{ bytesWritten: number, buffer: TBuffer }>; + + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + function __promisify__(fd: number, string: any, position?: number | null, encoding?: string | null): Promise<{ bytesWritten: number, buffer: string }>; + } + + /** + * Synchronously writes `buffer` to the file referenced by the supplied file descriptor, returning the number of bytes written. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function writeSync(fd: number, buffer: NodeJS.ArrayBufferView, offset?: number | null, length?: number | null, position?: number | null): number; + + /** + * Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written. + * @param fd A file descriptor. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + function writeSync(fd: number, string: any, position?: number | null, encoding?: string | null): number; + + /** + * Asynchronously reads data from the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position. + */ + function read( + fd: number, + buffer: TBuffer, + offset: number, + length: number, + position: number | null, + callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void, + ): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace read { + /** + * @param fd A file descriptor. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position. + */ + function __promisify__( + fd: number, + buffer: TBuffer, + offset: number, + length: number, + position: number | null + ): Promise<{ bytesRead: number, buffer: TBuffer }>; + } + + /** + * Synchronously reads data from the file referenced by the supplied file descriptor, returning the number of bytes read. + * @param fd A file descriptor. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position. + */ + function readSync(fd: number, buffer: NodeJS.ArrayBufferView, offset: number, length: number, position: number | null): number; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile(path: PathLike | number, options: { encoding?: null; flag?: string; } | undefined | null, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile(path: PathLike | number, options: { encoding: string; flag?: string; } | string, callback: (err: NodeJS.ErrnoException | null, data: string) => void): void; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile( + path: PathLike | number, + options: { encoding?: string | null; flag?: string; } | string | undefined | null, + callback: (err: NodeJS.ErrnoException | null, data: string | Buffer) => void, + ): void; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + */ + function readFile(path: PathLike | number, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace readFile { + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__(path: PathLike | number, options?: { encoding?: null; flag?: string; } | null): Promise; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__(path: PathLike | number, options: { encoding: string; flag?: string; } | string): Promise; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__(path: PathLike | number, options?: { encoding?: string | null; flag?: string; } | string | null): Promise; + } + + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. If a flag is not provided, it defaults to `'r'`. + */ + function readFileSync(path: PathLike | number, options?: { encoding?: null; flag?: string; } | null): Buffer; + + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFileSync(path: PathLike | number, options: { encoding: string; flag?: string; } | string): string; + + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFileSync(path: PathLike | number, options?: { encoding?: string | null; flag?: string; } | string | null): string | Buffer; + + type WriteFileOptions = { encoding?: string | null; mode?: number | string; flag?: string; } | string | null; + + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + function writeFile(path: PathLike | number, data: any, options: WriteFileOptions, callback: NoParamCallback): void; + + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + */ + function writeFile(path: PathLike | number, data: any, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace writeFile { + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + function __promisify__(path: PathLike | number, data: any, options?: WriteFileOptions): Promise; + } + + /** + * Synchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + function writeFileSync(path: PathLike | number, data: any, options?: WriteFileOptions): void; + + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + function appendFile(file: PathLike | number, data: any, options: WriteFileOptions, callback: NoParamCallback): void; + + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + */ + function appendFile(file: PathLike | number, data: any, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace appendFile { + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + function __promisify__(file: PathLike | number, data: any, options?: WriteFileOptions): Promise; + } + + /** + * Synchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + function appendFileSync(file: PathLike | number, data: any, options?: WriteFileOptions): void; + + /** + * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed. + */ + function watchFile(filename: PathLike, options: { persistent?: boolean; interval?: number; } | undefined, listener: (curr: Stats, prev: Stats) => void): void; + + /** + * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function watchFile(filename: PathLike, listener: (curr: Stats, prev: Stats) => void): void; + + /** + * Stop watching for changes on `filename`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function unwatchFile(filename: PathLike, listener?: (curr: Stats, prev: Stats) => void): void; + + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch( + filename: PathLike, + options: { encoding?: BufferEncoding | null, persistent?: boolean, recursive?: boolean } | BufferEncoding | undefined | null, + listener?: (event: string, filename: string) => void, + ): FSWatcher; + + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch(filename: PathLike, options: { encoding: "buffer", persistent?: boolean, recursive?: boolean } | "buffer", listener?: (event: string, filename: Buffer) => void): FSWatcher; + + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch( + filename: PathLike, + options: { encoding?: string | null, persistent?: boolean, recursive?: boolean } | string | null, + listener?: (event: string, filename: string | Buffer) => void, + ): FSWatcher; + + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function watch(filename: PathLike, listener?: (event: string, filename: string) => any): FSWatcher; + + /** + * Asynchronously tests whether or not the given path exists by checking with the file system. + * @deprecated + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function exists(path: PathLike, callback: (exists: boolean) => void): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace exists { + /** + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(path: PathLike): Promise; + } + + /** + * Synchronously tests whether or not the given path exists by checking with the file system. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function existsSync(path: PathLike): boolean; + + namespace constants { + // File Access Constants + + /** Constant for fs.access(). File is visible to the calling process. */ + const F_OK: number; + + /** Constant for fs.access(). File can be read by the calling process. */ + const R_OK: number; + + /** Constant for fs.access(). File can be written by the calling process. */ + const W_OK: number; + + /** Constant for fs.access(). File can be executed by the calling process. */ + const X_OK: number; + + // File Copy Constants + + /** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */ + const COPYFILE_EXCL: number; + + /** + * Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink. + * If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used. + */ + const COPYFILE_FICLONE: number; + + /** + * Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink. + * If the underlying platform does not support copy-on-write, then the operation will fail with an error. + */ + const COPYFILE_FICLONE_FORCE: number; + + // File Open Constants + + /** Constant for fs.open(). Flag indicating to open a file for read-only access. */ + const O_RDONLY: number; + + /** Constant for fs.open(). Flag indicating to open a file for write-only access. */ + const O_WRONLY: number; + + /** Constant for fs.open(). Flag indicating to open a file for read-write access. */ + const O_RDWR: number; + + /** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */ + const O_CREAT: number; + + /** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */ + const O_EXCL: number; + + /** + * Constant for fs.open(). Flag indicating that if path identifies a terminal device, + * opening the path shall not cause that terminal to become the controlling terminal for the process + * (if the process does not already have one). + */ + const O_NOCTTY: number; + + /** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */ + const O_TRUNC: number; + + /** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */ + const O_APPEND: number; + + /** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */ + const O_DIRECTORY: number; + + /** + * constant for fs.open(). + * Flag indicating reading accesses to the file system will no longer result in + * an update to the atime information associated with the file. + * This flag is available on Linux operating systems only. + */ + const O_NOATIME: number; + + /** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */ + const O_NOFOLLOW: number; + + /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */ + const O_SYNC: number; + + /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */ + const O_DSYNC: number; + + /** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */ + const O_SYMLINK: number; + + /** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */ + const O_DIRECT: number; + + /** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */ + const O_NONBLOCK: number; + + // File Type Constants + + /** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */ + const S_IFMT: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */ + const S_IFREG: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */ + const S_IFDIR: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */ + const S_IFCHR: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */ + const S_IFBLK: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */ + const S_IFIFO: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */ + const S_IFLNK: number; + + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */ + const S_IFSOCK: number; + + // File Mode Constants + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */ + const S_IRWXU: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */ + const S_IRUSR: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */ + const S_IWUSR: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */ + const S_IXUSR: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */ + const S_IRWXG: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */ + const S_IRGRP: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */ + const S_IWGRP: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */ + const S_IXGRP: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */ + const S_IRWXO: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */ + const S_IROTH: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */ + const S_IWOTH: number; + + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */ + const S_IXOTH: number; + + /** + * When set, a memory file mapping is used to access the file. This flag + * is available on Windows operating systems only. On other operating systems, + * this flag is ignored. + */ + const UV_FS_O_FILEMAP: number; + } + + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void; + + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function access(path: PathLike, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace access { + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(path: PathLike, mode?: number): Promise; + } + + /** + * Synchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function accessSync(path: PathLike, mode?: number): void; + + /** + * Returns a new `ReadStream` object. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function createReadStream(path: PathLike, options?: string | { + flags?: string; + encoding?: string; + fd?: number; + mode?: number; + autoClose?: boolean; + /** + * @default false + */ + emitClose?: boolean; + start?: number; + end?: number; + highWaterMark?: number; + }): ReadStream; + + /** + * Returns a new `WriteStream` object. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function createWriteStream(path: PathLike, options?: string | { + flags?: string; + encoding?: string; + fd?: number; + mode?: number; + autoClose?: boolean; + emitClose?: boolean; + start?: number; + highWaterMark?: number; + }): WriteStream; + + /** + * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. + * @param fd A file descriptor. + */ + function fdatasync(fd: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace fdatasync { + /** + * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + + /** + * Synchronous fdatasync(2) - synchronize a file's in-core state with storage device. + * @param fd A file descriptor. + */ + function fdatasyncSync(fd: number): void; + + /** + * Asynchronously copies src to dest. By default, dest is overwritten if it already exists. + * No arguments other than a possible exception are given to the callback function. + * Node.js makes no guarantees about the atomicity of the copy operation. + * If an error occurs after the destination file has been opened for writing, Node.js will attempt + * to remove the destination. + * @param src A path to the source file. + * @param dest A path to the destination file. + */ + function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void; + /** + * Asynchronously copies src to dest. By default, dest is overwritten if it already exists. + * No arguments other than a possible exception are given to the callback function. + * Node.js makes no guarantees about the atomicity of the copy operation. + * If an error occurs after the destination file has been opened for writing, Node.js will attempt + * to remove the destination. + * @param src A path to the source file. + * @param dest A path to the destination file. + * @param flags An integer that specifies the behavior of the copy operation. The only supported flag is fs.constants.COPYFILE_EXCL, which causes the copy operation to fail if dest already exists. + */ + function copyFile(src: PathLike, dest: PathLike, flags: number, callback: NoParamCallback): void; + + // NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime. + namespace copyFile { + /** + * Asynchronously copies src to dest. By default, dest is overwritten if it already exists. + * No arguments other than a possible exception are given to the callback function. + * Node.js makes no guarantees about the atomicity of the copy operation. + * If an error occurs after the destination file has been opened for writing, Node.js will attempt + * to remove the destination. + * @param src A path to the source file. + * @param dest A path to the destination file. + * @param flags An optional integer that specifies the behavior of the copy operation. + * The only supported flag is fs.constants.COPYFILE_EXCL, + * which causes the copy operation to fail if dest already exists. + */ + function __promisify__(src: PathLike, dst: PathLike, flags?: number): Promise; + } + + /** + * Synchronously copies src to dest. By default, dest is overwritten if it already exists. + * Node.js makes no guarantees about the atomicity of the copy operation. + * If an error occurs after the destination file has been opened for writing, Node.js will attempt + * to remove the destination. + * @param src A path to the source file. + * @param dest A path to the destination file. + * @param flags An optional integer that specifies the behavior of the copy operation. + * The only supported flag is fs.constants.COPYFILE_EXCL, which causes the copy operation to fail if dest already exists. + */ + function copyFileSync(src: PathLike, dest: PathLike, flags?: number): void; + + /** + * Write an array of ArrayBufferViews to the file specified by fd using writev(). + * position is the offset from the beginning of the file where this data should be written. + * It is unsafe to use fs.writev() multiple times on the same file without waiting for the callback. For this scenario, use fs.createWriteStream(). + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to the end of the file. + */ + function writev( + fd: number, + buffers: NodeJS.ArrayBufferView[], + cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void + ): void; + function writev( + fd: number, + buffers: NodeJS.ArrayBufferView[], + position: number, + cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void + ): void; + + interface WriteVResult { + bytesWritten: number; + buffers: NodeJS.ArrayBufferView[]; + } + + namespace writev { + function __promisify__(fd: number, buffers: NodeJS.ArrayBufferView[], position?: number): Promise; + } + + /** + * See `writev`. + */ + function writevSync(fd: number, buffers: NodeJS.ArrayBufferView[], position?: number): number; + + interface OpenDirOptions { + encoding?: BufferEncoding; + /** + * Number of directory entries that are buffered + * internally when reading from the directory. Higher values lead to better + * performance but higher memory usage. + * @default 32 + */ + bufferSize?: number; + } + + function opendirSync(path: string, options?: OpenDirOptions): Dir; + + function opendir(path: string, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void; + function opendir(path: string, options: OpenDirOptions, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void; + + namespace opendir { + function __promisify__(path: string, options?: OpenDirOptions): Promise; + } + + namespace promises { + interface FileHandle { + /** + * Gets the file descriptor for this file handle. + */ + readonly fd: number; + + /** + * Asynchronously append data to a file, creating the file if it does not exist. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for appending. + * @param data The data to write. If something other than a `Buffer` or `Uint8Array` is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + appendFile(data: any, options?: { encoding?: string | null, mode?: string | number, flag?: string | number } | string | null): Promise; + + /** + * Asynchronous fchown(2) - Change ownership of a file. + */ + chown(uid: number, gid: number): Promise; + + /** + * Asynchronous fchmod(2) - Change permissions of a file. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + chmod(mode: string | number): Promise; + + /** + * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. + */ + datasync(): Promise; + + /** + * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + */ + sync(): Promise; + + /** + * Asynchronously reads data from the file. + * The `FileHandle` must have been opened for reading. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position. + */ + read(buffer: TBuffer, offset?: number | null, length?: number | null, position?: number | null): Promise<{ bytesRead: number, buffer: TBuffer }>; + + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile(options?: { encoding?: null, flag?: string | number } | null): Promise; + + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile(options: { encoding: BufferEncoding, flag?: string | number } | BufferEncoding): Promise; + + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile(options?: { encoding?: string | null, flag?: string | number } | string | null): Promise; + + /** + * Asynchronous fstat(2) - Get file status. + */ + stat(): Promise; + + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param len If not specified, defaults to `0`. + */ + truncate(len?: number): Promise; + + /** + * Asynchronously change file timestamps of the file. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + utimes(atime: string | number | Date, mtime: string | number | Date): Promise; + + /** + * Asynchronously writes `buffer` to the file. + * The `FileHandle` must have been opened for writing. + * @param buffer The buffer that the data will be written to. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + write(buffer: TBuffer, offset?: number | null, length?: number | null, position?: number | null): Promise<{ bytesWritten: number, buffer: TBuffer }>; + + /** + * Asynchronously writes `string` to the file. + * The `FileHandle` must have been opened for writing. + * It is unsafe to call `write()` multiple times on the same file without waiting for the `Promise` + * to be resolved (or rejected). For this scenario, `fs.createWriteStream` is strongly recommended. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + write(data: any, position?: number | null, encoding?: string | null): Promise<{ bytesWritten: number, buffer: string }>; + + /** + * Asynchronously writes data to a file, replacing the file if it already exists. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for writing. + * It is unsafe to call `writeFile()` multiple times on the same file without waiting for the `Promise` to be resolved (or rejected). + * @param data The data to write. If something other than a `Buffer` or `Uint8Array` is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + writeFile(data: any, options?: { encoding?: string | null, mode?: string | number, flag?: string | number } | string | null): Promise; + + /** + * See `fs.writev` promisified version. + */ + writev(buffers: NodeJS.ArrayBufferView[], position?: number): Promise; + + /** + * Asynchronous close(2) - close a `FileHandle`. + */ + close(): Promise; + } + + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function access(path: PathLike, mode?: number): Promise; + + /** + * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it already exists. + * Node.js makes no guarantees about the atomicity of the copy operation. + * If an error occurs after the destination file has been opened for writing, Node.js will attempt + * to remove the destination. + * @param src A path to the source file. + * @param dest A path to the destination file. + * @param flags An optional integer that specifies the behavior of the copy operation. The only + * supported flag is `fs.constants.COPYFILE_EXCL`, which causes the copy operation to fail if + * `dest` already exists. + */ + function copyFile(src: PathLike, dest: PathLike, flags?: number): Promise; + + /** + * Asynchronous open(2) - open and possibly create a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not + * supplied, defaults to `0o666`. + */ + function open(path: PathLike, flags: string | number, mode?: string | number): Promise; + + /** + * Asynchronously reads data from the file referenced by the supplied `FileHandle`. + * @param handle A `FileHandle`. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If + * `null`, data will be read from the current position. + */ + function read( + handle: FileHandle, + buffer: TBuffer, + offset?: number | null, + length?: number | null, + position?: number | null, + ): Promise<{ bytesRead: number, buffer: TBuffer }>; + + /** + * Asynchronously writes `buffer` to the file referenced by the supplied `FileHandle`. + * It is unsafe to call `fsPromises.write()` multiple times on the same file without waiting for the `Promise` + * to be resolved (or rejected). For this scenario, `fs.createWriteStream` is strongly recommended. + * @param handle A `FileHandle`. + * @param buffer The buffer that the data will be written to. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function write( + handle: FileHandle, + buffer: TBuffer, + offset?: number | null, + length?: number | null, position?: number | null): Promise<{ bytesWritten: number, buffer: TBuffer }>; + + /** + * Asynchronously writes `string` to the file referenced by the supplied `FileHandle`. + * It is unsafe to call `fsPromises.write()` multiple times on the same file without waiting for the `Promise` + * to be resolved (or rejected). For this scenario, `fs.createWriteStream` is strongly recommended. + * @param handle A `FileHandle`. + * @param string A string to write. If something other than a string is supplied it will be coerced to a string. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + function write(handle: FileHandle, string: any, position?: number | null, encoding?: string | null): Promise<{ bytesWritten: number, buffer: string }>; + + /** + * Asynchronous rename(2) - Change the name or location of a file or directory. + * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function rename(oldPath: PathLike, newPath: PathLike): Promise; + + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param len If not specified, defaults to `0`. + */ + function truncate(path: PathLike, len?: number): Promise; + + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param handle A `FileHandle`. + * @param len If not specified, defaults to `0`. + */ + function ftruncate(handle: FileHandle, len?: number): Promise; + + /** + * Asynchronous rmdir(2) - delete a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function rmdir(path: PathLike, options?: RmDirAsyncOptions): Promise; + + /** + * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. + * @param handle A `FileHandle`. + */ + function fdatasync(handle: FileHandle): Promise; + + /** + * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + * @param handle A `FileHandle`. + */ + function fsync(handle: FileHandle): Promise; + + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdir(path: PathLike, options?: number | string | MakeDirectoryOptions | null): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir(path: PathLike, options?: { encoding?: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | null): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir(path: PathLike, options: { encoding: "buffer"; withFileTypes?: false } | "buffer"): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir(path: PathLike, options?: { encoding?: string | null; withFileTypes?: false } | string | null): Promise; + + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + function readdir(path: PathLike, options: { encoding?: string | null; withFileTypes: true }): Promise; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): Promise; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options: { encoding: "buffer" } | "buffer"): Promise; + + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options?: { encoding?: string | null } | string | null): Promise; + + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms). + * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path. + */ + function symlink(target: PathLike, path: PathLike, type?: string | null): Promise; + + /** + * Asynchronous fstat(2) - Get file status. + * @param handle A `FileHandle`. + */ + function fstat(handle: FileHandle): Promise; + + /** + * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function lstat(path: PathLike): Promise; + + /** + * Asynchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function stat(path: PathLike): Promise; + + /** + * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file. + * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function link(existingPath: PathLike, newPath: PathLike): Promise; + + /** + * Asynchronous unlink(2) - delete a name and possibly the file it refers to. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function unlink(path: PathLike): Promise; + + /** + * Asynchronous fchmod(2) - Change permissions of a file. + * @param handle A `FileHandle`. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function fchmod(handle: FileHandle, mode: string | number): Promise; + + /** + * Asynchronous chmod(2) - Change permissions of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function chmod(path: PathLike, mode: string | number): Promise; + + /** + * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function lchmod(path: PathLike, mode: string | number): Promise; + + /** + * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function lchown(path: PathLike, uid: number, gid: number): Promise; + + /** + * Asynchronous fchown(2) - Change ownership of a file. + * @param handle A `FileHandle`. + */ + function fchown(handle: FileHandle, uid: number, gid: number): Promise; + + /** + * Asynchronous chown(2) - Change ownership of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function chown(path: PathLike, uid: number, gid: number): Promise; + + /** + * Asynchronously change file timestamps of the file referenced by the supplied path. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function utimes(path: PathLike, atime: string | number | Date, mtime: string | number | Date): Promise; + + /** + * Asynchronously change file timestamps of the file referenced by the supplied `FileHandle`. + * @param handle A `FileHandle`. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function futimes(handle: FileHandle, atime: string | number | Date, mtime: string | number | Date): Promise; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): Promise; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options: { encoding: "buffer" } | "buffer"): Promise; + + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options?: { encoding?: string | null } | string | null): Promise; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options?: { encoding?: BufferEncoding | null } | BufferEncoding | null): Promise; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options: { encoding: "buffer" } | "buffer"): Promise; + + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options?: { encoding?: string | null } | string | null): Promise; + + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * It is unsafe to call `fsPromises.writeFile()` multiple times on the same file without waiting for the `Promise` to be resolved (or rejected). + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a `Buffer` or `Uint8Array` is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + function writeFile(path: PathLike | FileHandle, data: any, options?: { encoding?: string | null, mode?: string | number, flag?: string | number } | string | null): Promise; + + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a `Buffer` or `Uint8Array` is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + function appendFile(path: PathLike | FileHandle, data: any, options?: { encoding?: string | null, mode?: string | number, flag?: string | number } | string | null): Promise; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile(path: PathLike | FileHandle, options?: { encoding?: null, flag?: string | number } | null): Promise; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile(path: PathLike | FileHandle, options: { encoding: BufferEncoding, flag?: string | number } | BufferEncoding): Promise; + + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile(path: PathLike | FileHandle, options?: { encoding?: string | null, flag?: string | number } | string | null): Promise; + + function opendir(path: string, options?: OpenDirOptions): Promise; + } +} diff --git a/themes/piratecare/node_modules/@types/node/globals.d.ts b/themes/piratecare/node_modules/@types/node/globals.d.ts new file mode 100644 index 0000000..e5fcc20 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/globals.d.ts @@ -0,0 +1,1105 @@ +// This needs to be global to avoid TS2403 in case lib.dom.d.ts is present in the same build +interface Console { + Console: NodeJS.ConsoleConstructor; + /** + * A simple assertion test that verifies whether `value` is truthy. + * If it is not, an `AssertionError` is thrown. + * If provided, the error `message` is formatted using `util.format()` and used as the error message. + */ + assert(value: any, message?: string, ...optionalParams: any[]): void; + /** + * When `stdout` is a TTY, calling `console.clear()` will attempt to clear the TTY. + * When `stdout` is not a TTY, this method does nothing. + */ + clear(): void; + /** + * Maintains an internal counter specific to `label` and outputs to `stdout` the number of times `console.count()` has been called with the given `label`. + */ + count(label?: string): void; + /** + * Resets the internal counter specific to `label`. + */ + countReset(label?: string): void; + /** + * The `console.debug()` function is an alias for {@link console.log()}. + */ + debug(message?: any, ...optionalParams: any[]): void; + /** + * Uses {@link util.inspect()} on `obj` and prints the resulting string to `stdout`. + * This function bypasses any custom `inspect()` function defined on `obj`. + */ + dir(obj: any, options?: NodeJS.InspectOptions): void; + /** + * This method calls {@link console.log()} passing it the arguments received. Please note that this method does not produce any XML formatting + */ + dirxml(...data: any[]): void; + /** + * Prints to `stderr` with newline. + */ + error(message?: any, ...optionalParams: any[]): void; + /** + * Increases indentation of subsequent lines by two spaces. + * If one or more `label`s are provided, those are printed first without the additional indentation. + */ + group(...label: any[]): void; + /** + * The `console.groupCollapsed()` function is an alias for {@link console.group()}. + */ + groupCollapsed(...label: any[]): void; + /** + * Decreases indentation of subsequent lines by two spaces. + */ + groupEnd(): void; + /** + * The {@link console.info()} function is an alias for {@link console.log()}. + */ + info(message?: any, ...optionalParams: any[]): void; + /** + * Prints to `stdout` with newline. + */ + log(message?: any, ...optionalParams: any[]): void; + /** + * This method does not display anything unless used in the inspector. + * Prints to `stdout` the array `array` formatted as a table. + */ + table(tabularData: any, properties?: string[]): void; + /** + * Starts a timer that can be used to compute the duration of an operation. Timers are identified by a unique `label`. + */ + time(label?: string): void; + /** + * Stops a timer that was previously started by calling {@link console.time()} and prints the result to `stdout`. + */ + timeEnd(label?: string): void; + /** + * For a timer that was previously started by calling {@link console.time()}, prints the elapsed time and other `data` arguments to `stdout`. + */ + timeLog(label?: string, ...data: any[]): void; + /** + * Prints to `stderr` the string 'Trace :', followed by the {@link util.format()} formatted message and stack trace to the current position in the code. + */ + trace(message?: any, ...optionalParams: any[]): void; + /** + * The {@link console.warn()} function is an alias for {@link console.error()}. + */ + warn(message?: any, ...optionalParams: any[]): void; + + // --- Inspector mode only --- + /** + * This method does not display anything unless used in the inspector. + * Starts a JavaScript CPU profile with an optional label. + */ + profile(label?: string): void; + /** + * This method does not display anything unless used in the inspector. + * Stops the current JavaScript CPU profiling session if one has been started and prints the report to the Profiles panel of the inspector. + */ + profileEnd(label?: string): void; + /** + * This method does not display anything unless used in the inspector. + * Adds an event with the label `label` to the Timeline panel of the inspector. + */ + timeStamp(label?: string): void; +} + +// Declare "static" methods in Error +interface ErrorConstructor { + /** Create .stack property on a target object */ + captureStackTrace(targetObject: object, constructorOpt?: Function): void; + + /** + * Optional override for formatting stack traces + * + * @see https://github.com/v8/v8/wiki/Stack%20Trace%20API#customizing-stack-traces + */ + prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any; + + stackTraceLimit: number; +} + +// Node.js ESNEXT support +interface String { + /** Removes whitespace from the left end of a string. */ + trimLeft(): string; + /** Removes whitespace from the right end of a string. */ + trimRight(): string; +} + +interface ImportMeta { + url: string; +} + +/*-----------------------------------------------* + * * + * GLOBAL * + * * + ------------------------------------------------*/ + +// For backwards compability +interface NodeRequire extends NodeJS.Require {} +interface RequireResolve extends NodeJS.RequireResolve {} +interface NodeModule extends NodeJS.Module {} + +declare var process: NodeJS.Process; +declare var global: NodeJS.Global; +declare var console: Console; + +declare var __filename: string; +declare var __dirname: string; + +declare function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timeout; +declare namespace setTimeout { + function __promisify__(ms: number): Promise; + function __promisify__(ms: number, value: T): Promise; +} +declare function clearTimeout(timeoutId: NodeJS.Timeout): void; +declare function setInterval(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timeout; +declare function clearInterval(intervalId: NodeJS.Timeout): void; +declare function setImmediate(callback: (...args: any[]) => void, ...args: any[]): NodeJS.Immediate; +declare namespace setImmediate { + function __promisify__(): Promise; + function __promisify__(value: T): Promise; +} +declare function clearImmediate(immediateId: NodeJS.Immediate): void; + +declare function queueMicrotask(callback: () => void): void; + +declare var require: NodeRequire; +declare var module: NodeModule; + +// Same as module.exports +declare var exports: any; + +// Buffer class +type BufferEncoding = "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex"; + +/** + * Raw data is stored in instances of the Buffer class. + * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. A Buffer cannot be resized. + * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' + */ +declare class Buffer extends Uint8Array { + /** + * Allocates a new buffer containing the given {str}. + * + * @param str String to store in buffer. + * @param encoding encoding to use, optional. Default is 'utf8' + * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead. + */ + constructor(str: string, encoding?: BufferEncoding); + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`). + */ + constructor(size: number); + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead. + */ + constructor(array: Uint8Array); + /** + * Produces a Buffer backed by the same allocated memory as + * the given {ArrayBuffer}/{SharedArrayBuffer}. + * + * + * @param arrayBuffer The ArrayBuffer with which to share memory. + * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead. + */ + constructor(arrayBuffer: ArrayBuffer | SharedArrayBuffer); + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead. + */ + constructor(array: any[]); + /** + * Copies the passed {buffer} data onto a new {Buffer} instance. + * + * @param buffer The buffer to copy. + * @deprecated since v10.0.0 - Use `Buffer.from(buffer)` instead. + */ + constructor(buffer: Buffer); + /** + * When passed a reference to the .buffer property of a TypedArray instance, + * the newly created Buffer will share the same allocated memory as the TypedArray. + * The optional {byteOffset} and {length} arguments specify a memory range + * within the {arrayBuffer} that will be shared by the Buffer. + * + * @param arrayBuffer The .buffer property of any TypedArray or a new ArrayBuffer() + */ + static from(arrayBuffer: ArrayBuffer | SharedArrayBuffer, byteOffset?: number, length?: number): Buffer; + /** + * Creates a new Buffer using the passed {data} + * @param data data to create a new Buffer + */ + static from(data: number[]): Buffer; + static from(data: Uint8Array): Buffer; + /** + * Creates a new Buffer containing the given JavaScript string {str}. + * If provided, the {encoding} parameter identifies the character encoding. + * If not provided, {encoding} defaults to 'utf8'. + */ + static from(str: string, encoding?: BufferEncoding): Buffer; + /** + * Creates a new Buffer using the passed {data} + * @param values to create a new Buffer + */ + static of(...items: number[]): Buffer; + /** + * Returns true if {obj} is a Buffer + * + * @param obj object to test. + */ + static isBuffer(obj: any): obj is Buffer; + /** + * Returns true if {encoding} is a valid encoding argument. + * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' + * + * @param encoding string to test. + */ + static isEncoding(encoding: string): encoding is BufferEncoding; + /** + * Gives the actual byte length of a string. encoding defaults to 'utf8'. + * This is not the same as String.prototype.length since that returns the number of characters in a string. + * + * @param string string to test. + * @param encoding encoding used to evaluate (defaults to 'utf8') + */ + static byteLength( + string: string | NodeJS.ArrayBufferView | ArrayBuffer | SharedArrayBuffer, + encoding?: BufferEncoding + ): number; + /** + * Returns a buffer which is the result of concatenating all the buffers in the list together. + * + * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. + * If the list has exactly one item, then the first item of the list is returned. + * If the list has more than one item, then a new Buffer is created. + * + * @param list An array of Buffer objects to concatenate + * @param totalLength Total length of the buffers when concatenated. + * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. + */ + static concat(list: Uint8Array[], totalLength?: number): Buffer; + /** + * The same as buf1.compare(buf2). + */ + static compare(buf1: Uint8Array, buf2: Uint8Array): number; + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + * @param fill if specified, buffer will be initialized by calling buf.fill(fill). + * If parameter is omitted, buffer will be filled with zeros. + * @param encoding encoding used for call to buf.fill while initalizing + */ + static alloc(size: number, fill?: string | Buffer | number, encoding?: BufferEncoding): Buffer; + /** + * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents + * of the newly created Buffer are unknown and may contain sensitive data. + * + * @param size count of octets to allocate + */ + static allocUnsafe(size: number): Buffer; + /** + * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents + * of the newly created Buffer are unknown and may contain sensitive data. + * + * @param size count of octets to allocate + */ + static allocUnsafeSlow(size: number): Buffer; + /** + * This is the number of bytes used to determine the size of pre-allocated, internal Buffer instances used for pooling. This value may be modified. + */ + static poolSize: number; + + write(string: string, encoding?: BufferEncoding): number; + write(string: string, offset: number, encoding?: BufferEncoding): number; + write(string: string, offset: number, length: number, encoding?: BufferEncoding): number; + toString(encoding?: string, start?: number, end?: number): string; + toJSON(): { type: 'Buffer'; data: number[] }; + equals(otherBuffer: Uint8Array): boolean; + compare( + otherBuffer: Uint8Array, + targetStart?: number, + targetEnd?: number, + sourceStart?: number, + sourceEnd?: number + ): number; + copy(targetBuffer: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; + /** + * Returns a new `Buffer` that references **the same memory as the original**, but offset and cropped by the start and end indices. + * + * This method is incompatible with `Uint8Array#slice()`, which returns a copy of the original memory. + * + * @param begin Where the new `Buffer` will start. Default: `0`. + * @param end Where the new `Buffer` will end (not inclusive). Default: `buf.length`. + */ + slice(begin?: number, end?: number): Buffer; + /** + * Returns a new `Buffer` that references **the same memory as the original**, but offset and cropped by the start and end indices. + * + * This method is compatible with `Uint8Array#subarray()`. + * + * @param begin Where the new `Buffer` will start. Default: `0`. + * @param end Where the new `Buffer` will end (not inclusive). Default: `buf.length`. + */ + subarray(begin?: number, end?: number): Buffer; + writeUIntLE(value: number, offset: number, byteLength: number): number; + writeUIntBE(value: number, offset: number, byteLength: number): number; + writeIntLE(value: number, offset: number, byteLength: number): number; + writeIntBE(value: number, offset: number, byteLength: number): number; + readUIntLE(offset: number, byteLength: number): number; + readUIntBE(offset: number, byteLength: number): number; + readIntLE(offset: number, byteLength: number): number; + readIntBE(offset: number, byteLength: number): number; + readUInt8(offset: number): number; + readUInt16LE(offset: number): number; + readUInt16BE(offset: number): number; + readUInt32LE(offset: number): number; + readUInt32BE(offset: number): number; + readInt8(offset: number): number; + readInt16LE(offset: number): number; + readInt16BE(offset: number): number; + readInt32LE(offset: number): number; + readInt32BE(offset: number): number; + readFloatLE(offset: number): number; + readFloatBE(offset: number): number; + readDoubleLE(offset: number): number; + readDoubleBE(offset: number): number; + reverse(): this; + swap16(): Buffer; + swap32(): Buffer; + swap64(): Buffer; + writeUInt8(value: number, offset: number): number; + writeUInt16LE(value: number, offset: number): number; + writeUInt16BE(value: number, offset: number): number; + writeUInt32LE(value: number, offset: number): number; + writeUInt32BE(value: number, offset: number): number; + writeInt8(value: number, offset: number): number; + writeInt16LE(value: number, offset: number): number; + writeInt16BE(value: number, offset: number): number; + writeInt32LE(value: number, offset: number): number; + writeInt32BE(value: number, offset: number): number; + writeFloatLE(value: number, offset: number): number; + writeFloatBE(value: number, offset: number): number; + writeDoubleLE(value: number, offset: number): number; + writeDoubleBE(value: number, offset: number): number; + + fill(value: string | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): this; + + indexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number; + lastIndexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number; + entries(): IterableIterator<[number, number]>; + includes(value: string | number | Buffer, byteOffset?: number, encoding?: BufferEncoding): boolean; + keys(): IterableIterator; + values(): IterableIterator; +} + +/*----------------------------------------------* +* * +* GLOBAL INTERFACES * +* * +*-----------------------------------------------*/ +declare namespace NodeJS { + interface InspectOptions { + /** + * If set to `true`, getters are going to be + * inspected as well. If set to `'get'` only getters without setter are going + * to be inspected. If set to `'set'` only getters having a corresponding + * setter are going to be inspected. This might cause side effects depending on + * the getter function. + * @default `false` + */ + getters?: 'get' | 'set' | boolean; + showHidden?: boolean; + /** + * @default 2 + */ + depth?: number | null; + colors?: boolean; + customInspect?: boolean; + showProxy?: boolean; + maxArrayLength?: number | null; + breakLength?: number; + /** + * Setting this to `false` causes each object key + * to be displayed on a new line. It will also add new lines to text that is + * longer than `breakLength`. If set to a number, the most `n` inner elements + * are united on a single line as long as all properties fit into + * `breakLength`. Short array elements are also grouped together. Note that no + * text will be reduced below 16 characters, no matter the `breakLength` size. + * For more information, see the example below. + * @default `true` + */ + compact?: boolean | number; + sorted?: boolean | ((a: string, b: string) => number); + } + + interface ConsoleConstructorOptions { + stdout: WritableStream; + stderr?: WritableStream; + ignoreErrors?: boolean; + colorMode?: boolean | 'auto'; + inspectOptions?: InspectOptions; + } + + interface ConsoleConstructor { + prototype: Console; + new(stdout: WritableStream, stderr?: WritableStream, ignoreErrors?: boolean): Console; + new(options: ConsoleConstructorOptions): Console; + } + + interface CallSite { + /** + * Value of "this" + */ + getThis(): any; + + /** + * Type of "this" as a string. + * This is the name of the function stored in the constructor field of + * "this", if available. Otherwise the object's [[Class]] internal + * property. + */ + getTypeName(): string | null; + + /** + * Current function + */ + getFunction(): Function | undefined; + + /** + * Name of the current function, typically its name property. + * If a name property is not available an attempt will be made to try + * to infer a name from the function's context. + */ + getFunctionName(): string | null; + + /** + * Name of the property [of "this" or one of its prototypes] that holds + * the current function + */ + getMethodName(): string | null; + + /** + * Name of the script [if this function was defined in a script] + */ + getFileName(): string | null; + + /** + * Current line number [if this function was defined in a script] + */ + getLineNumber(): number | null; + + /** + * Current column number [if this function was defined in a script] + */ + getColumnNumber(): number | null; + + /** + * A call site object representing the location where eval was called + * [if this function was created using a call to eval] + */ + getEvalOrigin(): string | undefined; + + /** + * Is this a toplevel invocation, that is, is "this" the global object? + */ + isToplevel(): boolean; + + /** + * Does this call take place in code defined by a call to eval? + */ + isEval(): boolean; + + /** + * Is this call in native V8 code? + */ + isNative(): boolean; + + /** + * Is this a constructor call? + */ + isConstructor(): boolean; + } + + interface ErrnoException extends Error { + errno?: number; + code?: string; + path?: string; + syscall?: string; + stack?: string; + } + + interface EventEmitter { + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + off(event: string | symbol, listener: (...args: any[]) => void): this; + removeAllListeners(event?: string | symbol): this; + setMaxListeners(n: number): this; + getMaxListeners(): number; + listeners(event: string | symbol): Function[]; + rawListeners(event: string | symbol): Function[]; + emit(event: string | symbol, ...args: any[]): boolean; + listenerCount(type: string | symbol): number; + // Added in Node 6... + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + eventNames(): Array; + } + + interface ReadableStream extends EventEmitter { + readable: boolean; + read(size?: number): string | Buffer; + setEncoding(encoding: string): this; + pause(): this; + resume(): this; + isPaused(): boolean; + pipe(destination: T, options?: { end?: boolean; }): T; + unpipe(destination?: WritableStream): this; + unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void; + wrap(oldStream: ReadableStream): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + + interface WritableStream extends EventEmitter { + writable: boolean; + write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean; + write(str: string, encoding?: string, cb?: (err?: Error | null) => void): boolean; + end(cb?: () => void): void; + end(data: string | Uint8Array, cb?: () => void): void; + end(str: string, encoding?: string, cb?: () => void): void; + } + + interface ReadWriteStream extends ReadableStream, WritableStream { } + + interface Domain extends EventEmitter { + run(fn: (...args: any[]) => T, ...args: any[]): T; + add(emitter: EventEmitter | Timer): void; + remove(emitter: EventEmitter | Timer): void; + bind(cb: T): T; + intercept(cb: T): T; + + addListener(event: string, listener: (...args: any[]) => void): this; + on(event: string, listener: (...args: any[]) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + removeListener(event: string, listener: (...args: any[]) => void): this; + removeAllListeners(event?: string): this; + } + + interface MemoryUsage { + rss: number; + heapTotal: number; + heapUsed: number; + external: number; + } + + interface CpuUsage { + user: number; + system: number; + } + + interface ProcessRelease { + name: string; + sourceUrl?: string; + headersUrl?: string; + libUrl?: string; + lts?: string; + } + + interface ProcessVersions { + http_parser: string; + node: string; + v8: string; + ares: string; + uv: string; + zlib: string; + modules: string; + openssl: string; + } + + type Platform = 'aix' + | 'android' + | 'darwin' + | 'freebsd' + | 'linux' + | 'openbsd' + | 'sunos' + | 'win32' + | 'cygwin' + | 'netbsd'; + + type Signals = + "SIGABRT" | "SIGALRM" | "SIGBUS" | "SIGCHLD" | "SIGCONT" | "SIGFPE" | "SIGHUP" | "SIGILL" | "SIGINT" | "SIGIO" | + "SIGIOT" | "SIGKILL" | "SIGPIPE" | "SIGPOLL" | "SIGPROF" | "SIGPWR" | "SIGQUIT" | "SIGSEGV" | "SIGSTKFLT" | + "SIGSTOP" | "SIGSYS" | "SIGTERM" | "SIGTRAP" | "SIGTSTP" | "SIGTTIN" | "SIGTTOU" | "SIGUNUSED" | "SIGURG" | + "SIGUSR1" | "SIGUSR2" | "SIGVTALRM" | "SIGWINCH" | "SIGXCPU" | "SIGXFSZ" | "SIGBREAK" | "SIGLOST" | "SIGINFO"; + + type MultipleResolveType = 'resolve' | 'reject'; + + type BeforeExitListener = (code: number) => void; + type DisconnectListener = () => void; + type ExitListener = (code: number) => void; + type RejectionHandledListener = (promise: Promise) => void; + type UncaughtExceptionListener = (error: Error) => void; + type UnhandledRejectionListener = (reason: {} | null | undefined, promise: Promise) => void; + type WarningListener = (warning: Error) => void; + type MessageListener = (message: any, sendHandle: any) => void; + type SignalsListener = (signal: Signals) => void; + type NewListenerListener = (type: string | symbol, listener: (...args: any[]) => void) => void; + type RemoveListenerListener = (type: string | symbol, listener: (...args: any[]) => void) => void; + type MultipleResolveListener = (type: MultipleResolveType, promise: Promise, value: any) => void; + + interface Socket extends ReadWriteStream { + isTTY?: true; + } + + interface ProcessEnv { + [key: string]: string | undefined; + } + + interface HRTime { + (time?: [number, number]): [number, number]; + } + + interface ProcessReport { + /** + * Directory where the report is written. + * working directory of the Node.js process. + * @default '' indicating that reports are written to the current + */ + directory: string; + + /** + * Filename where the report is written. + * The default value is the empty string. + * @default '' the output filename will be comprised of a timestamp, + * PID, and sequence number. + */ + filename: string; + + /** + * Returns a JSON-formatted diagnostic report for the running process. + * The report's JavaScript stack trace is taken from err, if present. + */ + getReport(err?: Error): string; + + /** + * If true, a diagnostic report is generated on fatal errors, + * such as out of memory errors or failed C++ assertions. + * @default false + */ + reportOnFatalError: boolean; + + /** + * If true, a diagnostic report is generated when the process + * receives the signal specified by process.report.signal. + * @defaul false + */ + reportOnSignal: boolean; + + /** + * If true, a diagnostic report is generated on uncaught exception. + * @default false + */ + reportOnUncaughtException: boolean; + + /** + * The signal used to trigger the creation of a diagnostic report. + * @default 'SIGUSR2' + */ + signal: Signals; + + /** + * Writes a diagnostic report to a file. If filename is not provided, the default filename + * includes the date, time, PID, and a sequence number. + * The report's JavaScript stack trace is taken from err, if present. + * + * @param fileName Name of the file where the report is written. + * This should be a relative path, that will be appended to the directory specified in + * `process.report.directory`, or the current working directory of the Node.js process, + * if unspecified. + * @param error A custom error used for reporting the JavaScript stack. + * @return Filename of the generated report. + */ + writeReport(fileName?: string): string; + writeReport(error?: Error): string; + writeReport(fileName?: string, err?: Error): string; + } + + interface ResourceUsage { + fsRead: number; + fsWrite: number; + involuntaryContextSwitches: number; + ipcReceived: number; + ipcSent: number; + majorPageFault: number; + maxRSS: number; + minorPageFault: number; + sharedMemorySize: number; + signalsCount: number; + swappedOut: number; + systemCPUTime: number; + unsharedDataSize: number; + unsharedStackSize: number; + userCPUTime: number; + voluntaryContextSwitches: number; + } + + interface Process extends EventEmitter { + /** + * Can also be a tty.WriteStream, not typed due to limitation.s + */ + stdout: WriteStream; + /** + * Can also be a tty.WriteStream, not typed due to limitation.s + */ + stderr: WriteStream; + stdin: ReadStream; + openStdin(): Socket; + argv: string[]; + argv0: string; + execArgv: string[]; + execPath: string; + abort(): void; + chdir(directory: string): void; + cwd(): string; + debugPort: number; + emitWarning(warning: string | Error, name?: string, ctor?: Function): void; + env: ProcessEnv; + exit(code?: number): never; + exitCode?: number; + getgid(): number; + setgid(id: number | string): void; + getuid(): number; + setuid(id: number | string): void; + geteuid(): number; + seteuid(id: number | string): void; + getegid(): number; + setegid(id: number | string): void; + getgroups(): number[]; + setgroups(groups: Array): void; + setUncaughtExceptionCaptureCallback(cb: ((err: Error) => void) | null): void; + hasUncaughtExceptionCaptureCallback(): boolean; + version: string; + versions: ProcessVersions; + config: { + target_defaults: { + cflags: any[]; + default_configuration: string; + defines: string[]; + include_dirs: string[]; + libraries: string[]; + }; + variables: { + clang: number; + host_arch: string; + node_install_npm: boolean; + node_install_waf: boolean; + node_prefix: string; + node_shared_openssl: boolean; + node_shared_v8: boolean; + node_shared_zlib: boolean; + node_use_dtrace: boolean; + node_use_etw: boolean; + node_use_openssl: boolean; + target_arch: string; + v8_no_strict_aliasing: number; + v8_use_snapshot: boolean; + visibility: string; + }; + }; + kill(pid: number, signal?: string | number): void; + pid: number; + ppid: number; + title: string; + arch: string; + platform: Platform; + mainModule?: Module; + memoryUsage(): MemoryUsage; + cpuUsage(previousValue?: CpuUsage): CpuUsage; + nextTick(callback: Function, ...args: any[]): void; + release: ProcessRelease; + features: { + inspector: boolean; + debug: boolean; + uv: boolean; + ipv6: boolean; + tls_alpn: boolean; + tls_sni: boolean; + tls_ocsp: boolean; + tls: boolean; + }; + /** + * Can only be set if not in worker thread. + */ + umask(mask?: number): number; + uptime(): number; + hrtime: HRTime; + domain: Domain; + + // Worker + send?(message: any, sendHandle?: any, options?: { swallowErrors?: boolean}, callback?: (error: Error | null) => void): boolean; + disconnect(): void; + connected: boolean; + + /** + * The `process.allowedNodeEnvironmentFlags` property is a special, + * read-only `Set` of flags allowable within the [`NODE_OPTIONS`][] + * environment variable. + */ + allowedNodeEnvironmentFlags: ReadonlySet; + + /** + * Only available with `--experimental-report` + */ + report?: ProcessReport; + + resourceUsage(): ResourceUsage; + + /** + * EventEmitter + * 1. beforeExit + * 2. disconnect + * 3. exit + * 4. message + * 5. rejectionHandled + * 6. uncaughtException + * 7. unhandledRejection + * 8. warning + * 9. message + * 10. + * 11. newListener/removeListener inherited from EventEmitter + */ + addListener(event: "beforeExit", listener: BeforeExitListener): this; + addListener(event: "disconnect", listener: DisconnectListener): this; + addListener(event: "exit", listener: ExitListener): this; + addListener(event: "rejectionHandled", listener: RejectionHandledListener): this; + addListener(event: "uncaughtException", listener: UncaughtExceptionListener): this; + addListener(event: "unhandledRejection", listener: UnhandledRejectionListener): this; + addListener(event: "warning", listener: WarningListener): this; + addListener(event: "message", listener: MessageListener): this; + addListener(event: Signals, listener: SignalsListener): this; + addListener(event: "newListener", listener: NewListenerListener): this; + addListener(event: "removeListener", listener: RemoveListenerListener): this; + addListener(event: "multipleResolves", listener: MultipleResolveListener): this; + + emit(event: "beforeExit", code: number): boolean; + emit(event: "disconnect"): boolean; + emit(event: "exit", code: number): boolean; + emit(event: "rejectionHandled", promise: Promise): boolean; + emit(event: "uncaughtException", error: Error): boolean; + emit(event: "unhandledRejection", reason: any, promise: Promise): boolean; + emit(event: "warning", warning: Error): boolean; + emit(event: "message", message: any, sendHandle: any): this; + emit(event: Signals, signal: Signals): boolean; + emit(event: "newListener", eventName: string | symbol, listener: (...args: any[]) => void): this; + emit(event: "removeListener", eventName: string, listener: (...args: any[]) => void): this; + emit(event: "multipleResolves", listener: MultipleResolveListener): this; + + on(event: "beforeExit", listener: BeforeExitListener): this; + on(event: "disconnect", listener: DisconnectListener): this; + on(event: "exit", listener: ExitListener): this; + on(event: "rejectionHandled", listener: RejectionHandledListener): this; + on(event: "uncaughtException", listener: UncaughtExceptionListener): this; + on(event: "unhandledRejection", listener: UnhandledRejectionListener): this; + on(event: "warning", listener: WarningListener): this; + on(event: "message", listener: MessageListener): this; + on(event: Signals, listener: SignalsListener): this; + on(event: "newListener", listener: NewListenerListener): this; + on(event: "removeListener", listener: RemoveListenerListener): this; + on(event: "multipleResolves", listener: MultipleResolveListener): this; + + once(event: "beforeExit", listener: BeforeExitListener): this; + once(event: "disconnect", listener: DisconnectListener): this; + once(event: "exit", listener: ExitListener): this; + once(event: "rejectionHandled", listener: RejectionHandledListener): this; + once(event: "uncaughtException", listener: UncaughtExceptionListener): this; + once(event: "unhandledRejection", listener: UnhandledRejectionListener): this; + once(event: "warning", listener: WarningListener): this; + once(event: "message", listener: MessageListener): this; + once(event: Signals, listener: SignalsListener): this; + once(event: "newListener", listener: NewListenerListener): this; + once(event: "removeListener", listener: RemoveListenerListener): this; + once(event: "multipleResolves", listener: MultipleResolveListener): this; + + prependListener(event: "beforeExit", listener: BeforeExitListener): this; + prependListener(event: "disconnect", listener: DisconnectListener): this; + prependListener(event: "exit", listener: ExitListener): this; + prependListener(event: "rejectionHandled", listener: RejectionHandledListener): this; + prependListener(event: "uncaughtException", listener: UncaughtExceptionListener): this; + prependListener(event: "unhandledRejection", listener: UnhandledRejectionListener): this; + prependListener(event: "warning", listener: WarningListener): this; + prependListener(event: "message", listener: MessageListener): this; + prependListener(event: Signals, listener: SignalsListener): this; + prependListener(event: "newListener", listener: NewListenerListener): this; + prependListener(event: "removeListener", listener: RemoveListenerListener): this; + prependListener(event: "multipleResolves", listener: MultipleResolveListener): this; + + prependOnceListener(event: "beforeExit", listener: BeforeExitListener): this; + prependOnceListener(event: "disconnect", listener: DisconnectListener): this; + prependOnceListener(event: "exit", listener: ExitListener): this; + prependOnceListener(event: "rejectionHandled", listener: RejectionHandledListener): this; + prependOnceListener(event: "uncaughtException", listener: UncaughtExceptionListener): this; + prependOnceListener(event: "unhandledRejection", listener: UnhandledRejectionListener): this; + prependOnceListener(event: "warning", listener: WarningListener): this; + prependOnceListener(event: "message", listener: MessageListener): this; + prependOnceListener(event: Signals, listener: SignalsListener): this; + prependOnceListener(event: "newListener", listener: NewListenerListener): this; + prependOnceListener(event: "removeListener", listener: RemoveListenerListener): this; + prependOnceListener(event: "multipleResolves", listener: MultipleResolveListener): this; + + listeners(event: "beforeExit"): BeforeExitListener[]; + listeners(event: "disconnect"): DisconnectListener[]; + listeners(event: "exit"): ExitListener[]; + listeners(event: "rejectionHandled"): RejectionHandledListener[]; + listeners(event: "uncaughtException"): UncaughtExceptionListener[]; + listeners(event: "unhandledRejection"): UnhandledRejectionListener[]; + listeners(event: "warning"): WarningListener[]; + listeners(event: "message"): MessageListener[]; + listeners(event: Signals): SignalsListener[]; + listeners(event: "newListener"): NewListenerListener[]; + listeners(event: "removeListener"): RemoveListenerListener[]; + listeners(event: "multipleResolves"): MultipleResolveListener[]; + } + + interface Global { + Array: typeof Array; + ArrayBuffer: typeof ArrayBuffer; + Boolean: typeof Boolean; + Buffer: typeof Buffer; + DataView: typeof DataView; + Date: typeof Date; + Error: typeof Error; + EvalError: typeof EvalError; + Float32Array: typeof Float32Array; + Float64Array: typeof Float64Array; + Function: typeof Function; + GLOBAL: Global; + Infinity: typeof Infinity; + Int16Array: typeof Int16Array; + Int32Array: typeof Int32Array; + Int8Array: typeof Int8Array; + Intl: typeof Intl; + JSON: typeof JSON; + Map: MapConstructor; + Math: typeof Math; + NaN: typeof NaN; + Number: typeof Number; + Object: typeof Object; + Promise: typeof Promise; + RangeError: typeof RangeError; + ReferenceError: typeof ReferenceError; + RegExp: typeof RegExp; + Set: SetConstructor; + String: typeof String; + Symbol: Function; + SyntaxError: typeof SyntaxError; + TypeError: typeof TypeError; + URIError: typeof URIError; + Uint16Array: typeof Uint16Array; + Uint32Array: typeof Uint32Array; + Uint8Array: typeof Uint8Array; + Uint8ClampedArray: typeof Uint8ClampedArray; + WeakMap: WeakMapConstructor; + WeakSet: WeakSetConstructor; + clearImmediate: (immediateId: Immediate) => void; + clearInterval: (intervalId: Timeout) => void; + clearTimeout: (timeoutId: Timeout) => void; + console: typeof console; + decodeURI: typeof decodeURI; + decodeURIComponent: typeof decodeURIComponent; + encodeURI: typeof encodeURI; + encodeURIComponent: typeof encodeURIComponent; + escape: (str: string) => string; + eval: typeof eval; + global: Global; + isFinite: typeof isFinite; + isNaN: typeof isNaN; + parseFloat: typeof parseFloat; + parseInt: typeof parseInt; + process: Process; + /** + * @deprecated Use `global`. + */ + root: Global; + setImmediate: (callback: (...args: any[]) => void, ...args: any[]) => Immediate; + setInterval: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => Timeout; + setTimeout: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => Timeout; + queueMicrotask: typeof queueMicrotask; + undefined: typeof undefined; + unescape: (str: string) => string; + gc: () => void; + v8debug?: any; + } + + interface RefCounted { + ref(): this; + unref(): this; + } + + // compatibility with older typings + interface Timer extends RefCounted { + hasRef(): boolean; + refresh(): this; + } + + interface Immediate extends RefCounted { + hasRef(): boolean; + _onImmediate: Function; // to distinguish it from the Timeout class + } + + interface Timeout extends Timer { + hasRef(): boolean; + refresh(): this; + } + + type TypedArray = Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | Int8Array | Int16Array | Int32Array | Float32Array | Float64Array; + type ArrayBufferView = TypedArray | DataView; + + interface NodeRequireCache { + [path: string]: NodeModule; + } + + interface Require { + /* tslint:disable-next-line:callable-types */ + (id: string): any; + resolve: RequireResolve; + cache: NodeRequireCache; + /** + * @deprecated + */ + extensions: RequireExtensions; + main: Module | undefined; + } + + interface RequireResolve { + (id: string, options?: { paths?: string[]; }): string; + paths(request: string): string[] | null; + } + + interface RequireExtensions { + '.js': (m: Module, filename: string) => any; + '.json': (m: Module, filename: string) => any; + '.node': (m: Module, filename: string) => any; + [ext: string]: (m: Module, filename: string) => any; + } + interface Module { + exports: any; + require: Require; + id: string; + filename: string; + loaded: boolean; + parent: Module | null; + children: Module[]; + paths: string[]; + } +} diff --git a/themes/piratecare/node_modules/@types/node/http.d.ts b/themes/piratecare/node_modules/@types/node/http.d.ts new file mode 100644 index 0000000..f6bc57e --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/http.d.ts @@ -0,0 +1,395 @@ +declare module "http" { + import * as events from "events"; + import * as stream from "stream"; + import { URL } from "url"; + import { Socket, Server as NetServer } from "net"; + + // incoming headers will never contain number + interface IncomingHttpHeaders { + 'accept'?: string; + 'accept-language'?: string; + 'accept-patch'?: string; + 'accept-ranges'?: string; + 'access-control-allow-credentials'?: string; + 'access-control-allow-headers'?: string; + 'access-control-allow-methods'?: string; + 'access-control-allow-origin'?: string; + 'access-control-expose-headers'?: string; + 'access-control-max-age'?: string; + 'age'?: string; + 'allow'?: string; + 'alt-svc'?: string; + 'authorization'?: string; + 'cache-control'?: string; + 'connection'?: string; + 'content-disposition'?: string; + 'content-encoding'?: string; + 'content-language'?: string; + 'content-length'?: string; + 'content-location'?: string; + 'content-range'?: string; + 'content-type'?: string; + 'cookie'?: string; + 'date'?: string; + 'expect'?: string; + 'expires'?: string; + 'forwarded'?: string; + 'from'?: string; + 'host'?: string; + 'if-match'?: string; + 'if-modified-since'?: string; + 'if-none-match'?: string; + 'if-unmodified-since'?: string; + 'last-modified'?: string; + 'location'?: string; + 'pragma'?: string; + 'proxy-authenticate'?: string; + 'proxy-authorization'?: string; + 'public-key-pins'?: string; + 'range'?: string; + 'referer'?: string; + 'retry-after'?: string; + 'set-cookie'?: string[]; + 'strict-transport-security'?: string; + 'tk'?: string; + 'trailer'?: string; + 'transfer-encoding'?: string; + 'upgrade'?: string; + 'user-agent'?: string; + 'vary'?: string; + 'via'?: string; + 'warning'?: string; + 'www-authenticate'?: string; + [header: string]: string | string[] | undefined; + } + + // outgoing headers allows numbers (as they are converted internally to strings) + interface OutgoingHttpHeaders { + [header: string]: number | string | string[] | undefined; + } + + interface ClientRequestArgs { + protocol?: string | null; + host?: string | null; + hostname?: string | null; + family?: number; + port?: number | string | null; + defaultPort?: number | string; + localAddress?: string; + socketPath?: string; + /** + * @default 8192 + */ + maxHeaderSize?: number; + method?: string; + path?: string | null; + headers?: OutgoingHttpHeaders; + auth?: string | null; + agent?: Agent | boolean; + _defaultAgent?: Agent; + timeout?: number; + setHost?: boolean; + // https://github.com/nodejs/node/blob/master/lib/_http_client.js#L278 + createConnection?: (options: ClientRequestArgs, oncreate: (err: Error, socket: Socket) => void) => Socket; + } + + interface ServerOptions { + IncomingMessage?: typeof IncomingMessage; + ServerResponse?: typeof ServerResponse; + /** + * Optionally overrides the value of + * [`--max-http-header-size`][] for requests received by this server, i.e. + * the maximum length of request headers in bytes. + * @default 8192 + */ + maxHeaderSize?: number; + } + + type RequestListener = (req: IncomingMessage, res: ServerResponse) => void; + + interface HttpBase { + setTimeout(msecs?: number, callback?: () => void): this; + setTimeout(callback: () => void): this; + /** + * Limits maximum incoming headers count. If set to 0, no limit will be applied. + * @default 2000 + * {@link https://nodejs.org/api/http.html#http_server_maxheaderscount} + */ + maxHeadersCount: number | null; + timeout: number; + /** + * Limit the amount of time the parser will wait to receive the complete HTTP headers. + * @default 60000 + * {@link https://nodejs.org/api/http.html#http_server_headerstimeout} + */ + headersTimeout: number; + keepAliveTimeout: number; + } + + interface Server extends HttpBase {} + class Server extends NetServer { + constructor(requestListener?: RequestListener); + constructor(options: ServerOptions, requestListener?: RequestListener); + } + + // https://github.com/nodejs/node/blob/master/lib/_http_outgoing.js + class OutgoingMessage extends stream.Writable { + upgrading: boolean; + chunkedEncoding: boolean; + shouldKeepAlive: boolean; + useChunkedEncodingByDefault: boolean; + sendDate: boolean; + /** + * @deprecated Use `writableEnded` instead. + */ + finished: boolean; + headersSent: boolean; + /** + * @deprecate Use `socket` instead. + */ + connection: Socket; + socket: Socket; + + constructor(); + + setTimeout(msecs: number, callback?: () => void): this; + setHeader(name: string, value: number | string | string[]): void; + getHeader(name: string): number | string | string[] | undefined; + getHeaders(): OutgoingHttpHeaders; + getHeaderNames(): string[]; + hasHeader(name: string): boolean; + removeHeader(name: string): void; + addTrailers(headers: OutgoingHttpHeaders | Array<[string, string]>): void; + flushHeaders(): void; + } + + // https://github.com/nodejs/node/blob/master/lib/_http_server.js#L108-L256 + class ServerResponse extends OutgoingMessage { + statusCode: number; + statusMessage: string; + + constructor(req: IncomingMessage); + + assignSocket(socket: Socket): void; + detachSocket(socket: Socket): void; + // https://github.com/nodejs/node/blob/master/test/parallel/test-http-write-callbacks.js#L53 + // no args in writeContinue callback + writeContinue(callback?: () => void): void; + writeHead(statusCode: number, reasonPhrase?: string, headers?: OutgoingHttpHeaders): this; + writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this; + writeProcessing(): void; + } + + interface InformationEvent { + statusCode: number; + statusMessage: string; + httpVersion: string; + httpVersionMajor: number; + httpVersionMinor: number; + headers: IncomingHttpHeaders; + rawHeaders: string[]; + } + + // https://github.com/nodejs/node/blob/master/lib/_http_client.js#L77 + class ClientRequest extends OutgoingMessage { + connection: Socket; + socket: Socket; + aborted: number; + + constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void); + + method: string; + path: string; + abort(): void; + onSocket(socket: Socket): void; + setTimeout(timeout: number, callback?: () => void): this; + setNoDelay(noDelay?: boolean): void; + setSocketKeepAlive(enable?: boolean, initialDelay?: number): void; + + addListener(event: 'abort', listener: () => void): this; + addListener(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + addListener(event: 'continue', listener: () => void): this; + addListener(event: 'information', listener: (info: InformationEvent) => void): this; + addListener(event: 'response', listener: (response: IncomingMessage) => void): this; + addListener(event: 'socket', listener: (socket: Socket) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + on(event: 'abort', listener: () => void): this; + on(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + on(event: 'continue', listener: () => void): this; + on(event: 'information', listener: (info: InformationEvent) => void): this; + on(event: 'response', listener: (response: IncomingMessage) => void): this; + on(event: 'socket', listener: (socket: Socket) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: 'abort', listener: () => void): this; + once(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + once(event: 'continue', listener: () => void): this; + once(event: 'information', listener: (info: InformationEvent) => void): this; + once(event: 'response', listener: (response: IncomingMessage) => void): this; + once(event: 'socket', listener: (socket: Socket) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: 'abort', listener: () => void): this; + prependListener(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + prependListener(event: 'continue', listener: () => void): this; + prependListener(event: 'information', listener: (info: InformationEvent) => void): this; + prependListener(event: 'response', listener: (response: IncomingMessage) => void): this; + prependListener(event: 'socket', listener: (socket: Socket) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: 'abort', listener: () => void): this; + prependOnceListener(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + prependOnceListener(event: 'continue', listener: () => void): this; + prependOnceListener(event: 'information', listener: (info: InformationEvent) => void): this; + prependOnceListener(event: 'response', listener: (response: IncomingMessage) => void): this; + prependOnceListener(event: 'socket', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + class IncomingMessage extends stream.Readable { + constructor(socket: Socket); + + httpVersion: string; + httpVersionMajor: number; + httpVersionMinor: number; + complete: boolean; + /** + * @deprecate Use `socket` instead. + */ + connection: Socket; + socket: Socket; + headers: IncomingHttpHeaders; + rawHeaders: string[]; + trailers: { [key: string]: string | undefined }; + rawTrailers: string[]; + setTimeout(msecs: number, callback?: () => void): this; + /** + * Only valid for request obtained from http.Server. + */ + method?: string; + /** + * Only valid for request obtained from http.Server. + */ + url?: string; + /** + * Only valid for response obtained from http.ClientRequest. + */ + statusCode?: number; + /** + * Only valid for response obtained from http.ClientRequest. + */ + statusMessage?: string; + destroy(error?: Error): void; + } + + interface AgentOptions { + /** + * Keep sockets around in a pool to be used by other requests in the future. Default = false + */ + keepAlive?: boolean; + /** + * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000. + * Only relevant if keepAlive is set to true. + */ + keepAliveMsecs?: number; + /** + * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity + */ + maxSockets?: number; + /** + * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256. + */ + maxFreeSockets?: number; + /** + * Socket timeout in milliseconds. This will set the timeout after the socket is connected. + */ + timeout?: number; + } + + class Agent { + maxFreeSockets: number; + maxSockets: number; + readonly sockets: { + readonly [key: string]: Socket[]; + }; + readonly requests: { + readonly [key: string]: IncomingMessage[]; + }; + + constructor(opts?: AgentOptions); + + /** + * Destroy any sockets that are currently in use by the agent. + * It is usually not necessary to do this. However, if you are using an agent with KeepAlive enabled, + * then it is best to explicitly shut down the agent when you know that it will no longer be used. Otherwise, + * sockets may hang open for quite a long time before the server terminates them. + */ + destroy(): void; + } + + const METHODS: string[]; + + const STATUS_CODES: { + [errorCode: number]: string | undefined; + [errorCode: string]: string | undefined; + }; + + function createServer(requestListener?: RequestListener): Server; + function createServer(options: ServerOptions, requestListener?: RequestListener): Server; + + // although RequestOptions are passed as ClientRequestArgs to ClientRequest directly, + // create interface RequestOptions would make the naming more clear to developers + interface RequestOptions extends ClientRequestArgs { } + function request(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest; + function request(url: string | URL, options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; + function get(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest; + function get(url: string | URL, options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; + let globalAgent: Agent; + + /** + * Read-only property specifying the maximum allowed size of HTTP headers in bytes. + * Defaults to 8KB. Configurable using the [`--max-http-header-size`][] CLI option. + */ + const maxHeaderSize: number; +} diff --git a/themes/piratecare/node_modules/@types/node/http2.d.ts b/themes/piratecare/node_modules/@types/node/http2.d.ts new file mode 100644 index 0000000..667dc1c --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/http2.d.ts @@ -0,0 +1,948 @@ +declare module "http2" { + import * as events from "events"; + import * as fs from "fs"; + import * as net from "net"; + import * as stream from "stream"; + import * as tls from "tls"; + import * as url from "url"; + + import { IncomingHttpHeaders as Http1IncomingHttpHeaders, OutgoingHttpHeaders, IncomingMessage, ServerResponse } from "http"; + export { OutgoingHttpHeaders } from "http"; + + export interface IncomingHttpStatusHeader { + ":status"?: number; + } + + export interface IncomingHttpHeaders extends Http1IncomingHttpHeaders { + ":path"?: string; + ":method"?: string; + ":authority"?: string; + ":scheme"?: string; + } + + // Http2Stream + + export interface StreamPriorityOptions { + exclusive?: boolean; + parent?: number; + weight?: number; + silent?: boolean; + } + + export interface StreamState { + localWindowSize?: number; + state?: number; + localClose?: number; + remoteClose?: number; + sumDependencyWeight?: number; + weight?: number; + } + + export interface ServerStreamResponseOptions { + endStream?: boolean; + waitForTrailers?: boolean; + } + + export interface StatOptions { + offset: number; + length: number; + } + + export interface ServerStreamFileResponseOptions { + statCheck?(stats: fs.Stats, headers: OutgoingHttpHeaders, statOptions: StatOptions): void | boolean; + waitForTrailers?: boolean; + offset?: number; + length?: number; + } + + export interface ServerStreamFileResponseOptionsWithError extends ServerStreamFileResponseOptions { + onError?(err: NodeJS.ErrnoException): void; + } + + export interface Http2Stream extends stream.Duplex { + readonly aborted: boolean; + readonly bufferSize: number; + readonly closed: boolean; + readonly destroyed: boolean; + /** + * Set the true if the END_STREAM flag was set in the request or response HEADERS frame received, + * indicating that no additional data should be received and the readable side of the Http2Stream will be closed. + */ + readonly endAfterHeaders: boolean; + readonly id?: number; + readonly pending: boolean; + readonly rstCode: number; + readonly sentHeaders: OutgoingHttpHeaders; + readonly sentInfoHeaders?: OutgoingHttpHeaders[]; + readonly sentTrailers?: OutgoingHttpHeaders; + readonly session: Http2Session; + readonly state: StreamState; + + close(code?: number, callback?: () => void): void; + priority(options: StreamPriorityOptions): void; + setTimeout(msecs: number, callback?: () => void): void; + sendTrailers(headers: OutgoingHttpHeaders): void; + + addListener(event: "aborted", listener: () => void): this; + addListener(event: "close", listener: () => void): this; + addListener(event: "data", listener: (chunk: Buffer | string) => void): this; + addListener(event: "drain", listener: () => void): this; + addListener(event: "end", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "finish", listener: () => void): this; + addListener(event: "frameError", listener: (frameType: number, errorCode: number) => void): this; + addListener(event: "pipe", listener: (src: stream.Readable) => void): this; + addListener(event: "unpipe", listener: (src: stream.Readable) => void): this; + addListener(event: "streamClosed", listener: (code: number) => void): this; + addListener(event: "timeout", listener: () => void): this; + addListener(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: "wantTrailers", listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "aborted"): boolean; + emit(event: "close"): boolean; + emit(event: "data", chunk: Buffer | string): boolean; + emit(event: "drain"): boolean; + emit(event: "end"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "finish"): boolean; + emit(event: "frameError", frameType: number, errorCode: number): boolean; + emit(event: "pipe", src: stream.Readable): boolean; + emit(event: "unpipe", src: stream.Readable): boolean; + emit(event: "streamClosed", code: number): boolean; + emit(event: "timeout"): boolean; + emit(event: "trailers", trailers: IncomingHttpHeaders, flags: number): boolean; + emit(event: "wantTrailers"): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "aborted", listener: () => void): this; + on(event: "close", listener: () => void): this; + on(event: "data", listener: (chunk: Buffer | string) => void): this; + on(event: "drain", listener: () => void): this; + on(event: "end", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "finish", listener: () => void): this; + on(event: "frameError", listener: (frameType: number, errorCode: number) => void): this; + on(event: "pipe", listener: (src: stream.Readable) => void): this; + on(event: "unpipe", listener: (src: stream.Readable) => void): this; + on(event: "streamClosed", listener: (code: number) => void): this; + on(event: "timeout", listener: () => void): this; + on(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + on(event: "wantTrailers", listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "aborted", listener: () => void): this; + once(event: "close", listener: () => void): this; + once(event: "data", listener: (chunk: Buffer | string) => void): this; + once(event: "drain", listener: () => void): this; + once(event: "end", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "finish", listener: () => void): this; + once(event: "frameError", listener: (frameType: number, errorCode: number) => void): this; + once(event: "pipe", listener: (src: stream.Readable) => void): this; + once(event: "unpipe", listener: (src: stream.Readable) => void): this; + once(event: "streamClosed", listener: (code: number) => void): this; + once(event: "timeout", listener: () => void): this; + once(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + once(event: "wantTrailers", listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "aborted", listener: () => void): this; + prependListener(event: "close", listener: () => void): this; + prependListener(event: "data", listener: (chunk: Buffer | string) => void): this; + prependListener(event: "drain", listener: () => void): this; + prependListener(event: "end", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "finish", listener: () => void): this; + prependListener(event: "frameError", listener: (frameType: number, errorCode: number) => void): this; + prependListener(event: "pipe", listener: (src: stream.Readable) => void): this; + prependListener(event: "unpipe", listener: (src: stream.Readable) => void): this; + prependListener(event: "streamClosed", listener: (code: number) => void): this; + prependListener(event: "timeout", listener: () => void): this; + prependListener(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: "wantTrailers", listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "aborted", listener: () => void): this; + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "data", listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: "drain", listener: () => void): this; + prependOnceListener(event: "end", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "finish", listener: () => void): this; + prependOnceListener(event: "frameError", listener: (frameType: number, errorCode: number) => void): this; + prependOnceListener(event: "pipe", listener: (src: stream.Readable) => void): this; + prependOnceListener(event: "unpipe", listener: (src: stream.Readable) => void): this; + prependOnceListener(event: "streamClosed", listener: (code: number) => void): this; + prependOnceListener(event: "timeout", listener: () => void): this; + prependOnceListener(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: "wantTrailers", listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + export interface ClientHttp2Stream extends Http2Stream { + addListener(event: "continue", listener: () => {}): this; + addListener(event: "headers", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: "response", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "continue"): boolean; + emit(event: "headers", headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: "push", headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: "response", headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "continue", listener: () => {}): this; + on(event: "headers", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: "response", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "continue", listener: () => {}): this; + once(event: "headers", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: "response", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "continue", listener: () => {}): this; + prependListener(event: "headers", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: "response", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "continue", listener: () => {}): this; + prependOnceListener(event: "headers", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: "response", listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + export interface ServerHttp2Stream extends Http2Stream { + readonly headersSent: boolean; + readonly pushAllowed: boolean; + additionalHeaders(headers: OutgoingHttpHeaders): void; + pushStream(headers: OutgoingHttpHeaders, callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void): void; + pushStream(headers: OutgoingHttpHeaders, options?: StreamPriorityOptions, callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void): void; + respond(headers?: OutgoingHttpHeaders, options?: ServerStreamResponseOptions): void; + respondWithFD(fd: number | fs.promises.FileHandle, headers?: OutgoingHttpHeaders, options?: ServerStreamFileResponseOptions): void; + respondWithFile(path: string, headers?: OutgoingHttpHeaders, options?: ServerStreamFileResponseOptionsWithError): void; + } + + // Http2Session + + export interface Settings { + headerTableSize?: number; + enablePush?: boolean; + initialWindowSize?: number; + maxFrameSize?: number; + maxConcurrentStreams?: number; + maxHeaderListSize?: number; + enableConnectProtocol?: boolean; + } + + export interface ClientSessionRequestOptions { + endStream?: boolean; + exclusive?: boolean; + parent?: number; + weight?: number; + waitForTrailers?: boolean; + } + + export interface SessionState { + effectiveLocalWindowSize?: number; + effectiveRecvDataLength?: number; + nextStreamID?: number; + localWindowSize?: number; + lastProcStreamID?: number; + remoteWindowSize?: number; + outboundQueueSize?: number; + deflateDynamicTableSize?: number; + inflateDynamicTableSize?: number; + } + + export interface Http2Session extends events.EventEmitter { + readonly alpnProtocol?: string; + readonly closed: boolean; + readonly connecting: boolean; + readonly destroyed: boolean; + readonly encrypted?: boolean; + readonly localSettings: Settings; + readonly originSet?: string[]; + readonly pendingSettingsAck: boolean; + readonly remoteSettings: Settings; + readonly socket: net.Socket | tls.TLSSocket; + readonly state: SessionState; + readonly type: number; + + close(callback?: () => void): void; + destroy(error?: Error, code?: number): void; + goaway(code?: number, lastStreamID?: number, opaqueData?: NodeJS.ArrayBufferView): void; + ping(callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean; + ping(payload: NodeJS.ArrayBufferView, callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean; + ref(): void; + setTimeout(msecs: number, callback?: () => void): void; + settings(settings: Settings): void; + unref(): void; + + addListener(event: "close", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this; + addListener(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + addListener(event: "localSettings", listener: (settings: Settings) => void): this; + addListener(event: "ping", listener: () => void): this; + addListener(event: "remoteSettings", listener: (settings: Settings) => void): this; + addListener(event: "timeout", listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "close"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "frameError", frameType: number, errorCode: number, streamID: number): boolean; + emit(event: "goaway", errorCode: number, lastStreamID: number, opaqueData: Buffer): boolean; + emit(event: "localSettings", settings: Settings): boolean; + emit(event: "ping"): boolean; + emit(event: "remoteSettings", settings: Settings): boolean; + emit(event: "timeout"): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "close", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this; + on(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + on(event: "localSettings", listener: (settings: Settings) => void): this; + on(event: "ping", listener: () => void): this; + on(event: "remoteSettings", listener: (settings: Settings) => void): this; + on(event: "timeout", listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "close", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this; + once(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + once(event: "localSettings", listener: (settings: Settings) => void): this; + once(event: "ping", listener: () => void): this; + once(event: "remoteSettings", listener: (settings: Settings) => void): this; + once(event: "timeout", listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "close", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this; + prependListener(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + prependListener(event: "localSettings", listener: (settings: Settings) => void): this; + prependListener(event: "ping", listener: () => void): this; + prependListener(event: "remoteSettings", listener: (settings: Settings) => void): this; + prependListener(event: "timeout", listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this; + prependOnceListener(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + prependOnceListener(event: "localSettings", listener: (settings: Settings) => void): this; + prependOnceListener(event: "ping", listener: () => void): this; + prependOnceListener(event: "remoteSettings", listener: (settings: Settings) => void): this; + prependOnceListener(event: "timeout", listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + export interface ClientHttp2Session extends Http2Session { + request(headers?: OutgoingHttpHeaders, options?: ClientSessionRequestOptions): ClientHttp2Stream; + + addListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this; + addListener(event: "origin", listener: (origins: string[]) => void): this; + addListener(event: "connect", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + addListener(event: "stream", listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "altsvc", alt: string, origin: string, stream: number): boolean; + emit(event: "origin", origins: string[]): boolean; + emit(event: "connect", session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket): boolean; + emit(event: "stream", stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this; + on(event: "origin", listener: (origins: string[]) => void): this; + on(event: "connect", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + on(event: "stream", listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this; + once(event: "origin", listener: (origins: string[]) => void): this; + once(event: "connect", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + once(event: "stream", listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this; + prependListener(event: "origin", listener: (origins: string[]) => void): this; + prependListener(event: "connect", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependListener(event: "stream", listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this; + prependOnceListener(event: "origin", listener: (origins: string[]) => void): this; + prependOnceListener(event: "connect", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependOnceListener(event: "stream", listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + export interface AlternativeServiceOptions { + origin: number | string | url.URL; + } + + export interface ServerHttp2Session extends Http2Session { + readonly server: Http2Server | Http2SecureServer; + + altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; + origin(...args: Array): void; + + addListener(event: "connect", listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + addListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "connect", session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket): boolean; + emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "connect", listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + on(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "connect", listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + once(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "connect", listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "connect", listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependOnceListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + // Http2Server + + export interface SessionOptions { + maxDeflateDynamicTableSize?: number; + maxSessionMemory?: number; + maxHeaderListPairs?: number; + maxOutstandingPings?: number; + maxSendHeaderBlockLength?: number; + paddingStrategy?: number; + peerMaxConcurrentStreams?: number; + settings?: Settings; + + selectPadding?(frameLen: number, maxFrameLen: number): number; + createConnection?(authority: url.URL, option: SessionOptions): stream.Duplex; + } + + export interface ClientSessionOptions extends SessionOptions { + maxReservedRemoteStreams?: number; + createConnection?: (authority: url.URL, option: SessionOptions) => stream.Duplex; + protocol?: 'http:' | 'https:'; + } + + export interface ServerSessionOptions extends SessionOptions { + Http1IncomingMessage?: typeof IncomingMessage; + Http1ServerResponse?: typeof ServerResponse; + Http2ServerRequest?: typeof Http2ServerRequest; + Http2ServerResponse?: typeof Http2ServerResponse; + } + + export interface SecureClientSessionOptions extends ClientSessionOptions, tls.ConnectionOptions { } + export interface SecureServerSessionOptions extends ServerSessionOptions, tls.TlsOptions { } + + export interface ServerOptions extends ServerSessionOptions { } + + export interface SecureServerOptions extends SecureServerSessionOptions { + allowHTTP1?: boolean; + origins?: string[]; + } + + export interface Http2Server extends net.Server { + addListener(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: "session", listener: (session: ServerHttp2Session) => void): this; + addListener(event: "sessionError", listener: (err: Error) => void): this; + addListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: "timeout", listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "checkContinue", request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: "request", request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: "session", session: ServerHttp2Session): boolean; + emit(event: "sessionError", err: Error): boolean; + emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: "timeout"): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: "session", listener: (session: ServerHttp2Session) => void): this; + on(event: "sessionError", listener: (err: Error) => void): this; + on(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: "timeout", listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: "session", listener: (session: ServerHttp2Session) => void): this; + once(event: "sessionError", listener: (err: Error) => void): this; + once(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: "timeout", listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: "session", listener: (session: ServerHttp2Session) => void): this; + prependListener(event: "sessionError", listener: (err: Error) => void): this; + prependListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: "timeout", listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: "session", listener: (session: ServerHttp2Session) => void): this; + prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; + prependOnceListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: "timeout", listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + + setTimeout(msec?: number, callback?: () => void): this; + } + + export interface Http2SecureServer extends tls.Server { + addListener(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: "session", listener: (session: ServerHttp2Session) => void): this; + addListener(event: "sessionError", listener: (err: Error) => void): this; + addListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: "timeout", listener: () => void): this; + addListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "checkContinue", request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: "request", request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: "session", session: ServerHttp2Session): boolean; + emit(event: "sessionError", err: Error): boolean; + emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: "timeout"): boolean; + emit(event: "unknownProtocol", socket: tls.TLSSocket): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: "session", listener: (session: ServerHttp2Session) => void): this; + on(event: "sessionError", listener: (err: Error) => void): this; + on(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: "timeout", listener: () => void): this; + on(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: "session", listener: (session: ServerHttp2Session) => void): this; + once(event: "sessionError", listener: (err: Error) => void): this; + once(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: "timeout", listener: () => void): this; + once(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: "session", listener: (session: ServerHttp2Session) => void): this; + prependListener(event: "sessionError", listener: (err: Error) => void): this; + prependListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: "timeout", listener: () => void): this; + prependListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "checkContinue", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: "request", listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: "session", listener: (session: ServerHttp2Session) => void): this; + prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; + prependOnceListener(event: "stream", listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: "timeout", listener: () => void): this; + prependOnceListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + + setTimeout(msec?: number, callback?: () => void): this; + } + + export class Http2ServerRequest extends stream.Readable { + constructor(stream: ServerHttp2Stream, headers: IncomingHttpHeaders, options: stream.ReadableOptions, rawHeaders: string[]); + + readonly aborted: boolean; + readonly authority: string; + readonly headers: IncomingHttpHeaders; + readonly httpVersion: string; + readonly method: string; + readonly rawHeaders: string[]; + readonly rawTrailers: string[]; + readonly scheme: string; + readonly socket: net.Socket | tls.TLSSocket; + readonly stream: ServerHttp2Stream; + readonly trailers: IncomingHttpHeaders; + readonly url: string; + + setTimeout(msecs: number, callback?: () => void): void; + read(size?: number): Buffer | string | null; + + addListener(event: "aborted", listener: (hadError: boolean, code: number) => void): this; + addListener(event: "close", listener: () => void): this; + addListener(event: "data", listener: (chunk: Buffer | string) => void): this; + addListener(event: "end", listener: () => void): this; + addListener(event: "readable", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "aborted", hadError: boolean, code: number): boolean; + emit(event: "close"): boolean; + emit(event: "data", chunk: Buffer | string): boolean; + emit(event: "end"): boolean; + emit(event: "readable"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "aborted", listener: (hadError: boolean, code: number) => void): this; + on(event: "close", listener: () => void): this; + on(event: "data", listener: (chunk: Buffer | string) => void): this; + on(event: "end", listener: () => void): this; + on(event: "readable", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "aborted", listener: (hadError: boolean, code: number) => void): this; + once(event: "close", listener: () => void): this; + once(event: "data", listener: (chunk: Buffer | string) => void): this; + once(event: "end", listener: () => void): this; + once(event: "readable", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "aborted", listener: (hadError: boolean, code: number) => void): this; + prependListener(event: "close", listener: () => void): this; + prependListener(event: "data", listener: (chunk: Buffer | string) => void): this; + prependListener(event: "end", listener: () => void): this; + prependListener(event: "readable", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "aborted", listener: (hadError: boolean, code: number) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "data", listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: "end", listener: () => void): this; + prependOnceListener(event: "readable", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + export class Http2ServerResponse extends stream.Stream { + constructor(stream: ServerHttp2Stream); + + readonly connection: net.Socket | tls.TLSSocket; + readonly finished: boolean; + readonly headersSent: boolean; + readonly socket: net.Socket | tls.TLSSocket; + readonly stream: ServerHttp2Stream; + sendDate: boolean; + statusCode: number; + statusMessage: ''; + addTrailers(trailers: OutgoingHttpHeaders): void; + end(callback?: () => void): void; + end(data: string | Uint8Array, callback?: () => void): void; + end(data: string | Uint8Array, encoding: string, callback?: () => void): void; + getHeader(name: string): string; + getHeaderNames(): string[]; + getHeaders(): OutgoingHttpHeaders; + hasHeader(name: string): boolean; + removeHeader(name: string): void; + setHeader(name: string, value: number | string | string[]): void; + setTimeout(msecs: number, callback?: () => void): void; + write(chunk: string | Uint8Array, callback?: (err: Error) => void): boolean; + write(chunk: string | Uint8Array, encoding: string, callback?: (err: Error) => void): boolean; + writeContinue(): void; + writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this; + writeHead(statusCode: number, statusMessage: string, headers?: OutgoingHttpHeaders): this; + createPushResponse(headers: OutgoingHttpHeaders, callback: (err: Error | null, res: Http2ServerResponse) => void): void; + + addListener(event: "close", listener: () => void): this; + addListener(event: "drain", listener: () => void): this; + addListener(event: "error", listener: (error: Error) => void): this; + addListener(event: "finish", listener: () => void): this; + addListener(event: "pipe", listener: (src: stream.Readable) => void): this; + addListener(event: "unpipe", listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "close"): boolean; + emit(event: "drain"): boolean; + emit(event: "error", error: Error): boolean; + emit(event: "finish"): boolean; + emit(event: "pipe", src: stream.Readable): boolean; + emit(event: "unpipe", src: stream.Readable): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "close", listener: () => void): this; + on(event: "drain", listener: () => void): this; + on(event: "error", listener: (error: Error) => void): this; + on(event: "finish", listener: () => void): this; + on(event: "pipe", listener: (src: stream.Readable) => void): this; + on(event: "unpipe", listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "close", listener: () => void): this; + once(event: "drain", listener: () => void): this; + once(event: "error", listener: (error: Error) => void): this; + once(event: "finish", listener: () => void): this; + once(event: "pipe", listener: (src: stream.Readable) => void): this; + once(event: "unpipe", listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "close", listener: () => void): this; + prependListener(event: "drain", listener: () => void): this; + prependListener(event: "error", listener: (error: Error) => void): this; + prependListener(event: "finish", listener: () => void): this; + prependListener(event: "pipe", listener: (src: stream.Readable) => void): this; + prependListener(event: "unpipe", listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "drain", listener: () => void): this; + prependOnceListener(event: "error", listener: (error: Error) => void): this; + prependOnceListener(event: "finish", listener: () => void): this; + prependOnceListener(event: "pipe", listener: (src: stream.Readable) => void): this; + prependOnceListener(event: "unpipe", listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + // Public API + + export namespace constants { + const NGHTTP2_SESSION_SERVER: number; + const NGHTTP2_SESSION_CLIENT: number; + const NGHTTP2_STREAM_STATE_IDLE: number; + const NGHTTP2_STREAM_STATE_OPEN: number; + const NGHTTP2_STREAM_STATE_RESERVED_LOCAL: number; + const NGHTTP2_STREAM_STATE_RESERVED_REMOTE: number; + const NGHTTP2_STREAM_STATE_HALF_CLOSED_LOCAL: number; + const NGHTTP2_STREAM_STATE_HALF_CLOSED_REMOTE: number; + const NGHTTP2_STREAM_STATE_CLOSED: number; + const NGHTTP2_NO_ERROR: number; + const NGHTTP2_PROTOCOL_ERROR: number; + const NGHTTP2_INTERNAL_ERROR: number; + const NGHTTP2_FLOW_CONTROL_ERROR: number; + const NGHTTP2_SETTINGS_TIMEOUT: number; + const NGHTTP2_STREAM_CLOSED: number; + const NGHTTP2_FRAME_SIZE_ERROR: number; + const NGHTTP2_REFUSED_STREAM: number; + const NGHTTP2_CANCEL: number; + const NGHTTP2_COMPRESSION_ERROR: number; + const NGHTTP2_CONNECT_ERROR: number; + const NGHTTP2_ENHANCE_YOUR_CALM: number; + const NGHTTP2_INADEQUATE_SECURITY: number; + const NGHTTP2_HTTP_1_1_REQUIRED: number; + const NGHTTP2_ERR_FRAME_SIZE_ERROR: number; + const NGHTTP2_FLAG_NONE: number; + const NGHTTP2_FLAG_END_STREAM: number; + const NGHTTP2_FLAG_END_HEADERS: number; + const NGHTTP2_FLAG_ACK: number; + const NGHTTP2_FLAG_PADDED: number; + const NGHTTP2_FLAG_PRIORITY: number; + const DEFAULT_SETTINGS_HEADER_TABLE_SIZE: number; + const DEFAULT_SETTINGS_ENABLE_PUSH: number; + const DEFAULT_SETTINGS_INITIAL_WINDOW_SIZE: number; + const DEFAULT_SETTINGS_MAX_FRAME_SIZE: number; + const MAX_MAX_FRAME_SIZE: number; + const MIN_MAX_FRAME_SIZE: number; + const MAX_INITIAL_WINDOW_SIZE: number; + const NGHTTP2_DEFAULT_WEIGHT: number; + const NGHTTP2_SETTINGS_HEADER_TABLE_SIZE: number; + const NGHTTP2_SETTINGS_ENABLE_PUSH: number; + const NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS: number; + const NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE: number; + const NGHTTP2_SETTINGS_MAX_FRAME_SIZE: number; + const NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE: number; + const PADDING_STRATEGY_NONE: number; + const PADDING_STRATEGY_MAX: number; + const PADDING_STRATEGY_CALLBACK: number; + const HTTP2_HEADER_STATUS: string; + const HTTP2_HEADER_METHOD: string; + const HTTP2_HEADER_AUTHORITY: string; + const HTTP2_HEADER_SCHEME: string; + const HTTP2_HEADER_PATH: string; + const HTTP2_HEADER_ACCEPT_CHARSET: string; + const HTTP2_HEADER_ACCEPT_ENCODING: string; + const HTTP2_HEADER_ACCEPT_LANGUAGE: string; + const HTTP2_HEADER_ACCEPT_RANGES: string; + const HTTP2_HEADER_ACCEPT: string; + const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN: string; + const HTTP2_HEADER_AGE: string; + const HTTP2_HEADER_ALLOW: string; + const HTTP2_HEADER_AUTHORIZATION: string; + const HTTP2_HEADER_CACHE_CONTROL: string; + const HTTP2_HEADER_CONNECTION: string; + const HTTP2_HEADER_CONTENT_DISPOSITION: string; + const HTTP2_HEADER_CONTENT_ENCODING: string; + const HTTP2_HEADER_CONTENT_LANGUAGE: string; + const HTTP2_HEADER_CONTENT_LENGTH: string; + const HTTP2_HEADER_CONTENT_LOCATION: string; + const HTTP2_HEADER_CONTENT_MD5: string; + const HTTP2_HEADER_CONTENT_RANGE: string; + const HTTP2_HEADER_CONTENT_TYPE: string; + const HTTP2_HEADER_COOKIE: string; + const HTTP2_HEADER_DATE: string; + const HTTP2_HEADER_ETAG: string; + const HTTP2_HEADER_EXPECT: string; + const HTTP2_HEADER_EXPIRES: string; + const HTTP2_HEADER_FROM: string; + const HTTP2_HEADER_HOST: string; + const HTTP2_HEADER_IF_MATCH: string; + const HTTP2_HEADER_IF_MODIFIED_SINCE: string; + const HTTP2_HEADER_IF_NONE_MATCH: string; + const HTTP2_HEADER_IF_RANGE: string; + const HTTP2_HEADER_IF_UNMODIFIED_SINCE: string; + const HTTP2_HEADER_LAST_MODIFIED: string; + const HTTP2_HEADER_LINK: string; + const HTTP2_HEADER_LOCATION: string; + const HTTP2_HEADER_MAX_FORWARDS: string; + const HTTP2_HEADER_PREFER: string; + const HTTP2_HEADER_PROXY_AUTHENTICATE: string; + const HTTP2_HEADER_PROXY_AUTHORIZATION: string; + const HTTP2_HEADER_RANGE: string; + const HTTP2_HEADER_REFERER: string; + const HTTP2_HEADER_REFRESH: string; + const HTTP2_HEADER_RETRY_AFTER: string; + const HTTP2_HEADER_SERVER: string; + const HTTP2_HEADER_SET_COOKIE: string; + const HTTP2_HEADER_STRICT_TRANSPORT_SECURITY: string; + const HTTP2_HEADER_TRANSFER_ENCODING: string; + const HTTP2_HEADER_TE: string; + const HTTP2_HEADER_UPGRADE: string; + const HTTP2_HEADER_USER_AGENT: string; + const HTTP2_HEADER_VARY: string; + const HTTP2_HEADER_VIA: string; + const HTTP2_HEADER_WWW_AUTHENTICATE: string; + const HTTP2_HEADER_HTTP2_SETTINGS: string; + const HTTP2_HEADER_KEEP_ALIVE: string; + const HTTP2_HEADER_PROXY_CONNECTION: string; + const HTTP2_METHOD_ACL: string; + const HTTP2_METHOD_BASELINE_CONTROL: string; + const HTTP2_METHOD_BIND: string; + const HTTP2_METHOD_CHECKIN: string; + const HTTP2_METHOD_CHECKOUT: string; + const HTTP2_METHOD_CONNECT: string; + const HTTP2_METHOD_COPY: string; + const HTTP2_METHOD_DELETE: string; + const HTTP2_METHOD_GET: string; + const HTTP2_METHOD_HEAD: string; + const HTTP2_METHOD_LABEL: string; + const HTTP2_METHOD_LINK: string; + const HTTP2_METHOD_LOCK: string; + const HTTP2_METHOD_MERGE: string; + const HTTP2_METHOD_MKACTIVITY: string; + const HTTP2_METHOD_MKCALENDAR: string; + const HTTP2_METHOD_MKCOL: string; + const HTTP2_METHOD_MKREDIRECTREF: string; + const HTTP2_METHOD_MKWORKSPACE: string; + const HTTP2_METHOD_MOVE: string; + const HTTP2_METHOD_OPTIONS: string; + const HTTP2_METHOD_ORDERPATCH: string; + const HTTP2_METHOD_PATCH: string; + const HTTP2_METHOD_POST: string; + const HTTP2_METHOD_PRI: string; + const HTTP2_METHOD_PROPFIND: string; + const HTTP2_METHOD_PROPPATCH: string; + const HTTP2_METHOD_PUT: string; + const HTTP2_METHOD_REBIND: string; + const HTTP2_METHOD_REPORT: string; + const HTTP2_METHOD_SEARCH: string; + const HTTP2_METHOD_TRACE: string; + const HTTP2_METHOD_UNBIND: string; + const HTTP2_METHOD_UNCHECKOUT: string; + const HTTP2_METHOD_UNLINK: string; + const HTTP2_METHOD_UNLOCK: string; + const HTTP2_METHOD_UPDATE: string; + const HTTP2_METHOD_UPDATEREDIRECTREF: string; + const HTTP2_METHOD_VERSION_CONTROL: string; + const HTTP_STATUS_CONTINUE: number; + const HTTP_STATUS_SWITCHING_PROTOCOLS: number; + const HTTP_STATUS_PROCESSING: number; + const HTTP_STATUS_OK: number; + const HTTP_STATUS_CREATED: number; + const HTTP_STATUS_ACCEPTED: number; + const HTTP_STATUS_NON_AUTHORITATIVE_INFORMATION: number; + const HTTP_STATUS_NO_CONTENT: number; + const HTTP_STATUS_RESET_CONTENT: number; + const HTTP_STATUS_PARTIAL_CONTENT: number; + const HTTP_STATUS_MULTI_STATUS: number; + const HTTP_STATUS_ALREADY_REPORTED: number; + const HTTP_STATUS_IM_USED: number; + const HTTP_STATUS_MULTIPLE_CHOICES: number; + const HTTP_STATUS_MOVED_PERMANENTLY: number; + const HTTP_STATUS_FOUND: number; + const HTTP_STATUS_SEE_OTHER: number; + const HTTP_STATUS_NOT_MODIFIED: number; + const HTTP_STATUS_USE_PROXY: number; + const HTTP_STATUS_TEMPORARY_REDIRECT: number; + const HTTP_STATUS_PERMANENT_REDIRECT: number; + const HTTP_STATUS_BAD_REQUEST: number; + const HTTP_STATUS_UNAUTHORIZED: number; + const HTTP_STATUS_PAYMENT_REQUIRED: number; + const HTTP_STATUS_FORBIDDEN: number; + const HTTP_STATUS_NOT_FOUND: number; + const HTTP_STATUS_METHOD_NOT_ALLOWED: number; + const HTTP_STATUS_NOT_ACCEPTABLE: number; + const HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED: number; + const HTTP_STATUS_REQUEST_TIMEOUT: number; + const HTTP_STATUS_CONFLICT: number; + const HTTP_STATUS_GONE: number; + const HTTP_STATUS_LENGTH_REQUIRED: number; + const HTTP_STATUS_PRECONDITION_FAILED: number; + const HTTP_STATUS_PAYLOAD_TOO_LARGE: number; + const HTTP_STATUS_URI_TOO_LONG: number; + const HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE: number; + const HTTP_STATUS_RANGE_NOT_SATISFIABLE: number; + const HTTP_STATUS_EXPECTATION_FAILED: number; + const HTTP_STATUS_TEAPOT: number; + const HTTP_STATUS_MISDIRECTED_REQUEST: number; + const HTTP_STATUS_UNPROCESSABLE_ENTITY: number; + const HTTP_STATUS_LOCKED: number; + const HTTP_STATUS_FAILED_DEPENDENCY: number; + const HTTP_STATUS_UNORDERED_COLLECTION: number; + const HTTP_STATUS_UPGRADE_REQUIRED: number; + const HTTP_STATUS_PRECONDITION_REQUIRED: number; + const HTTP_STATUS_TOO_MANY_REQUESTS: number; + const HTTP_STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE: number; + const HTTP_STATUS_UNAVAILABLE_FOR_LEGAL_REASONS: number; + const HTTP_STATUS_INTERNAL_SERVER_ERROR: number; + const HTTP_STATUS_NOT_IMPLEMENTED: number; + const HTTP_STATUS_BAD_GATEWAY: number; + const HTTP_STATUS_SERVICE_UNAVAILABLE: number; + const HTTP_STATUS_GATEWAY_TIMEOUT: number; + const HTTP_STATUS_HTTP_VERSION_NOT_SUPPORTED: number; + const HTTP_STATUS_VARIANT_ALSO_NEGOTIATES: number; + const HTTP_STATUS_INSUFFICIENT_STORAGE: number; + const HTTP_STATUS_LOOP_DETECTED: number; + const HTTP_STATUS_BANDWIDTH_LIMIT_EXCEEDED: number; + const HTTP_STATUS_NOT_EXTENDED: number; + const HTTP_STATUS_NETWORK_AUTHENTICATION_REQUIRED: number; + } + + export function getDefaultSettings(): Settings; + export function getPackedSettings(settings: Settings): Buffer; + export function getUnpackedSettings(buf: Uint8Array): Settings; + + export function createServer(onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2Server; + export function createServer(options: ServerOptions, onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2Server; + + export function createSecureServer(onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2SecureServer; + export function createSecureServer(options: SecureServerOptions, onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2SecureServer; + + export function connect(authority: string | url.URL, listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): ClientHttp2Session; + export function connect( + authority: string | url.URL, + options?: ClientSessionOptions | SecureClientSessionOptions, + listener?: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void + ): ClientHttp2Session; +} diff --git a/themes/piratecare/node_modules/@types/node/https.d.ts b/themes/piratecare/node_modules/@types/node/https.d.ts new file mode 100644 index 0000000..24326c9 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/https.d.ts @@ -0,0 +1,37 @@ +declare module "https" { + import * as tls from "tls"; + import * as events from "events"; + import * as http from "http"; + import { URL } from "url"; + + type ServerOptions = tls.SecureContextOptions & tls.TlsOptions & http.ServerOptions; + + type RequestOptions = http.RequestOptions & tls.SecureContextOptions & { + rejectUnauthorized?: boolean; // Defaults to true + servername?: string; // SNI TLS Extension + }; + + interface AgentOptions extends http.AgentOptions, tls.ConnectionOptions { + rejectUnauthorized?: boolean; + maxCachedSessions?: number; + } + + class Agent extends http.Agent { + constructor(options?: AgentOptions); + options: AgentOptions; + } + + interface Server extends http.HttpBase {} + class Server extends tls.Server { + constructor(requestListener?: http.RequestListener); + constructor(options: ServerOptions, requestListener?: http.RequestListener); + } + + function createServer(requestListener?: http.RequestListener): Server; + function createServer(options: ServerOptions, requestListener?: http.RequestListener): Server; + function request(options: RequestOptions | string | URL, callback?: (res: http.IncomingMessage) => void): http.ClientRequest; + function request(url: string | URL, options: RequestOptions, callback?: (res: http.IncomingMessage) => void): http.ClientRequest; + function get(options: RequestOptions | string | URL, callback?: (res: http.IncomingMessage) => void): http.ClientRequest; + function get(url: string | URL, options: RequestOptions, callback?: (res: http.IncomingMessage) => void): http.ClientRequest; + let globalAgent: Agent; +} diff --git a/themes/piratecare/node_modules/@types/node/index.d.ts b/themes/piratecare/node_modules/@types/node/index.d.ts new file mode 100644 index 0000000..78af71a --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/index.d.ts @@ -0,0 +1,83 @@ +// Type definitions for non-npm package Node.js 13.5 +// Project: http://nodejs.org/ +// Definitions by: Microsoft TypeScript +// DefinitelyTyped +// Alberto Schiabel +// Alexander T. +// Alvis HT Tang +// Andrew Makarov +// Benjamin Toueg +// Bruno Scheufler +// Chigozirim C. +// Christian Vaagland Tellnes +// David Junger +// Deividas Bakanas +// Eugene Y. Q. Shen +// Flarna +// Hannes Magnusson +// Hoàng Văn Khải +// Huw +// Kelvin Jin +// Klaus Meinhardt +// Lishude +// Mariusz Wiktorczyk +// Mohsen Azimi +// Nicolas Even +// Nicolas Voigt +// Nikita Galkin +// Parambir Singh +// Sebastian Silbermann +// Simon Schick +// Thomas den Hollander +// Wilco Bakker +// wwwy3y3 +// Zane Hannan AU +// Samuel Ainsworth +// Kyle Uehlein +// Jordi Oliveras Rovira +// Thanik Bhongbhibhat +// Marcin Kopacz +// Trivikram Kamat +// Minh Son Nguyen +// Junxiao Shi +// Ilia Baryshnikov +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +// NOTE: These definitions support NodeJS and TypeScript 3.5. + +// NOTE: TypeScript version-specific augmentations can be found in the following paths: +// - ~/base.d.ts - Shared definitions common to all TypeScript versions +// - ~/index.d.ts - Definitions specific to TypeScript 2.8 +// - ~/ts3.5/index.d.ts - Definitions specific to TypeScript 3.5 + +// NOTE: Augmentations for TypeScript 3.5 and later should use individual files for overrides +// within the respective ~/ts3.5 (or later) folder. However, this is disallowed for versions +// prior to TypeScript 3.5, so the older definitions will be found here. + +// Base definitions for all NodeJS modules that are not specific to any version of TypeScript: +/// + +// Forward-declarations for needed types from es2015 and later (in case users are using `--lib es5`) +// Empty interfaces are used here which merge fine with the real declarations in the lib XXX files +// just to ensure the names are known and node typings can be used without importing these libs. +// if someone really needs these types the libs need to be added via --lib or in tsconfig.json +interface AsyncIterable { } +interface IterableIterator { } +interface AsyncIterableIterator {} +interface SymbolConstructor { + readonly asyncIterator: symbol; +} +declare var Symbol: SymbolConstructor; +// even this is just a forward declaration some properties are added otherwise +// it would be allowed to pass anything to e.g. Buffer.from() +interface SharedArrayBuffer { + readonly byteLength: number; + slice(begin?: number, end?: number): SharedArrayBuffer; +} + +declare module "util" { + namespace types { + function isBigInt64Array(value: any): boolean; + function isBigUint64Array(value: any): boolean; + } +} diff --git a/themes/piratecare/node_modules/@types/node/inspector.d.ts b/themes/piratecare/node_modules/@types/node/inspector.d.ts new file mode 100644 index 0000000..b14aed2 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/inspector.d.ts @@ -0,0 +1,3034 @@ +// tslint:disable-next-line:dt-header +// Type definitions for inspector + +// These definitions are auto-generated. +// Please see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/19330 +// for more information. + +// tslint:disable:max-line-length + +/** + * The inspector module provides an API for interacting with the V8 inspector. + */ +declare module "inspector" { + import { EventEmitter } from 'events'; + + interface InspectorNotification { + method: string; + params: T; + } + + namespace Schema { + /** + * Description of the protocol domain. + */ + interface Domain { + /** + * Domain name. + */ + name: string; + /** + * Domain version. + */ + version: string; + } + + interface GetDomainsReturnType { + /** + * List of supported domains. + */ + domains: Domain[]; + } + } + + namespace Runtime { + /** + * Unique script identifier. + */ + type ScriptId = string; + + /** + * Unique object identifier. + */ + type RemoteObjectId = string; + + /** + * Primitive value which cannot be JSON-stringified. + */ + type UnserializableValue = string; + + /** + * Mirror object referencing original JavaScript object. + */ + interface RemoteObject { + /** + * Object type. + */ + type: string; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string; + /** + * Object class (constructor) name. Specified for object type values only. + */ + className?: string; + /** + * Remote object value in case of primitive values or JSON values (if it was requested). + */ + value?: any; + /** + * Primitive value which can not be JSON-stringified does not have value, but gets this property. + */ + unserializableValue?: UnserializableValue; + /** + * String representation of the object. + */ + description?: string; + /** + * Unique object identifier (for non-primitive values). + */ + objectId?: RemoteObjectId; + /** + * Preview containing abbreviated property values. Specified for object type values only. + * @experimental + */ + preview?: ObjectPreview; + /** + * @experimental + */ + customPreview?: CustomPreview; + } + + /** + * @experimental + */ + interface CustomPreview { + header: string; + hasBody: boolean; + formatterObjectId: RemoteObjectId; + bindRemoteObjectFunctionId: RemoteObjectId; + configObjectId?: RemoteObjectId; + } + + /** + * Object containing abbreviated remote object value. + * @experimental + */ + interface ObjectPreview { + /** + * Object type. + */ + type: string; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string; + /** + * String representation of the object. + */ + description?: string; + /** + * True iff some of the properties or entries of the original object did not fit. + */ + overflow: boolean; + /** + * List of the properties. + */ + properties: PropertyPreview[]; + /** + * List of the entries. Specified for map and set subtype values only. + */ + entries?: EntryPreview[]; + } + + /** + * @experimental + */ + interface PropertyPreview { + /** + * Property name. + */ + name: string; + /** + * Object type. Accessor means that the property itself is an accessor property. + */ + type: string; + /** + * User-friendly property value string. + */ + value?: string; + /** + * Nested value preview. + */ + valuePreview?: ObjectPreview; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string; + } + + /** + * @experimental + */ + interface EntryPreview { + /** + * Preview of the key. Specified for map-like collection entries. + */ + key?: ObjectPreview; + /** + * Preview of the value. + */ + value: ObjectPreview; + } + + /** + * Object property descriptor. + */ + interface PropertyDescriptor { + /** + * Property name or symbol description. + */ + name: string; + /** + * The value associated with the property. + */ + value?: RemoteObject; + /** + * True if the value associated with the property may be changed (data descriptors only). + */ + writable?: boolean; + /** + * A function which serves as a getter for the property, or undefined if there is no getter (accessor descriptors only). + */ + get?: RemoteObject; + /** + * A function which serves as a setter for the property, or undefined if there is no setter (accessor descriptors only). + */ + set?: RemoteObject; + /** + * True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object. + */ + configurable: boolean; + /** + * True if this property shows up during enumeration of the properties on the corresponding object. + */ + enumerable: boolean; + /** + * True if the result was thrown during the evaluation. + */ + wasThrown?: boolean; + /** + * True if the property is owned for the object. + */ + isOwn?: boolean; + /** + * Property symbol object, if the property is of the symbol type. + */ + symbol?: RemoteObject; + } + + /** + * Object internal property descriptor. This property isn't normally visible in JavaScript code. + */ + interface InternalPropertyDescriptor { + /** + * Conventional property name. + */ + name: string; + /** + * The value associated with the property. + */ + value?: RemoteObject; + } + + /** + * Represents function call argument. Either remote object id objectId, primitive value, unserializable primitive value or neither of (for undefined) them should be specified. + */ + interface CallArgument { + /** + * Primitive value or serializable javascript object. + */ + value?: any; + /** + * Primitive value which can not be JSON-stringified. + */ + unserializableValue?: UnserializableValue; + /** + * Remote object handle. + */ + objectId?: RemoteObjectId; + } + + /** + * Id of an execution context. + */ + type ExecutionContextId = number; + + /** + * Description of an isolated world. + */ + interface ExecutionContextDescription { + /** + * Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed. + */ + id: ExecutionContextId; + /** + * Execution context origin. + */ + origin: string; + /** + * Human readable name describing given context. + */ + name: string; + /** + * Embedder-specific auxiliary data. + */ + auxData?: {}; + } + + /** + * Detailed information about exception (or error) that was thrown during script compilation or execution. + */ + interface ExceptionDetails { + /** + * Exception id. + */ + exceptionId: number; + /** + * Exception text, which should be used together with exception object when available. + */ + text: string; + /** + * Line number of the exception location (0-based). + */ + lineNumber: number; + /** + * Column number of the exception location (0-based). + */ + columnNumber: number; + /** + * Script ID of the exception location. + */ + scriptId?: ScriptId; + /** + * URL of the exception location, to be used when the script was not reported. + */ + url?: string; + /** + * JavaScript stack trace if available. + */ + stackTrace?: StackTrace; + /** + * Exception object if available. + */ + exception?: RemoteObject; + /** + * Identifier of the context where exception happened. + */ + executionContextId?: ExecutionContextId; + } + + /** + * Number of milliseconds since epoch. + */ + type Timestamp = number; + + /** + * Stack entry for runtime errors and assertions. + */ + interface CallFrame { + /** + * JavaScript function name. + */ + functionName: string; + /** + * JavaScript script id. + */ + scriptId: ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * JavaScript script line number (0-based). + */ + lineNumber: number; + /** + * JavaScript script column number (0-based). + */ + columnNumber: number; + } + + /** + * Call frames for assertions or error messages. + */ + interface StackTrace { + /** + * String label of this stack trace. For async traces this may be a name of the function that initiated the async call. + */ + description?: string; + /** + * JavaScript function name. + */ + callFrames: CallFrame[]; + /** + * Asynchronous JavaScript stack trace that preceded this stack, if available. + */ + parent?: StackTrace; + /** + * Asynchronous JavaScript stack trace that preceded this stack, if available. + * @experimental + */ + parentId?: StackTraceId; + } + + /** + * Unique identifier of current debugger. + * @experimental + */ + type UniqueDebuggerId = string; + + /** + * If debuggerId is set stack trace comes from another debugger and can be resolved there. This allows to track cross-debugger calls. See Runtime.StackTrace and Debugger.paused for usages. + * @experimental + */ + interface StackTraceId { + id: string; + debuggerId?: UniqueDebuggerId; + } + + interface EvaluateParameterType { + /** + * Expression to evaluate. + */ + expression: string; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string; + /** + * Determines whether Command Line API should be available during the evaluation. + */ + includeCommandLineAPI?: boolean; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean; + /** + * Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + contextId?: ExecutionContextId; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean; + /** + * Whether execution should be treated as initiated by user in the UI. + */ + userGesture?: boolean; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean; + } + + interface AwaitPromiseParameterType { + /** + * Identifier of the promise. + */ + promiseObjectId: RemoteObjectId; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean; + /** + * Whether preview should be generated for the result. + */ + generatePreview?: boolean; + } + + interface CallFunctionOnParameterType { + /** + * Declaration of the function to call. + */ + functionDeclaration: string; + /** + * Identifier of the object to call function on. Either objectId or executionContextId should be specified. + */ + objectId?: RemoteObjectId; + /** + * Call arguments. All call arguments must belong to the same JavaScript world as the target object. + */ + arguments?: CallArgument[]; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean; + /** + * Whether the result is expected to be a JSON object which should be sent by value. + */ + returnByValue?: boolean; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean; + /** + * Whether execution should be treated as initiated by user in the UI. + */ + userGesture?: boolean; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean; + /** + * Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified. + */ + executionContextId?: ExecutionContextId; + /** + * Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object. + */ + objectGroup?: string; + } + + interface GetPropertiesParameterType { + /** + * Identifier of the object to return properties for. + */ + objectId: RemoteObjectId; + /** + * If true, returns properties belonging only to the element itself, not to its prototype chain. + */ + ownProperties?: boolean; + /** + * If true, returns accessor properties (with getter/setter) only; internal properties are not returned either. + * @experimental + */ + accessorPropertiesOnly?: boolean; + /** + * Whether preview should be generated for the results. + * @experimental + */ + generatePreview?: boolean; + } + + interface ReleaseObjectParameterType { + /** + * Identifier of the object to release. + */ + objectId: RemoteObjectId; + } + + interface ReleaseObjectGroupParameterType { + /** + * Symbolic object group name. + */ + objectGroup: string; + } + + interface SetCustomObjectFormatterEnabledParameterType { + enabled: boolean; + } + + interface CompileScriptParameterType { + /** + * Expression to compile. + */ + expression: string; + /** + * Source url to be set for the script. + */ + sourceURL: string; + /** + * Specifies whether the compiled script should be persisted. + */ + persistScript: boolean; + /** + * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + executionContextId?: ExecutionContextId; + } + + interface RunScriptParameterType { + /** + * Id of the script to run. + */ + scriptId: ScriptId; + /** + * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + executionContextId?: ExecutionContextId; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean; + /** + * Determines whether Command Line API should be available during the evaluation. + */ + includeCommandLineAPI?: boolean; + /** + * Whether the result is expected to be a JSON object which should be sent by value. + */ + returnByValue?: boolean; + /** + * Whether preview should be generated for the result. + */ + generatePreview?: boolean; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean; + } + + interface QueryObjectsParameterType { + /** + * Identifier of the prototype to return objects for. + */ + prototypeObjectId: RemoteObjectId; + } + + interface GlobalLexicalScopeNamesParameterType { + /** + * Specifies in which execution context to lookup global scope variables. + */ + executionContextId?: ExecutionContextId; + } + + interface EvaluateReturnType { + /** + * Evaluation result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails; + } + + interface AwaitPromiseReturnType { + /** + * Promise result. Will contain rejected value if promise was rejected. + */ + result: RemoteObject; + /** + * Exception details if stack strace is available. + */ + exceptionDetails?: ExceptionDetails; + } + + interface CallFunctionOnReturnType { + /** + * Call result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails; + } + + interface GetPropertiesReturnType { + /** + * Object properties. + */ + result: PropertyDescriptor[]; + /** + * Internal object properties (only of the element itself). + */ + internalProperties?: InternalPropertyDescriptor[]; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails; + } + + interface CompileScriptReturnType { + /** + * Id of the script. + */ + scriptId?: ScriptId; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails; + } + + interface RunScriptReturnType { + /** + * Run result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails; + } + + interface QueryObjectsReturnType { + /** + * Array with objects. + */ + objects: RemoteObject; + } + + interface GlobalLexicalScopeNamesReturnType { + names: string[]; + } + + interface ExecutionContextCreatedEventDataType { + /** + * A newly created execution context. + */ + context: ExecutionContextDescription; + } + + interface ExecutionContextDestroyedEventDataType { + /** + * Id of the destroyed context + */ + executionContextId: ExecutionContextId; + } + + interface ExceptionThrownEventDataType { + /** + * Timestamp of the exception. + */ + timestamp: Timestamp; + exceptionDetails: ExceptionDetails; + } + + interface ExceptionRevokedEventDataType { + /** + * Reason describing why exception was revoked. + */ + reason: string; + /** + * The id of revoked exception, as reported in exceptionThrown. + */ + exceptionId: number; + } + + interface ConsoleAPICalledEventDataType { + /** + * Type of the call. + */ + type: string; + /** + * Call arguments. + */ + args: RemoteObject[]; + /** + * Identifier of the context where the call was made. + */ + executionContextId: ExecutionContextId; + /** + * Call timestamp. + */ + timestamp: Timestamp; + /** + * Stack trace captured when the call was made. + */ + stackTrace?: StackTrace; + /** + * Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context. + * @experimental + */ + context?: string; + } + + interface InspectRequestedEventDataType { + object: RemoteObject; + hints: {}; + } + } + + namespace Debugger { + /** + * Breakpoint identifier. + */ + type BreakpointId = string; + + /** + * Call frame identifier. + */ + type CallFrameId = string; + + /** + * Location in the source code. + */ + interface Location { + /** + * Script identifier as reported in the Debugger.scriptParsed. + */ + scriptId: Runtime.ScriptId; + /** + * Line number in the script (0-based). + */ + lineNumber: number; + /** + * Column number in the script (0-based). + */ + columnNumber?: number; + } + + /** + * Location in the source code. + * @experimental + */ + interface ScriptPosition { + lineNumber: number; + columnNumber: number; + } + + /** + * JavaScript call frame. Array of call frames form the call stack. + */ + interface CallFrame { + /** + * Call frame identifier. This identifier is only valid while the virtual machine is paused. + */ + callFrameId: CallFrameId; + /** + * Name of the JavaScript function called on this call frame. + */ + functionName: string; + /** + * Location in the source code. + */ + functionLocation?: Location; + /** + * Location in the source code. + */ + location: Location; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Scope chain for this call frame. + */ + scopeChain: Scope[]; + /** + * this object for this call frame. + */ + this: Runtime.RemoteObject; + /** + * The value being returned, if the function is at return point. + */ + returnValue?: Runtime.RemoteObject; + } + + /** + * Scope description. + */ + interface Scope { + /** + * Scope type. + */ + type: string; + /** + * Object representing the scope. For global and with scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties. + */ + object: Runtime.RemoteObject; + name?: string; + /** + * Location in the source code where scope starts + */ + startLocation?: Location; + /** + * Location in the source code where scope ends + */ + endLocation?: Location; + } + + /** + * Search match for resource. + */ + interface SearchMatch { + /** + * Line number in resource content. + */ + lineNumber: number; + /** + * Line with match content. + */ + lineContent: string; + } + + interface BreakLocation { + /** + * Script identifier as reported in the Debugger.scriptParsed. + */ + scriptId: Runtime.ScriptId; + /** + * Line number in the script (0-based). + */ + lineNumber: number; + /** + * Column number in the script (0-based). + */ + columnNumber?: number; + type?: string; + } + + interface SetBreakpointsActiveParameterType { + /** + * New value for breakpoints active state. + */ + active: boolean; + } + + interface SetSkipAllPausesParameterType { + /** + * New value for skip pauses state. + */ + skip: boolean; + } + + interface SetBreakpointByUrlParameterType { + /** + * Line number to set breakpoint at. + */ + lineNumber: number; + /** + * URL of the resources to set breakpoint on. + */ + url?: string; + /** + * Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified. + */ + urlRegex?: string; + /** + * Script hash of the resources to set breakpoint on. + */ + scriptHash?: string; + /** + * Offset in the line to set breakpoint at. + */ + columnNumber?: number; + /** + * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. + */ + condition?: string; + } + + interface SetBreakpointParameterType { + /** + * Location to set breakpoint in. + */ + location: Location; + /** + * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. + */ + condition?: string; + } + + interface RemoveBreakpointParameterType { + breakpointId: BreakpointId; + } + + interface GetPossibleBreakpointsParameterType { + /** + * Start of range to search possible breakpoint locations in. + */ + start: Location; + /** + * End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range. + */ + end?: Location; + /** + * Only consider locations which are in the same (non-nested) function as start. + */ + restrictToFunction?: boolean; + } + + interface ContinueToLocationParameterType { + /** + * Location to continue to. + */ + location: Location; + targetCallFrames?: string; + } + + interface PauseOnAsyncCallParameterType { + /** + * Debugger will pause when async call with given stack trace is started. + */ + parentStackTraceId: Runtime.StackTraceId; + } + + interface StepIntoParameterType { + /** + * Debugger will issue additional Debugger.paused notification if any async task is scheduled before next pause. + * @experimental + */ + breakOnAsyncCall?: boolean; + } + + interface GetStackTraceParameterType { + stackTraceId: Runtime.StackTraceId; + } + + interface SearchInContentParameterType { + /** + * Id of the script to search in. + */ + scriptId: Runtime.ScriptId; + /** + * String to search for. + */ + query: string; + /** + * If true, search is case sensitive. + */ + caseSensitive?: boolean; + /** + * If true, treats string parameter as regex. + */ + isRegex?: boolean; + } + + interface SetScriptSourceParameterType { + /** + * Id of the script to edit. + */ + scriptId: Runtime.ScriptId; + /** + * New content of the script. + */ + scriptSource: string; + /** + * If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code. + */ + dryRun?: boolean; + } + + interface RestartFrameParameterType { + /** + * Call frame identifier to evaluate on. + */ + callFrameId: CallFrameId; + } + + interface GetScriptSourceParameterType { + /** + * Id of the script to get source for. + */ + scriptId: Runtime.ScriptId; + } + + interface SetPauseOnExceptionsParameterType { + /** + * Pause on exceptions mode. + */ + state: string; + } + + interface EvaluateOnCallFrameParameterType { + /** + * Call frame identifier to evaluate on. + */ + callFrameId: CallFrameId; + /** + * Expression to evaluate. + */ + expression: string; + /** + * String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup). + */ + objectGroup?: string; + /** + * Specifies whether command line API should be available to the evaluated expression, defaults to false. + */ + includeCommandLineAPI?: boolean; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean; + /** + * Whether to throw an exception if side effect cannot be ruled out during evaluation. + */ + throwOnSideEffect?: boolean; + } + + interface SetVariableValueParameterType { + /** + * 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually. + */ + scopeNumber: number; + /** + * Variable name. + */ + variableName: string; + /** + * New variable value. + */ + newValue: Runtime.CallArgument; + /** + * Id of callframe that holds variable. + */ + callFrameId: CallFrameId; + } + + interface SetReturnValueParameterType { + /** + * New return value. + */ + newValue: Runtime.CallArgument; + } + + interface SetAsyncCallStackDepthParameterType { + /** + * Maximum depth of async call stacks. Setting to 0 will effectively disable collecting async call stacks (default). + */ + maxDepth: number; + } + + interface SetBlackboxPatternsParameterType { + /** + * Array of regexps that will be used to check script url for blackbox state. + */ + patterns: string[]; + } + + interface SetBlackboxedRangesParameterType { + /** + * Id of the script. + */ + scriptId: Runtime.ScriptId; + positions: ScriptPosition[]; + } + + interface EnableReturnType { + /** + * Unique identifier of the debugger. + * @experimental + */ + debuggerId: Runtime.UniqueDebuggerId; + } + + interface SetBreakpointByUrlReturnType { + /** + * Id of the created breakpoint for further reference. + */ + breakpointId: BreakpointId; + /** + * List of the locations this breakpoint resolved into upon addition. + */ + locations: Location[]; + } + + interface SetBreakpointReturnType { + /** + * Id of the created breakpoint for further reference. + */ + breakpointId: BreakpointId; + /** + * Location this breakpoint resolved into. + */ + actualLocation: Location; + } + + interface GetPossibleBreakpointsReturnType { + /** + * List of the possible breakpoint locations. + */ + locations: BreakLocation[]; + } + + interface GetStackTraceReturnType { + stackTrace: Runtime.StackTrace; + } + + interface SearchInContentReturnType { + /** + * List of search matches. + */ + result: SearchMatch[]; + } + + interface SetScriptSourceReturnType { + /** + * New stack trace in case editing has happened while VM was stopped. + */ + callFrames?: CallFrame[]; + /** + * Whether current call stack was modified after applying the changes. + */ + stackChanged?: boolean; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId; + /** + * Exception details if any. + */ + exceptionDetails?: Runtime.ExceptionDetails; + } + + interface RestartFrameReturnType { + /** + * New stack trace. + */ + callFrames: CallFrame[]; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId; + } + + interface GetScriptSourceReturnType { + /** + * Script source. + */ + scriptSource: string; + } + + interface EvaluateOnCallFrameReturnType { + /** + * Object wrapper for the evaluation result. + */ + result: Runtime.RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: Runtime.ExceptionDetails; + } + + interface ScriptParsedEventDataType { + /** + * Identifier of the script parsed. + */ + scriptId: Runtime.ScriptId; + /** + * URL or name of the script parsed (if any). + */ + url: string; + /** + * Line offset of the script within the resource with given URL (for script tags). + */ + startLine: number; + /** + * Column offset of the script within the resource with given URL. + */ + startColumn: number; + /** + * Last line of the script. + */ + endLine: number; + /** + * Length of the last line of the script. + */ + endColumn: number; + /** + * Specifies script creation context. + */ + executionContextId: Runtime.ExecutionContextId; + /** + * Content hash of the script. + */ + hash: string; + /** + * Embedder-specific auxiliary data. + */ + executionContextAuxData?: {}; + /** + * True, if this script is generated as a result of the live edit operation. + * @experimental + */ + isLiveEdit?: boolean; + /** + * URL of source map associated with script (if any). + */ + sourceMapURL?: string; + /** + * True, if this script has sourceURL. + */ + hasSourceURL?: boolean; + /** + * True, if this script is ES6 module. + */ + isModule?: boolean; + /** + * This script length. + */ + length?: number; + /** + * JavaScript top stack frame of where the script parsed event was triggered if available. + * @experimental + */ + stackTrace?: Runtime.StackTrace; + } + + interface ScriptFailedToParseEventDataType { + /** + * Identifier of the script parsed. + */ + scriptId: Runtime.ScriptId; + /** + * URL or name of the script parsed (if any). + */ + url: string; + /** + * Line offset of the script within the resource with given URL (for script tags). + */ + startLine: number; + /** + * Column offset of the script within the resource with given URL. + */ + startColumn: number; + /** + * Last line of the script. + */ + endLine: number; + /** + * Length of the last line of the script. + */ + endColumn: number; + /** + * Specifies script creation context. + */ + executionContextId: Runtime.ExecutionContextId; + /** + * Content hash of the script. + */ + hash: string; + /** + * Embedder-specific auxiliary data. + */ + executionContextAuxData?: {}; + /** + * URL of source map associated with script (if any). + */ + sourceMapURL?: string; + /** + * True, if this script has sourceURL. + */ + hasSourceURL?: boolean; + /** + * True, if this script is ES6 module. + */ + isModule?: boolean; + /** + * This script length. + */ + length?: number; + /** + * JavaScript top stack frame of where the script parsed event was triggered if available. + * @experimental + */ + stackTrace?: Runtime.StackTrace; + } + + interface BreakpointResolvedEventDataType { + /** + * Breakpoint unique identifier. + */ + breakpointId: BreakpointId; + /** + * Actual breakpoint location. + */ + location: Location; + } + + interface PausedEventDataType { + /** + * Call stack the virtual machine stopped on. + */ + callFrames: CallFrame[]; + /** + * Pause reason. + */ + reason: string; + /** + * Object containing break-specific auxiliary properties. + */ + data?: {}; + /** + * Hit breakpoints IDs + */ + hitBreakpoints?: string[]; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId; + /** + * Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after Debugger.stepInto call with breakOnAsynCall flag. + * @experimental + */ + asyncCallStackTraceId?: Runtime.StackTraceId; + } + } + + namespace Console { + /** + * Console message. + */ + interface ConsoleMessage { + /** + * Message source. + */ + source: string; + /** + * Message severity. + */ + level: string; + /** + * Message text. + */ + text: string; + /** + * URL of the message origin. + */ + url?: string; + /** + * Line number in the resource that generated this message (1-based). + */ + line?: number; + /** + * Column number in the resource that generated this message (1-based). + */ + column?: number; + } + + interface MessageAddedEventDataType { + /** + * Console message that has been added. + */ + message: ConsoleMessage; + } + } + + namespace Profiler { + /** + * Profile node. Holds callsite information, execution statistics and child nodes. + */ + interface ProfileNode { + /** + * Unique id of the node. + */ + id: number; + /** + * Function location. + */ + callFrame: Runtime.CallFrame; + /** + * Number of samples where this node was on top of the call stack. + */ + hitCount?: number; + /** + * Child node ids. + */ + children?: number[]; + /** + * The reason of being not optimized. The function may be deoptimized or marked as don't optimize. + */ + deoptReason?: string; + /** + * An array of source position ticks. + */ + positionTicks?: PositionTickInfo[]; + } + + /** + * Profile. + */ + interface Profile { + /** + * The list of profile nodes. First item is the root node. + */ + nodes: ProfileNode[]; + /** + * Profiling start timestamp in microseconds. + */ + startTime: number; + /** + * Profiling end timestamp in microseconds. + */ + endTime: number; + /** + * Ids of samples top nodes. + */ + samples?: number[]; + /** + * Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime. + */ + timeDeltas?: number[]; + } + + /** + * Specifies a number of samples attributed to a certain source position. + */ + interface PositionTickInfo { + /** + * Source line number (1-based). + */ + line: number; + /** + * Number of samples attributed to the source line. + */ + ticks: number; + } + + /** + * Coverage data for a source range. + */ + interface CoverageRange { + /** + * JavaScript script source offset for the range start. + */ + startOffset: number; + /** + * JavaScript script source offset for the range end. + */ + endOffset: number; + /** + * Collected execution count of the source range. + */ + count: number; + } + + /** + * Coverage data for a JavaScript function. + */ + interface FunctionCoverage { + /** + * JavaScript function name. + */ + functionName: string; + /** + * Source ranges inside the function with coverage data. + */ + ranges: CoverageRange[]; + /** + * Whether coverage data for this function has block granularity. + */ + isBlockCoverage: boolean; + } + + /** + * Coverage data for a JavaScript script. + */ + interface ScriptCoverage { + /** + * JavaScript script id. + */ + scriptId: Runtime.ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Functions contained in the script that has coverage data. + */ + functions: FunctionCoverage[]; + } + + /** + * Describes a type collected during runtime. + * @experimental + */ + interface TypeObject { + /** + * Name of a type collected with type profiling. + */ + name: string; + } + + /** + * Source offset and types for a parameter or return value. + * @experimental + */ + interface TypeProfileEntry { + /** + * Source offset of the parameter or end of function for return values. + */ + offset: number; + /** + * The types for this parameter or return value. + */ + types: TypeObject[]; + } + + /** + * Type profile data collected during runtime for a JavaScript script. + * @experimental + */ + interface ScriptTypeProfile { + /** + * JavaScript script id. + */ + scriptId: Runtime.ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Type profile entries for parameters and return values of the functions in the script. + */ + entries: TypeProfileEntry[]; + } + + interface SetSamplingIntervalParameterType { + /** + * New sampling interval in microseconds. + */ + interval: number; + } + + interface StartPreciseCoverageParameterType { + /** + * Collect accurate call counts beyond simple 'covered' or 'not covered'. + */ + callCount?: boolean; + /** + * Collect block-based coverage. + */ + detailed?: boolean; + } + + interface StopReturnType { + /** + * Recorded profile. + */ + profile: Profile; + } + + interface TakePreciseCoverageReturnType { + /** + * Coverage data for the current isolate. + */ + result: ScriptCoverage[]; + } + + interface GetBestEffortCoverageReturnType { + /** + * Coverage data for the current isolate. + */ + result: ScriptCoverage[]; + } + + interface TakeTypeProfileReturnType { + /** + * Type profile for all scripts since startTypeProfile() was turned on. + */ + result: ScriptTypeProfile[]; + } + + interface ConsoleProfileStartedEventDataType { + id: string; + /** + * Location of console.profile(). + */ + location: Debugger.Location; + /** + * Profile title passed as an argument to console.profile(). + */ + title?: string; + } + + interface ConsoleProfileFinishedEventDataType { + id: string; + /** + * Location of console.profileEnd(). + */ + location: Debugger.Location; + profile: Profile; + /** + * Profile title passed as an argument to console.profile(). + */ + title?: string; + } + } + + namespace HeapProfiler { + /** + * Heap snapshot object id. + */ + type HeapSnapshotObjectId = string; + + /** + * Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes. + */ + interface SamplingHeapProfileNode { + /** + * Function location. + */ + callFrame: Runtime.CallFrame; + /** + * Allocations size in bytes for the node excluding children. + */ + selfSize: number; + /** + * Child nodes. + */ + children: SamplingHeapProfileNode[]; + } + + /** + * Profile. + */ + interface SamplingHeapProfile { + head: SamplingHeapProfileNode; + } + + interface StartTrackingHeapObjectsParameterType { + trackAllocations?: boolean; + } + + interface StopTrackingHeapObjectsParameterType { + /** + * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped. + */ + reportProgress?: boolean; + } + + interface TakeHeapSnapshotParameterType { + /** + * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken. + */ + reportProgress?: boolean; + } + + interface GetObjectByHeapObjectIdParameterType { + objectId: HeapSnapshotObjectId; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string; + } + + interface AddInspectedHeapObjectParameterType { + /** + * Heap snapshot object id to be accessible by means of $x command line API. + */ + heapObjectId: HeapSnapshotObjectId; + } + + interface GetHeapObjectIdParameterType { + /** + * Identifier of the object to get heap object id for. + */ + objectId: Runtime.RemoteObjectId; + } + + interface StartSamplingParameterType { + /** + * Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes. + */ + samplingInterval?: number; + } + + interface GetObjectByHeapObjectIdReturnType { + /** + * Evaluation result. + */ + result: Runtime.RemoteObject; + } + + interface GetHeapObjectIdReturnType { + /** + * Id of the heap snapshot object corresponding to the passed remote object id. + */ + heapSnapshotObjectId: HeapSnapshotObjectId; + } + + interface StopSamplingReturnType { + /** + * Recorded sampling heap profile. + */ + profile: SamplingHeapProfile; + } + + interface GetSamplingProfileReturnType { + /** + * Return the sampling profile being collected. + */ + profile: SamplingHeapProfile; + } + + interface AddHeapSnapshotChunkEventDataType { + chunk: string; + } + + interface ReportHeapSnapshotProgressEventDataType { + done: number; + total: number; + finished?: boolean; + } + + interface LastSeenObjectIdEventDataType { + lastSeenObjectId: number; + timestamp: number; + } + + interface HeapStatsUpdateEventDataType { + /** + * An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment. + */ + statsUpdate: number[]; + } + } + + namespace NodeTracing { + interface TraceConfig { + /** + * Controls how the trace buffer stores data. + */ + recordMode?: string; + /** + * Included category filters. + */ + includedCategories: string[]; + } + + interface StartParameterType { + traceConfig: TraceConfig; + } + + interface GetCategoriesReturnType { + /** + * A list of supported tracing categories. + */ + categories: string[]; + } + + interface DataCollectedEventDataType { + value: Array<{}>; + } + } + + namespace NodeWorker { + type WorkerID = string; + + /** + * Unique identifier of attached debugging session. + */ + type SessionID = string; + + interface WorkerInfo { + workerId: WorkerID; + type: string; + title: string; + url: string; + } + + interface SendMessageToWorkerParameterType { + message: string; + /** + * Identifier of the session. + */ + sessionId: SessionID; + } + + interface EnableParameterType { + /** + * Whether to new workers should be paused until the frontend sends `Runtime.runIfWaitingForDebugger` + * message to run them. + */ + waitForDebuggerOnStart: boolean; + } + + interface DetachParameterType { + sessionId: SessionID; + } + + interface AttachedToWorkerEventDataType { + /** + * Identifier assigned to the session used to send/receive messages. + */ + sessionId: SessionID; + workerInfo: WorkerInfo; + waitingForDebugger: boolean; + } + + interface DetachedFromWorkerEventDataType { + /** + * Detached session identifier. + */ + sessionId: SessionID; + } + + interface ReceivedMessageFromWorkerEventDataType { + /** + * Identifier of a session which sends a message. + */ + sessionId: SessionID; + message: string; + } + } + + namespace NodeRuntime { + interface NotifyWhenWaitingForDisconnectParameterType { + enabled: boolean; + } + } + + /** + * The inspector.Session is used for dispatching messages to the V8 inspector back-end and receiving message responses and notifications. + */ + class Session extends EventEmitter { + /** + * Create a new instance of the inspector.Session class. + * The inspector session needs to be connected through session.connect() before the messages can be dispatched to the inspector backend. + */ + constructor(); + + /** + * Connects a session to the inspector back-end. + * An exception will be thrown if there is already a connected session established either + * through the API or by a front-end connected to the Inspector WebSocket port. + */ + connect(): void; + + /** + * Immediately close the session. All pending message callbacks will be called with an error. + * session.connect() will need to be called to be able to send messages again. + * Reconnected session will lose all inspector state, such as enabled agents or configured breakpoints. + */ + disconnect(): void; + + /** + * Posts a message to the inspector back-end. callback will be notified when a response is received. + * callback is a function that accepts two optional arguments - error and message-specific result. + */ + post(method: string, params?: {}, callback?: (err: Error | null, params?: {}) => void): void; + post(method: string, callback?: (err: Error | null, params?: {}) => void): void; + + /** + * Returns supported domains. + */ + post(method: "Schema.getDomains", callback?: (err: Error | null, params: Schema.GetDomainsReturnType) => void): void; + + /** + * Evaluates expression on global object. + */ + post(method: "Runtime.evaluate", params?: Runtime.EvaluateParameterType, callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void; + post(method: "Runtime.evaluate", callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void; + + /** + * Add handler to promise with given promise object id. + */ + post(method: "Runtime.awaitPromise", params?: Runtime.AwaitPromiseParameterType, callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void; + post(method: "Runtime.awaitPromise", callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void; + + /** + * Calls function with given declaration on the given object. Object group of the result is inherited from the target object. + */ + post(method: "Runtime.callFunctionOn", params?: Runtime.CallFunctionOnParameterType, callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void; + post(method: "Runtime.callFunctionOn", callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void; + + /** + * Returns properties of a given object. Object group of the result is inherited from the target object. + */ + post(method: "Runtime.getProperties", params?: Runtime.GetPropertiesParameterType, callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void; + post(method: "Runtime.getProperties", callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void; + + /** + * Releases remote object with given id. + */ + post(method: "Runtime.releaseObject", params?: Runtime.ReleaseObjectParameterType, callback?: (err: Error | null) => void): void; + post(method: "Runtime.releaseObject", callback?: (err: Error | null) => void): void; + + /** + * Releases all remote objects that belong to a given group. + */ + post(method: "Runtime.releaseObjectGroup", params?: Runtime.ReleaseObjectGroupParameterType, callback?: (err: Error | null) => void): void; + post(method: "Runtime.releaseObjectGroup", callback?: (err: Error | null) => void): void; + + /** + * Tells inspected instance to run if it was waiting for debugger to attach. + */ + post(method: "Runtime.runIfWaitingForDebugger", callback?: (err: Error | null) => void): void; + + /** + * Enables reporting of execution contexts creation by means of executionContextCreated event. When the reporting gets enabled the event will be sent immediately for each existing execution context. + */ + post(method: "Runtime.enable", callback?: (err: Error | null) => void): void; + + /** + * Disables reporting of execution contexts creation. + */ + post(method: "Runtime.disable", callback?: (err: Error | null) => void): void; + + /** + * Discards collected exceptions and console API calls. + */ + post(method: "Runtime.discardConsoleEntries", callback?: (err: Error | null) => void): void; + + /** + * @experimental + */ + post(method: "Runtime.setCustomObjectFormatterEnabled", params?: Runtime.SetCustomObjectFormatterEnabledParameterType, callback?: (err: Error | null) => void): void; + post(method: "Runtime.setCustomObjectFormatterEnabled", callback?: (err: Error | null) => void): void; + + /** + * Compiles expression. + */ + post(method: "Runtime.compileScript", params?: Runtime.CompileScriptParameterType, callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void; + post(method: "Runtime.compileScript", callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void; + + /** + * Runs script with given id in a given context. + */ + post(method: "Runtime.runScript", params?: Runtime.RunScriptParameterType, callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void; + post(method: "Runtime.runScript", callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void; + + post(method: "Runtime.queryObjects", params?: Runtime.QueryObjectsParameterType, callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void; + post(method: "Runtime.queryObjects", callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void; + + /** + * Returns all let, const and class variables from global scope. + */ + post( + method: "Runtime.globalLexicalScopeNames", + params?: Runtime.GlobalLexicalScopeNamesParameterType, + callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void + ): void; + post(method: "Runtime.globalLexicalScopeNames", callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void): void; + + /** + * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received. + */ + post(method: "Debugger.enable", callback?: (err: Error | null, params: Debugger.EnableReturnType) => void): void; + + /** + * Disables debugger for given page. + */ + post(method: "Debugger.disable", callback?: (err: Error | null) => void): void; + + /** + * Activates / deactivates all breakpoints on the page. + */ + post(method: "Debugger.setBreakpointsActive", params?: Debugger.SetBreakpointsActiveParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setBreakpointsActive", callback?: (err: Error | null) => void): void; + + /** + * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc). + */ + post(method: "Debugger.setSkipAllPauses", params?: Debugger.SetSkipAllPausesParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setSkipAllPauses", callback?: (err: Error | null) => void): void; + + /** + * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads. + */ + post(method: "Debugger.setBreakpointByUrl", params?: Debugger.SetBreakpointByUrlParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void; + post(method: "Debugger.setBreakpointByUrl", callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void; + + /** + * Sets JavaScript breakpoint at a given location. + */ + post(method: "Debugger.setBreakpoint", params?: Debugger.SetBreakpointParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void; + post(method: "Debugger.setBreakpoint", callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void; + + /** + * Removes JavaScript breakpoint. + */ + post(method: "Debugger.removeBreakpoint", params?: Debugger.RemoveBreakpointParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.removeBreakpoint", callback?: (err: Error | null) => void): void; + + /** + * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same. + */ + post( + method: "Debugger.getPossibleBreakpoints", + params?: Debugger.GetPossibleBreakpointsParameterType, + callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void + ): void; + post(method: "Debugger.getPossibleBreakpoints", callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void): void; + + /** + * Continues execution until specific location is reached. + */ + post(method: "Debugger.continueToLocation", params?: Debugger.ContinueToLocationParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.continueToLocation", callback?: (err: Error | null) => void): void; + + /** + * @experimental + */ + post(method: "Debugger.pauseOnAsyncCall", params?: Debugger.PauseOnAsyncCallParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.pauseOnAsyncCall", callback?: (err: Error | null) => void): void; + + /** + * Steps over the statement. + */ + post(method: "Debugger.stepOver", callback?: (err: Error | null) => void): void; + + /** + * Steps into the function call. + */ + post(method: "Debugger.stepInto", params?: Debugger.StepIntoParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.stepInto", callback?: (err: Error | null) => void): void; + + /** + * Steps out of the function call. + */ + post(method: "Debugger.stepOut", callback?: (err: Error | null) => void): void; + + /** + * Stops on the next JavaScript statement. + */ + post(method: "Debugger.pause", callback?: (err: Error | null) => void): void; + + /** + * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called. + * @experimental + */ + post(method: "Debugger.scheduleStepIntoAsync", callback?: (err: Error | null) => void): void; + + /** + * Resumes JavaScript execution. + */ + post(method: "Debugger.resume", callback?: (err: Error | null) => void): void; + + /** + * Returns stack trace with given stackTraceId. + * @experimental + */ + post(method: "Debugger.getStackTrace", params?: Debugger.GetStackTraceParameterType, callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void; + post(method: "Debugger.getStackTrace", callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void; + + /** + * Searches for given string in script content. + */ + post(method: "Debugger.searchInContent", params?: Debugger.SearchInContentParameterType, callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void; + post(method: "Debugger.searchInContent", callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void; + + /** + * Edits JavaScript source live. + */ + post(method: "Debugger.setScriptSource", params?: Debugger.SetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void; + post(method: "Debugger.setScriptSource", callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void; + + /** + * Restarts particular call frame from the beginning. + */ + post(method: "Debugger.restartFrame", params?: Debugger.RestartFrameParameterType, callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void; + post(method: "Debugger.restartFrame", callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void; + + /** + * Returns source for the script with given id. + */ + post(method: "Debugger.getScriptSource", params?: Debugger.GetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void; + post(method: "Debugger.getScriptSource", callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void; + + /** + * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is none. + */ + post(method: "Debugger.setPauseOnExceptions", params?: Debugger.SetPauseOnExceptionsParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setPauseOnExceptions", callback?: (err: Error | null) => void): void; + + /** + * Evaluates expression on a given call frame. + */ + post(method: "Debugger.evaluateOnCallFrame", params?: Debugger.EvaluateOnCallFrameParameterType, callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void; + post(method: "Debugger.evaluateOnCallFrame", callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void; + + /** + * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually. + */ + post(method: "Debugger.setVariableValue", params?: Debugger.SetVariableValueParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setVariableValue", callback?: (err: Error | null) => void): void; + + /** + * Changes return value in top frame. Available only at return break position. + * @experimental + */ + post(method: "Debugger.setReturnValue", params?: Debugger.SetReturnValueParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setReturnValue", callback?: (err: Error | null) => void): void; + + /** + * Enables or disables async call stacks tracking. + */ + post(method: "Debugger.setAsyncCallStackDepth", params?: Debugger.SetAsyncCallStackDepthParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setAsyncCallStackDepth", callback?: (err: Error | null) => void): void; + + /** + * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. + * @experimental + */ + post(method: "Debugger.setBlackboxPatterns", params?: Debugger.SetBlackboxPatternsParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setBlackboxPatterns", callback?: (err: Error | null) => void): void; + + /** + * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted. + * @experimental + */ + post(method: "Debugger.setBlackboxedRanges", params?: Debugger.SetBlackboxedRangesParameterType, callback?: (err: Error | null) => void): void; + post(method: "Debugger.setBlackboxedRanges", callback?: (err: Error | null) => void): void; + + /** + * Enables console domain, sends the messages collected so far to the client by means of the messageAdded notification. + */ + post(method: "Console.enable", callback?: (err: Error | null) => void): void; + + /** + * Disables console domain, prevents further console messages from being reported to the client. + */ + post(method: "Console.disable", callback?: (err: Error | null) => void): void; + + /** + * Does nothing. + */ + post(method: "Console.clearMessages", callback?: (err: Error | null) => void): void; + + post(method: "Profiler.enable", callback?: (err: Error | null) => void): void; + + post(method: "Profiler.disable", callback?: (err: Error | null) => void): void; + + /** + * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started. + */ + post(method: "Profiler.setSamplingInterval", params?: Profiler.SetSamplingIntervalParameterType, callback?: (err: Error | null) => void): void; + post(method: "Profiler.setSamplingInterval", callback?: (err: Error | null) => void): void; + + post(method: "Profiler.start", callback?: (err: Error | null) => void): void; + + post(method: "Profiler.stop", callback?: (err: Error | null, params: Profiler.StopReturnType) => void): void; + + /** + * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters. + */ + post(method: "Profiler.startPreciseCoverage", params?: Profiler.StartPreciseCoverageParameterType, callback?: (err: Error | null) => void): void; + post(method: "Profiler.startPreciseCoverage", callback?: (err: Error | null) => void): void; + + /** + * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code. + */ + post(method: "Profiler.stopPreciseCoverage", callback?: (err: Error | null) => void): void; + + /** + * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started. + */ + post(method: "Profiler.takePreciseCoverage", callback?: (err: Error | null, params: Profiler.TakePreciseCoverageReturnType) => void): void; + + /** + * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection. + */ + post(method: "Profiler.getBestEffortCoverage", callback?: (err: Error | null, params: Profiler.GetBestEffortCoverageReturnType) => void): void; + + /** + * Enable type profile. + * @experimental + */ + post(method: "Profiler.startTypeProfile", callback?: (err: Error | null) => void): void; + + /** + * Disable type profile. Disabling releases type profile data collected so far. + * @experimental + */ + post(method: "Profiler.stopTypeProfile", callback?: (err: Error | null) => void): void; + + /** + * Collect type profile. + * @experimental + */ + post(method: "Profiler.takeTypeProfile", callback?: (err: Error | null, params: Profiler.TakeTypeProfileReturnType) => void): void; + + post(method: "HeapProfiler.enable", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.disable", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.startTrackingHeapObjects", params?: HeapProfiler.StartTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void; + post(method: "HeapProfiler.startTrackingHeapObjects", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.stopTrackingHeapObjects", params?: HeapProfiler.StopTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void; + post(method: "HeapProfiler.stopTrackingHeapObjects", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.takeHeapSnapshot", params?: HeapProfiler.TakeHeapSnapshotParameterType, callback?: (err: Error | null) => void): void; + post(method: "HeapProfiler.takeHeapSnapshot", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.collectGarbage", callback?: (err: Error | null) => void): void; + + post( + method: "HeapProfiler.getObjectByHeapObjectId", + params?: HeapProfiler.GetObjectByHeapObjectIdParameterType, + callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void + ): void; + post(method: "HeapProfiler.getObjectByHeapObjectId", callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void): void; + + /** + * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions). + */ + post(method: "HeapProfiler.addInspectedHeapObject", params?: HeapProfiler.AddInspectedHeapObjectParameterType, callback?: (err: Error | null) => void): void; + post(method: "HeapProfiler.addInspectedHeapObject", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.getHeapObjectId", params?: HeapProfiler.GetHeapObjectIdParameterType, callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void; + post(method: "HeapProfiler.getHeapObjectId", callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void; + + post(method: "HeapProfiler.startSampling", params?: HeapProfiler.StartSamplingParameterType, callback?: (err: Error | null) => void): void; + post(method: "HeapProfiler.startSampling", callback?: (err: Error | null) => void): void; + + post(method: "HeapProfiler.stopSampling", callback?: (err: Error | null, params: HeapProfiler.StopSamplingReturnType) => void): void; + + post(method: "HeapProfiler.getSamplingProfile", callback?: (err: Error | null, params: HeapProfiler.GetSamplingProfileReturnType) => void): void; + + /** + * Gets supported tracing categories. + */ + post(method: "NodeTracing.getCategories", callback?: (err: Error | null, params: NodeTracing.GetCategoriesReturnType) => void): void; + + /** + * Start trace events collection. + */ + post(method: "NodeTracing.start", params?: NodeTracing.StartParameterType, callback?: (err: Error | null) => void): void; + post(method: "NodeTracing.start", callback?: (err: Error | null) => void): void; + + /** + * Stop trace events collection. Remaining collected events will be sent as a sequence of + * dataCollected events followed by tracingComplete event. + */ + post(method: "NodeTracing.stop", callback?: (err: Error | null) => void): void; + + /** + * Sends protocol message over session with given id. + */ + post(method: "NodeWorker.sendMessageToWorker", params?: NodeWorker.SendMessageToWorkerParameterType, callback?: (err: Error | null) => void): void; + post(method: "NodeWorker.sendMessageToWorker", callback?: (err: Error | null) => void): void; + + /** + * Instructs the inspector to attach to running workers. Will also attach to new workers + * as they start + */ + post(method: "NodeWorker.enable", params?: NodeWorker.EnableParameterType, callback?: (err: Error | null) => void): void; + post(method: "NodeWorker.enable", callback?: (err: Error | null) => void): void; + + /** + * Detaches from all running workers and disables attaching to new workers as they are started. + */ + post(method: "NodeWorker.disable", callback?: (err: Error | null) => void): void; + + /** + * Detached from the worker with given sessionId. + */ + post(method: "NodeWorker.detach", params?: NodeWorker.DetachParameterType, callback?: (err: Error | null) => void): void; + post(method: "NodeWorker.detach", callback?: (err: Error | null) => void): void; + + /** + * Enable the `NodeRuntime.waitingForDisconnect`. + */ + post(method: "NodeRuntime.notifyWhenWaitingForDisconnect", params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType, callback?: (err: Error | null) => void): void; + post(method: "NodeRuntime.notifyWhenWaitingForDisconnect", callback?: (err: Error | null) => void): void; + + // Events + + addListener(event: string, listener: (...args: any[]) => void): this; + + /** + * Emitted when any notification from the V8 Inspector is received. + */ + addListener(event: "inspectorNotification", listener: (message: InspectorNotification<{}>) => void): this; + + /** + * Issued when new execution context is created. + */ + addListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when execution context is destroyed. + */ + addListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when all executionContexts were cleared in browser + */ + addListener(event: "Runtime.executionContextsCleared", listener: () => void): this; + + /** + * Issued when exception was thrown and unhandled. + */ + addListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when unhandled exception was revoked. + */ + addListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when console API was called. + */ + addListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + addListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + addListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine fails to parse the script. + */ + addListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + addListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + addListener(event: "Debugger.paused", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine resumed execution. + */ + addListener(event: "Debugger.resumed", listener: () => void): this; + + /** + * Issued when new console message is added. + */ + addListener(event: "Console.messageAdded", listener: (message: InspectorNotification) => void): this; + + /** + * Sent when new profile recording is started using console.profile() call. + */ + addListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification) => void): this; + + addListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification) => void): this; + addListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification) => void): this; + addListener(event: "HeapProfiler.resetProfiles", listener: () => void): this; + addListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + addListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + addListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification) => void): this; + + /** + * Contains an bucket of collected trace events. + */ + addListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification) => void): this; + + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + addListener(event: "NodeTracing.tracingComplete", listener: () => void): this; + + /** + * Issued when attached to a worker. + */ + addListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when detached from the worker. + */ + addListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + addListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + addListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "inspectorNotification", message: InspectorNotification<{}>): boolean; + emit(event: "Runtime.executionContextCreated", message: InspectorNotification): boolean; + emit(event: "Runtime.executionContextDestroyed", message: InspectorNotification): boolean; + emit(event: "Runtime.executionContextsCleared"): boolean; + emit(event: "Runtime.exceptionThrown", message: InspectorNotification): boolean; + emit(event: "Runtime.exceptionRevoked", message: InspectorNotification): boolean; + emit(event: "Runtime.consoleAPICalled", message: InspectorNotification): boolean; + emit(event: "Runtime.inspectRequested", message: InspectorNotification): boolean; + emit(event: "Debugger.scriptParsed", message: InspectorNotification): boolean; + emit(event: "Debugger.scriptFailedToParse", message: InspectorNotification): boolean; + emit(event: "Debugger.breakpointResolved", message: InspectorNotification): boolean; + emit(event: "Debugger.paused", message: InspectorNotification): boolean; + emit(event: "Debugger.resumed"): boolean; + emit(event: "Console.messageAdded", message: InspectorNotification): boolean; + emit(event: "Profiler.consoleProfileStarted", message: InspectorNotification): boolean; + emit(event: "Profiler.consoleProfileFinished", message: InspectorNotification): boolean; + emit(event: "HeapProfiler.addHeapSnapshotChunk", message: InspectorNotification): boolean; + emit(event: "HeapProfiler.resetProfiles"): boolean; + emit(event: "HeapProfiler.reportHeapSnapshotProgress", message: InspectorNotification): boolean; + emit(event: "HeapProfiler.lastSeenObjectId", message: InspectorNotification): boolean; + emit(event: "HeapProfiler.heapStatsUpdate", message: InspectorNotification): boolean; + emit(event: "NodeTracing.dataCollected", message: InspectorNotification): boolean; + emit(event: "NodeTracing.tracingComplete"): boolean; + emit(event: "NodeWorker.attachedToWorker", message: InspectorNotification): boolean; + emit(event: "NodeWorker.detachedFromWorker", message: InspectorNotification): boolean; + emit(event: "NodeWorker.receivedMessageFromWorker", message: InspectorNotification): boolean; + emit(event: "NodeRuntime.waitingForDisconnect"): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + + /** + * Emitted when any notification from the V8 Inspector is received. + */ + on(event: "inspectorNotification", listener: (message: InspectorNotification<{}>) => void): this; + + /** + * Issued when new execution context is created. + */ + on(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when execution context is destroyed. + */ + on(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when all executionContexts were cleared in browser + */ + on(event: "Runtime.executionContextsCleared", listener: () => void): this; + + /** + * Issued when exception was thrown and unhandled. + */ + on(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when unhandled exception was revoked. + */ + on(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when console API was called. + */ + on(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + on(event: "Runtime.inspectRequested", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + on(event: "Debugger.scriptParsed", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine fails to parse the script. + */ + on(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + on(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + on(event: "Debugger.paused", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine resumed execution. + */ + on(event: "Debugger.resumed", listener: () => void): this; + + /** + * Issued when new console message is added. + */ + on(event: "Console.messageAdded", listener: (message: InspectorNotification) => void): this; + + /** + * Sent when new profile recording is started using console.profile() call. + */ + on(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification) => void): this; + + on(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification) => void): this; + on(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification) => void): this; + on(event: "HeapProfiler.resetProfiles", listener: () => void): this; + on(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + on(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + on(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification) => void): this; + + /** + * Contains an bucket of collected trace events. + */ + on(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification) => void): this; + + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + on(event: "NodeTracing.tracingComplete", listener: () => void): this; + + /** + * Issued when attached to a worker. + */ + on(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when detached from the worker. + */ + on(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + on(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + on(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + + /** + * Emitted when any notification from the V8 Inspector is received. + */ + once(event: "inspectorNotification", listener: (message: InspectorNotification<{}>) => void): this; + + /** + * Issued when new execution context is created. + */ + once(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when execution context is destroyed. + */ + once(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when all executionContexts were cleared in browser + */ + once(event: "Runtime.executionContextsCleared", listener: () => void): this; + + /** + * Issued when exception was thrown and unhandled. + */ + once(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when unhandled exception was revoked. + */ + once(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when console API was called. + */ + once(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + once(event: "Runtime.inspectRequested", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + once(event: "Debugger.scriptParsed", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine fails to parse the script. + */ + once(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + once(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + once(event: "Debugger.paused", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine resumed execution. + */ + once(event: "Debugger.resumed", listener: () => void): this; + + /** + * Issued when new console message is added. + */ + once(event: "Console.messageAdded", listener: (message: InspectorNotification) => void): this; + + /** + * Sent when new profile recording is started using console.profile() call. + */ + once(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification) => void): this; + + once(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification) => void): this; + once(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification) => void): this; + once(event: "HeapProfiler.resetProfiles", listener: () => void): this; + once(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + once(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + once(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification) => void): this; + + /** + * Contains an bucket of collected trace events. + */ + once(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification) => void): this; + + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + once(event: "NodeTracing.tracingComplete", listener: () => void): this; + + /** + * Issued when attached to a worker. + */ + once(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when detached from the worker. + */ + once(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + once(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + once(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + + /** + * Emitted when any notification from the V8 Inspector is received. + */ + prependListener(event: "inspectorNotification", listener: (message: InspectorNotification<{}>) => void): this; + + /** + * Issued when new execution context is created. + */ + prependListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when execution context is destroyed. + */ + prependListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when all executionContexts were cleared in browser + */ + prependListener(event: "Runtime.executionContextsCleared", listener: () => void): this; + + /** + * Issued when exception was thrown and unhandled. + */ + prependListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when unhandled exception was revoked. + */ + prependListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when console API was called. + */ + prependListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + prependListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + prependListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine fails to parse the script. + */ + prependListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + prependListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + prependListener(event: "Debugger.paused", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine resumed execution. + */ + prependListener(event: "Debugger.resumed", listener: () => void): this; + + /** + * Issued when new console message is added. + */ + prependListener(event: "Console.messageAdded", listener: (message: InspectorNotification) => void): this; + + /** + * Sent when new profile recording is started using console.profile() call. + */ + prependListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification) => void): this; + + prependListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification) => void): this; + prependListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification) => void): this; + prependListener(event: "HeapProfiler.resetProfiles", listener: () => void): this; + prependListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + prependListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + prependListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification) => void): this; + + /** + * Contains an bucket of collected trace events. + */ + prependListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification) => void): this; + + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + prependListener(event: "NodeTracing.tracingComplete", listener: () => void): this; + + /** + * Issued when attached to a worker. + */ + prependListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when detached from the worker. + */ + prependListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + prependListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + prependListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + + /** + * Emitted when any notification from the V8 Inspector is received. + */ + prependOnceListener(event: "inspectorNotification", listener: (message: InspectorNotification<{}>) => void): this; + + /** + * Issued when new execution context is created. + */ + prependOnceListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when execution context is destroyed. + */ + prependOnceListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when all executionContexts were cleared in browser + */ + prependOnceListener(event: "Runtime.executionContextsCleared", listener: () => void): this; + + /** + * Issued when exception was thrown and unhandled. + */ + prependOnceListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when unhandled exception was revoked. + */ + prependOnceListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when console API was called. + */ + prependOnceListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + prependOnceListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + prependOnceListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when virtual machine fails to parse the script. + */ + prependOnceListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + prependOnceListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + prependOnceListener(event: "Debugger.paused", listener: (message: InspectorNotification) => void): this; + + /** + * Fired when the virtual machine resumed execution. + */ + prependOnceListener(event: "Debugger.resumed", listener: () => void): this; + + /** + * Issued when new console message is added. + */ + prependOnceListener(event: "Console.messageAdded", listener: (message: InspectorNotification) => void): this; + + /** + * Sent when new profile recording is started using console.profile() call. + */ + prependOnceListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification) => void): this; + + prependOnceListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: "HeapProfiler.resetProfiles", listener: () => void): this; + prependOnceListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + prependOnceListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification) => void): this; + + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + prependOnceListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification) => void): this; + + /** + * Contains an bucket of collected trace events. + */ + prependOnceListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification) => void): this; + + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + prependOnceListener(event: "NodeTracing.tracingComplete", listener: () => void): this; + + /** + * Issued when attached to a worker. + */ + prependOnceListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Issued when detached from the worker. + */ + prependOnceListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + prependOnceListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification) => void): this; + + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + prependOnceListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this; + } + + // Top Level API + + /** + * Activate inspector on host and port. Equivalent to node --inspect=[[host:]port], but can be done programatically after node has started. + * If wait is true, will block until a client has connected to the inspect port and flow control has been passed to the debugger client. + * @param port Port to listen on for inspector connections. Optional, defaults to what was specified on the CLI. + * @param host Host to listen on for inspector connections. Optional, defaults to what was specified on the CLI. + * @param wait Block until a client has connected. Optional, defaults to false. + */ + function open(port?: number, host?: string, wait?: boolean): void; + + /** + * Deactivate the inspector. Blocks until there are no active connections. + */ + function close(): void; + + /** + * Return the URL of the active inspector, or `undefined` if there is none. + */ + function url(): string | undefined; +} diff --git a/themes/piratecare/node_modules/@types/node/module.d.ts b/themes/piratecare/node_modules/@types/node/module.d.ts new file mode 100644 index 0000000..4fbfbbb --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/module.d.ts @@ -0,0 +1,21 @@ +declare module "module" { + import { URL } from "url"; + namespace Module {} + interface Module extends NodeModule {} + class Module { + static runMain(): void; + static wrap(code: string): string; + + /** + * @deprecated Deprecated since: v12.2.0. Please use createRequire() instead. + */ + static createRequireFromPath(path: string): NodeRequire; + static createRequire(path: string | URL): NodeRequire; + static builtinModules: string[]; + + static Module: typeof Module; + + constructor(id: string, parent?: Module); + } + export = Module; +} diff --git a/themes/piratecare/node_modules/@types/node/net.d.ts b/themes/piratecare/node_modules/@types/node/net.d.ts new file mode 100644 index 0000000..8eb5c7b --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/net.d.ts @@ -0,0 +1,268 @@ +declare module "net" { + import * as stream from "stream"; + import * as events from "events"; + import * as dns from "dns"; + + type LookupFunction = (hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void; + + interface AddressInfo { + address: string; + family: string; + port: number; + } + + interface SocketConstructorOpts { + fd?: number; + allowHalfOpen?: boolean; + readable?: boolean; + writable?: boolean; + } + + interface OnReadOpts { + buffer: Uint8Array | (() => Uint8Array); + /** + * This function is called for every chunk of incoming data. + * Two arguments are passed to it: the number of bytes written to buffer and a reference to buffer. + * Return false from this function to implicitly pause() the socket. + */ + callback(bytesWritten: number, buf: Uint8Array): boolean; + } + + interface ConnectOpts { + /** + * If specified, incoming data is stored in a single buffer and passed to the supplied callback when data arrives on the socket. + * Note: this will cause the streaming functionality to not provide any data, however events like 'error', 'end', and 'close' will + * still be emitted as normal and methods like pause() and resume() will also behave as expected. + */ + onread?: OnReadOpts; + } + + interface TcpSocketConnectOpts extends ConnectOpts { + port: number; + host?: string; + localAddress?: string; + localPort?: number; + hints?: number; + family?: number; + lookup?: LookupFunction; + } + + interface IpcSocketConnectOpts extends ConnectOpts { + path: string; + } + + type SocketConnectOpts = TcpSocketConnectOpts | IpcSocketConnectOpts; + + class Socket extends stream.Duplex { + constructor(options?: SocketConstructorOpts); + + // Extended base methods + write(buffer: Uint8Array | string, cb?: (err?: Error) => void): boolean; + write(str: Uint8Array | string, encoding?: string, cb?: (err?: Error) => void): boolean; + + connect(options: SocketConnectOpts, connectionListener?: () => void): this; + connect(port: number, host: string, connectionListener?: () => void): this; + connect(port: number, connectionListener?: () => void): this; + connect(path: string, connectionListener?: () => void): this; + + setEncoding(encoding?: string): this; + pause(): this; + resume(): this; + setTimeout(timeout: number, callback?: () => void): this; + setNoDelay(noDelay?: boolean): this; + setKeepAlive(enable?: boolean, initialDelay?: number): this; + address(): AddressInfo | string; + unref(): this; + ref(): this; + + readonly bufferSize: number; + readonly bytesRead: number; + readonly bytesWritten: number; + readonly connecting: boolean; + readonly destroyed: boolean; + readonly localAddress: string; + readonly localPort: number; + readonly remoteAddress?: string; + readonly remoteFamily?: string; + readonly remotePort?: number; + + // Extended base methods + end(cb?: () => void): void; + end(buffer: Uint8Array | string, cb?: () => void): void; + end(str: Uint8Array | string, encoding?: string, cb?: () => void): void; + + /** + * events.EventEmitter + * 1. close + * 2. connect + * 3. data + * 4. drain + * 5. end + * 6. error + * 7. lookup + * 8. timeout + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "close", listener: (had_error: boolean) => void): this; + addListener(event: "connect", listener: () => void): this; + addListener(event: "data", listener: (data: Buffer) => void): this; + addListener(event: "drain", listener: () => void): this; + addListener(event: "end", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "lookup", listener: (err: Error, address: string, family: string | number, host: string) => void): this; + addListener(event: "timeout", listener: () => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "close", had_error: boolean): boolean; + emit(event: "connect"): boolean; + emit(event: "data", data: Buffer): boolean; + emit(event: "drain"): boolean; + emit(event: "end"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "lookup", err: Error, address: string, family: string | number, host: string): boolean; + emit(event: "timeout"): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "close", listener: (had_error: boolean) => void): this; + on(event: "connect", listener: () => void): this; + on(event: "data", listener: (data: Buffer) => void): this; + on(event: "drain", listener: () => void): this; + on(event: "end", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "lookup", listener: (err: Error, address: string, family: string | number, host: string) => void): this; + on(event: "timeout", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "close", listener: (had_error: boolean) => void): this; + once(event: "connect", listener: () => void): this; + once(event: "data", listener: (data: Buffer) => void): this; + once(event: "drain", listener: () => void): this; + once(event: "end", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "lookup", listener: (err: Error, address: string, family: string | number, host: string) => void): this; + once(event: "timeout", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "close", listener: (had_error: boolean) => void): this; + prependListener(event: "connect", listener: () => void): this; + prependListener(event: "data", listener: (data: Buffer) => void): this; + prependListener(event: "drain", listener: () => void): this; + prependListener(event: "end", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "lookup", listener: (err: Error, address: string, family: string | number, host: string) => void): this; + prependListener(event: "timeout", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "close", listener: (had_error: boolean) => void): this; + prependOnceListener(event: "connect", listener: () => void): this; + prependOnceListener(event: "data", listener: (data: Buffer) => void): this; + prependOnceListener(event: "drain", listener: () => void): this; + prependOnceListener(event: "end", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "lookup", listener: (err: Error, address: string, family: string | number, host: string) => void): this; + prependOnceListener(event: "timeout", listener: () => void): this; + } + + interface ListenOptions { + port?: number; + host?: string; + backlog?: number; + path?: string; + exclusive?: boolean; + readableAll?: boolean; + writableAll?: boolean; + /** + * @default false + */ + ipv6Only?: boolean; + } + + // https://github.com/nodejs/node/blob/master/lib/net.js + class Server extends events.EventEmitter { + constructor(connectionListener?: (socket: Socket) => void); + constructor(options?: { allowHalfOpen?: boolean, pauseOnConnect?: boolean }, connectionListener?: (socket: Socket) => void); + + listen(port?: number, hostname?: string, backlog?: number, listeningListener?: () => void): this; + listen(port?: number, hostname?: string, listeningListener?: () => void): this; + listen(port?: number, backlog?: number, listeningListener?: () => void): this; + listen(port?: number, listeningListener?: () => void): this; + listen(path: string, backlog?: number, listeningListener?: () => void): this; + listen(path: string, listeningListener?: () => void): this; + listen(options: ListenOptions, listeningListener?: () => void): this; + listen(handle: any, backlog?: number, listeningListener?: () => void): this; + listen(handle: any, listeningListener?: () => void): this; + close(callback?: (err?: Error) => void): this; + address(): AddressInfo | string | null; + getConnections(cb: (error: Error | null, count: number) => void): void; + ref(): this; + unref(): this; + maxConnections: number; + connections: number; + listening: boolean; + + /** + * events.EventEmitter + * 1. close + * 2. connection + * 3. error + * 4. listening + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "close", listener: () => void): this; + addListener(event: "connection", listener: (socket: Socket) => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "listening", listener: () => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "close"): boolean; + emit(event: "connection", socket: Socket): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "listening"): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "close", listener: () => void): this; + on(event: "connection", listener: (socket: Socket) => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "listening", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "close", listener: () => void): this; + once(event: "connection", listener: (socket: Socket) => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "listening", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "close", listener: () => void): this; + prependListener(event: "connection", listener: (socket: Socket) => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "listening", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "connection", listener: (socket: Socket) => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "listening", listener: () => void): this; + } + + interface TcpNetConnectOpts extends TcpSocketConnectOpts, SocketConstructorOpts { + timeout?: number; + } + + interface IpcNetConnectOpts extends IpcSocketConnectOpts, SocketConstructorOpts { + timeout?: number; + } + + type NetConnectOpts = TcpNetConnectOpts | IpcNetConnectOpts; + + function createServer(connectionListener?: (socket: Socket) => void): Server; + function createServer(options?: { allowHalfOpen?: boolean, pauseOnConnect?: boolean }, connectionListener?: (socket: Socket) => void): Server; + function connect(options: NetConnectOpts, connectionListener?: () => void): Socket; + function connect(port: number, host?: string, connectionListener?: () => void): Socket; + function connect(path: string, connectionListener?: () => void): Socket; + function createConnection(options: NetConnectOpts, connectionListener?: () => void): Socket; + function createConnection(port: number, host?: string, connectionListener?: () => void): Socket; + function createConnection(path: string, connectionListener?: () => void): Socket; + function isIP(input: string): number; + function isIPv4(input: string): boolean; + function isIPv6(input: string): boolean; +} diff --git a/themes/piratecare/node_modules/@types/node/os.d.ts b/themes/piratecare/node_modules/@types/node/os.d.ts new file mode 100644 index 0000000..59980e7 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/os.d.ts @@ -0,0 +1,231 @@ +declare module "os" { + interface CpuInfo { + model: string; + speed: number; + times: { + user: number; + nice: number; + sys: number; + idle: number; + irq: number; + }; + } + + interface NetworkInterfaceBase { + address: string; + netmask: string; + mac: string; + internal: boolean; + cidr: string | null; + } + + interface NetworkInterfaceInfoIPv4 extends NetworkInterfaceBase { + family: "IPv4"; + } + + interface NetworkInterfaceInfoIPv6 extends NetworkInterfaceBase { + family: "IPv6"; + scopeid: number; + } + + interface UserInfo { + username: T; + uid: number; + gid: number; + shell: T; + homedir: T; + } + + type NetworkInterfaceInfo = NetworkInterfaceInfoIPv4 | NetworkInterfaceInfoIPv6; + + function hostname(): string; + function loadavg(): number[]; + function uptime(): number; + function freemem(): number; + function totalmem(): number; + function cpus(): CpuInfo[]; + function type(): string; + function release(): string; + function networkInterfaces(): { [index: string]: NetworkInterfaceInfo[] }; + function homedir(): string; + function userInfo(options: { encoding: 'buffer' }): UserInfo; + function userInfo(options?: { encoding: string }): UserInfo; + + type SignalConstants = { + [key in NodeJS.Signals]: number; + }; + + namespace constants { + const UV_UDP_REUSEADDR: number; + namespace signals {} + const signals: SignalConstants; + namespace errno { + const E2BIG: number; + const EACCES: number; + const EADDRINUSE: number; + const EADDRNOTAVAIL: number; + const EAFNOSUPPORT: number; + const EAGAIN: number; + const EALREADY: number; + const EBADF: number; + const EBADMSG: number; + const EBUSY: number; + const ECANCELED: number; + const ECHILD: number; + const ECONNABORTED: number; + const ECONNREFUSED: number; + const ECONNRESET: number; + const EDEADLK: number; + const EDESTADDRREQ: number; + const EDOM: number; + const EDQUOT: number; + const EEXIST: number; + const EFAULT: number; + const EFBIG: number; + const EHOSTUNREACH: number; + const EIDRM: number; + const EILSEQ: number; + const EINPROGRESS: number; + const EINTR: number; + const EINVAL: number; + const EIO: number; + const EISCONN: number; + const EISDIR: number; + const ELOOP: number; + const EMFILE: number; + const EMLINK: number; + const EMSGSIZE: number; + const EMULTIHOP: number; + const ENAMETOOLONG: number; + const ENETDOWN: number; + const ENETRESET: number; + const ENETUNREACH: number; + const ENFILE: number; + const ENOBUFS: number; + const ENODATA: number; + const ENODEV: number; + const ENOENT: number; + const ENOEXEC: number; + const ENOLCK: number; + const ENOLINK: number; + const ENOMEM: number; + const ENOMSG: number; + const ENOPROTOOPT: number; + const ENOSPC: number; + const ENOSR: number; + const ENOSTR: number; + const ENOSYS: number; + const ENOTCONN: number; + const ENOTDIR: number; + const ENOTEMPTY: number; + const ENOTSOCK: number; + const ENOTSUP: number; + const ENOTTY: number; + const ENXIO: number; + const EOPNOTSUPP: number; + const EOVERFLOW: number; + const EPERM: number; + const EPIPE: number; + const EPROTO: number; + const EPROTONOSUPPORT: number; + const EPROTOTYPE: number; + const ERANGE: number; + const EROFS: number; + const ESPIPE: number; + const ESRCH: number; + const ESTALE: number; + const ETIME: number; + const ETIMEDOUT: number; + const ETXTBSY: number; + const EWOULDBLOCK: number; + const EXDEV: number; + const WSAEINTR: number; + const WSAEBADF: number; + const WSAEACCES: number; + const WSAEFAULT: number; + const WSAEINVAL: number; + const WSAEMFILE: number; + const WSAEWOULDBLOCK: number; + const WSAEINPROGRESS: number; + const WSAEALREADY: number; + const WSAENOTSOCK: number; + const WSAEDESTADDRREQ: number; + const WSAEMSGSIZE: number; + const WSAEPROTOTYPE: number; + const WSAENOPROTOOPT: number; + const WSAEPROTONOSUPPORT: number; + const WSAESOCKTNOSUPPORT: number; + const WSAEOPNOTSUPP: number; + const WSAEPFNOSUPPORT: number; + const WSAEAFNOSUPPORT: number; + const WSAEADDRINUSE: number; + const WSAEADDRNOTAVAIL: number; + const WSAENETDOWN: number; + const WSAENETUNREACH: number; + const WSAENETRESET: number; + const WSAECONNABORTED: number; + const WSAECONNRESET: number; + const WSAENOBUFS: number; + const WSAEISCONN: number; + const WSAENOTCONN: number; + const WSAESHUTDOWN: number; + const WSAETOOMANYREFS: number; + const WSAETIMEDOUT: number; + const WSAECONNREFUSED: number; + const WSAELOOP: number; + const WSAENAMETOOLONG: number; + const WSAEHOSTDOWN: number; + const WSAEHOSTUNREACH: number; + const WSAENOTEMPTY: number; + const WSAEPROCLIM: number; + const WSAEUSERS: number; + const WSAEDQUOT: number; + const WSAESTALE: number; + const WSAEREMOTE: number; + const WSASYSNOTREADY: number; + const WSAVERNOTSUPPORTED: number; + const WSANOTINITIALISED: number; + const WSAEDISCON: number; + const WSAENOMORE: number; + const WSAECANCELLED: number; + const WSAEINVALIDPROCTABLE: number; + const WSAEINVALIDPROVIDER: number; + const WSAEPROVIDERFAILEDINIT: number; + const WSASYSCALLFAILURE: number; + const WSASERVICE_NOT_FOUND: number; + const WSATYPE_NOT_FOUND: number; + const WSA_E_NO_MORE: number; + const WSA_E_CANCELLED: number; + const WSAEREFUSED: number; + } + namespace priority { + const PRIORITY_LOW: number; + const PRIORITY_BELOW_NORMAL: number; + const PRIORITY_NORMAL: number; + const PRIORITY_ABOVE_NORMAL: number; + const PRIORITY_HIGH: number; + const PRIORITY_HIGHEST: number; + } + } + + function arch(): string; + function platform(): NodeJS.Platform; + function tmpdir(): string; + const EOL: string; + function endianness(): "BE" | "LE"; + /** + * Gets the priority of a process. + * Defaults to current process. + */ + function getPriority(pid?: number): number; + /** + * Sets the priority of the current process. + * @param priority Must be in range of -20 to 19 + */ + function setPriority(priority: number): void; + /** + * Sets the priority of the process specified process. + * @param priority Must be in range of -20 to 19 + */ + function setPriority(pid: number, priority: number): void; +} diff --git a/themes/piratecare/node_modules/@types/node/package.json b/themes/piratecare/node_modules/@types/node/package.json new file mode 100644 index 0000000..f3cef85 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/package.json @@ -0,0 +1,224 @@ +{ + "_args": [ + [ + "@types/node@13.5.2", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "@types/node@13.5.2", + "_id": "@types/node@13.5.2", + "_inBundle": false, + "_integrity": "sha512-Fr6a47c84PRLfd7M7u3/hEknyUdQrrBA6VoPmkze0tcflhU5UnpWEX2kn12ktA/lb+MNHSqFlSiPHIHsaErTPA==", + "_location": "/@types/node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/node@13.5.2", + "name": "@types/node", + "escapedName": "@types%2fnode", + "scope": "@types", + "rawSpec": "13.5.2", + "saveSpec": null, + "fetchSpec": "13.5.2" + }, + "_requiredBy": [ + "/@types/glob" + ], + "_resolved": "https://registry.npmjs.org/@types/node/-/node-13.5.2.tgz", + "_spec": "13.5.2", + "_where": "/tmp/tailwind-hugo", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Microsoft TypeScript", + "url": "https://github.com/Microsoft" + }, + { + "name": "DefinitelyTyped", + "url": "https://github.com/DefinitelyTyped" + }, + { + "name": "Alberto Schiabel", + "url": "https://github.com/jkomyno" + }, + { + "name": "Alexander T.", + "url": "https://github.com/a-tarasyuk" + }, + { + "name": "Alvis HT Tang", + "url": "https://github.com/alvis" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya" + }, + { + "name": "Benjamin Toueg", + "url": "https://github.com/btoueg" + }, + { + "name": "Bruno Scheufler", + "url": "https://github.com/brunoscheufler" + }, + { + "name": "Chigozirim C.", + "url": "https://github.com/smac89" + }, + { + "name": "Christian Vaagland Tellnes", + "url": "https://github.com/tellnes" + }, + { + "name": "David Junger", + "url": "https://github.com/touffy" + }, + { + "name": "Deividas Bakanas", + "url": "https://github.com/DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "url": "https://github.com/eyqs" + }, + { + "name": "Flarna", + "url": "https://github.com/Flarna" + }, + { + "name": "Hannes Magnusson", + "url": "https://github.com/Hannes-Magnusson-CK" + }, + { + "name": "Hoàng Văn Khải", + "url": "https://github.com/KSXGitHub" + }, + { + "name": "Huw", + "url": "https://github.com/hoo29" + }, + { + "name": "Kelvin Jin", + "url": "https://github.com/kjin" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff" + }, + { + "name": "Lishude", + "url": "https://github.com/islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "url": "https://github.com/mwiktorczyk" + }, + { + "name": "Mohsen Azimi", + "url": "https://github.com/mohsen1" + }, + { + "name": "Nicolas Even", + "url": "https://github.com/n-e" + }, + { + "name": "Nicolas Voigt", + "url": "https://github.com/octo-sniffle" + }, + { + "name": "Nikita Galkin", + "url": "https://github.com/galkin" + }, + { + "name": "Parambir Singh", + "url": "https://github.com/parambirs" + }, + { + "name": "Sebastian Silbermann", + "url": "https://github.com/eps1lon" + }, + { + "name": "Simon Schick", + "url": "https://github.com/SimonSchick" + }, + { + "name": "Thomas den Hollander", + "url": "https://github.com/ThomasdenH" + }, + { + "name": "Wilco Bakker", + "url": "https://github.com/WilcoBakker" + }, + { + "name": "wwwy3y3", + "url": "https://github.com/wwwy3y3" + }, + { + "name": "Zane Hannan AU", + "url": "https://github.com/ZaneHannanAU" + }, + { + "name": "Samuel Ainsworth", + "url": "https://github.com/samuela" + }, + { + "name": "Kyle Uehlein", + "url": "https://github.com/kuehlein" + }, + { + "name": "Jordi Oliveras Rovira", + "url": "https://github.com/j-oliveras" + }, + { + "name": "Thanik Bhongbhibhat", + "url": "https://github.com/bhongy" + }, + { + "name": "Marcin Kopacz", + "url": "https://github.com/chyzwar" + }, + { + "name": "Trivikram Kamat", + "url": "https://github.com/trivikr" + }, + { + "name": "Minh Son Nguyen", + "url": "https://github.com/nguymin4" + }, + { + "name": "Junxiao Shi", + "url": "https://github.com/yoursunny" + }, + { + "name": "Ilia Baryshnikov", + "url": "https://github.com/qwelias" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for Node.js", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/node", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "typeScriptVersion": "2.8", + "types": "index.d.ts", + "typesPublisherContentHash": "cc848be7ea21fa9fd04c27963d8c2e14f4e50327d346e930a797d2027779f492", + "typesVersions": { + ">=3.5.0-0": { + "*": [ + "ts3.5/*" + ] + } + }, + "version": "13.5.2" +} diff --git a/themes/piratecare/node_modules/@types/node/path.d.ts b/themes/piratecare/node_modules/@types/node/path.d.ts new file mode 100644 index 0000000..0273d58 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/path.d.ts @@ -0,0 +1,153 @@ +declare module "path" { + namespace path { + /** + * A parsed path object generated by path.parse() or consumed by path.format(). + */ + interface ParsedPath { + /** + * The root of the path such as '/' or 'c:\' + */ + root: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base: string; + /** + * The file extension (if any) such as '.html' + */ + ext: string; + /** + * The file name without extension (if any) such as 'index' + */ + name: string; + } + + interface FormatInputPathObject { + /** + * The root of the path such as '/' or 'c:\' + */ + root?: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir?: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base?: string; + /** + * The file extension (if any) such as '.html' + */ + ext?: string; + /** + * The file name without extension (if any) such as 'index' + */ + name?: string; + } + + interface PlatformPath { + /** + * Normalize a string path, reducing '..' and '.' parts. + * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. + * + * @param p string path to normalize. + */ + normalize(p: string): string; + /** + * Join all arguments together and normalize the resulting path. + * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. + * + * @param paths paths to join. + */ + join(...paths: string[]): string; + /** + * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. + * + * Starting from leftmost {from} parameter, resolves {to} to an absolute path. + * + * If {to} isn't already absolute, {from} arguments are prepended in right to left order, + * until an absolute path is found. If after using all {from} paths still no absolute path is found, + * the current working directory is used as well. The resulting path is normalized, + * and trailing slashes are removed unless the path gets resolved to the root directory. + * + * @param pathSegments string paths to join. Non-string arguments are ignored. + */ + resolve(...pathSegments: string[]): string; + /** + * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. + * + * @param path path to test. + */ + isAbsolute(p: string): boolean; + /** + * Solve the relative path from {from} to {to}. + * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. + */ + relative(from: string, to: string): string; + /** + * Return the directory name of a path. Similar to the Unix dirname command. + * + * @param p the path to evaluate. + */ + dirname(p: string): string; + /** + * Return the last portion of a path. Similar to the Unix basename command. + * Often used to extract the file name from a fully qualified path. + * + * @param p the path to evaluate. + * @param ext optionally, an extension to remove from the result. + */ + basename(p: string, ext?: string): string; + /** + * Return the extension of the path, from the last '.' to end of string in the last portion of the path. + * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string + * + * @param p the path to evaluate. + */ + extname(p: string): string; + /** + * The platform-specific file separator. '\\' or '/'. + */ + readonly sep: string; + /** + * The platform-specific file delimiter. ';' or ':'. + */ + readonly delimiter: string; + /** + * Returns an object from a path string - the opposite of format(). + * + * @param pathString path to evaluate. + */ + parse(p: string): ParsedPath; + /** + * Returns a path string from an object - the opposite of parse(). + * + * @param pathString path to evaluate. + */ + format(pP: FormatInputPathObject): string; + /** + * On Windows systems only, returns an equivalent namespace-prefixed path for the given path. + * If path is not a string, path will be returned without modifications. + * This method is meaningful only on Windows system. + * On POSIX systems, the method is non-operational and always returns path without modifications. + */ + toNamespacedPath(path: string): string; + /** + * Posix specific pathing. + * Same as parent object on posix. + */ + readonly posix: PlatformPath; + /** + * Windows specific pathing. + * Same as parent object on windows + */ + readonly win32: PlatformPath; + } + } + const path: path.PlatformPath; + export = path; +} diff --git a/themes/piratecare/node_modules/@types/node/perf_hooks.d.ts b/themes/piratecare/node_modules/@types/node/perf_hooks.d.ts new file mode 100644 index 0000000..bf44d44 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/perf_hooks.d.ts @@ -0,0 +1,304 @@ +declare module "perf_hooks" { + import { AsyncResource } from "async_hooks"; + + interface PerformanceEntry { + /** + * The total number of milliseconds elapsed for this entry. + * This value will not be meaningful for all Performance Entry types. + */ + readonly duration: number; + + /** + * The name of the performance entry. + */ + readonly name: string; + + /** + * The high resolution millisecond timestamp marking the starting time of the Performance Entry. + */ + readonly startTime: number; + + /** + * The type of the performance entry. + * Currently it may be one of: 'node', 'mark', 'measure', 'gc', or 'function'. + */ + readonly entryType: string; + + /** + * When performanceEntry.entryType is equal to 'gc', the performance.kind property identifies + * the type of garbage collection operation that occurred. + * The value may be one of perf_hooks.constants. + */ + readonly kind?: number; + } + + interface PerformanceNodeTiming extends PerformanceEntry { + /** + * The high resolution millisecond timestamp at which the Node.js process completed bootstrap. + */ + readonly bootstrapComplete: number; + + /** + * The high resolution millisecond timestamp at which cluster processing ended. + */ + readonly clusterSetupEnd: number; + + /** + * The high resolution millisecond timestamp at which cluster processing started. + */ + readonly clusterSetupStart: number; + + /** + * The high resolution millisecond timestamp at which the Node.js event loop exited. + */ + readonly loopExit: number; + + /** + * The high resolution millisecond timestamp at which the Node.js event loop started. + */ + readonly loopStart: number; + + /** + * The high resolution millisecond timestamp at which main module load ended. + */ + readonly moduleLoadEnd: number; + + /** + * The high resolution millisecond timestamp at which main module load started. + */ + readonly moduleLoadStart: number; + + /** + * The high resolution millisecond timestamp at which the Node.js process was initialized. + */ + readonly nodeStart: number; + + /** + * The high resolution millisecond timestamp at which preload module load ended. + */ + readonly preloadModuleLoadEnd: number; + + /** + * The high resolution millisecond timestamp at which preload module load started. + */ + readonly preloadModuleLoadStart: number; + + /** + * The high resolution millisecond timestamp at which third_party_main processing ended. + */ + readonly thirdPartyMainEnd: number; + + /** + * The high resolution millisecond timestamp at which third_party_main processing started. + */ + readonly thirdPartyMainStart: number; + + /** + * The high resolution millisecond timestamp at which the V8 platform was initialized. + */ + readonly v8Start: number; + } + + interface Performance { + /** + * If name is not provided, removes all PerformanceFunction objects from the Performance Timeline. + * If name is provided, removes entries with name. + * @param name + */ + clearFunctions(name?: string): void; + + /** + * If name is not provided, removes all PerformanceMark objects from the Performance Timeline. + * If name is provided, removes only the named mark. + * @param name + */ + clearMarks(name?: string): void; + + /** + * If name is not provided, removes all PerformanceMeasure objects from the Performance Timeline. + * If name is provided, removes only objects whose performanceEntry.name matches name. + */ + clearMeasures(name?: string): void; + + /** + * Returns a list of all PerformanceEntry objects in chronological order with respect to performanceEntry.startTime. + * @return list of all PerformanceEntry objects + */ + getEntries(): PerformanceEntry[]; + + /** + * Returns a list of all PerformanceEntry objects in chronological order with respect to performanceEntry.startTime + * whose performanceEntry.name is equal to name, and optionally, whose performanceEntry.entryType is equal to type. + * @param name + * @param type + * @return list of all PerformanceEntry objects + */ + getEntriesByName(name: string, type?: string): PerformanceEntry[]; + + /** + * Returns a list of all PerformanceEntry objects in chronological order with respect to performanceEntry.startTime + * whose performanceEntry.entryType is equal to type. + * @param type + * @return list of all PerformanceEntry objects + */ + getEntriesByType(type: string): PerformanceEntry[]; + + /** + * Creates a new PerformanceMark entry in the Performance Timeline. + * A PerformanceMark is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'mark', + * and whose performanceEntry.duration is always 0. + * Performance marks are used to mark specific significant moments in the Performance Timeline. + * @param name + */ + mark(name?: string): void; + + /** + * Creates a new PerformanceMeasure entry in the Performance Timeline. + * A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure', + * and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark. + * + * The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify + * any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist, + * then startMark is set to timeOrigin by default. + * + * The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp + * properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown. + * @param name + * @param startMark + * @param endMark + */ + measure(name: string, startMark: string, endMark: string): void; + + /** + * An instance of the PerformanceNodeTiming class that provides performance metrics for specific Node.js operational milestones. + */ + readonly nodeTiming: PerformanceNodeTiming; + + /** + * @return the current high resolution millisecond timestamp + */ + now(): number; + + /** + * The timeOrigin specifies the high resolution millisecond timestamp from which all performance metric durations are measured. + */ + readonly timeOrigin: number; + + /** + * Wraps a function within a new function that measures the running time of the wrapped function. + * A PerformanceObserver must be subscribed to the 'function' event type in order for the timing details to be accessed. + * @param fn + */ + timerify any>(fn: T): T; + } + + interface PerformanceObserverEntryList { + /** + * @return a list of PerformanceEntry objects in chronological order with respect to performanceEntry.startTime. + */ + getEntries(): PerformanceEntry[]; + + /** + * @return a list of PerformanceEntry objects in chronological order with respect to performanceEntry.startTime + * whose performanceEntry.name is equal to name, and optionally, whose performanceEntry.entryType is equal to type. + */ + getEntriesByName(name: string, type?: string): PerformanceEntry[]; + + /** + * @return Returns a list of PerformanceEntry objects in chronological order with respect to performanceEntry.startTime + * whose performanceEntry.entryType is equal to type. + */ + getEntriesByType(type: string): PerformanceEntry[]; + } + + type PerformanceObserverCallback = (list: PerformanceObserverEntryList, observer: PerformanceObserver) => void; + + class PerformanceObserver extends AsyncResource { + constructor(callback: PerformanceObserverCallback); + + /** + * Disconnects the PerformanceObserver instance from all notifications. + */ + disconnect(): void; + + /** + * Subscribes the PerformanceObserver instance to notifications of new PerformanceEntry instances identified by options.entryTypes. + * When options.buffered is false, the callback will be invoked once for every PerformanceEntry instance. + * Property buffered defaults to false. + * @param options + */ + observe(options: { entryTypes: string[], buffered?: boolean }): void; + } + + namespace constants { + const NODE_PERFORMANCE_GC_MAJOR: number; + const NODE_PERFORMANCE_GC_MINOR: number; + const NODE_PERFORMANCE_GC_INCREMENTAL: number; + const NODE_PERFORMANCE_GC_WEAKCB: number; + } + + const performance: Performance; + + interface EventLoopMonitorOptions { + /** + * The sampling rate in milliseconds. + * Must be greater than zero. + * @default 10 + */ + resolution?: number; + } + + interface EventLoopDelayMonitor { + /** + * Enables the event loop delay sample timer. Returns `true` if the timer was started, `false` if it was already started. + */ + enable(): boolean; + /** + * Disables the event loop delay sample timer. Returns `true` if the timer was stopped, `false` if it was already stopped. + */ + disable(): boolean; + + /** + * Resets the collected histogram data. + */ + reset(): void; + + /** + * Returns the value at the given percentile. + * @param percentile A percentile value between 1 and 100. + */ + percentile(percentile: number): number; + + /** + * A `Map` object detailing the accumulated percentile distribution. + */ + readonly percentiles: Map; + + /** + * The number of times the event loop delay exceeded the maximum 1 hour eventloop delay threshold. + */ + readonly exceeds: number; + + /** + * The minimum recorded event loop delay. + */ + readonly min: number; + + /** + * The maximum recorded event loop delay. + */ + readonly max: number; + + /** + * The mean of the recorded event loop delays. + */ + readonly mean: number; + + /** + * The standard deviation of the recorded event loop delays. + */ + readonly stddev: number; + } + + function monitorEventLoopDelay(options?: EventLoopMonitorOptions): EventLoopDelayMonitor; +} diff --git a/themes/piratecare/node_modules/@types/node/process.d.ts b/themes/piratecare/node_modules/@types/node/process.d.ts new file mode 100644 index 0000000..d007d4e --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/process.d.ts @@ -0,0 +1,15 @@ +declare module "process" { + import * as tty from "tty"; + + global { + namespace NodeJS { + // this namespace merge is here because these are specifically used + // as the type for process.stdin, process.stdout, and process.stderr. + // they can't live in tty.d.ts because we need to disambiguate the imported name. + interface ReadStream extends tty.ReadStream {} + interface WriteStream extends tty.WriteStream {} + } + } + + export = process; +} diff --git a/themes/piratecare/node_modules/@types/node/punycode.d.ts b/themes/piratecare/node_modules/@types/node/punycode.d.ts new file mode 100644 index 0000000..75d2811 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/punycode.d.ts @@ -0,0 +1,12 @@ +declare module "punycode" { + function decode(string: string): string; + function encode(string: string): string; + function toUnicode(domain: string): string; + function toASCII(domain: string): string; + const ucs2: ucs2; + interface ucs2 { + decode(string: string): number[]; + encode(codePoints: number[]): string; + } + const version: string; +} diff --git a/themes/piratecare/node_modules/@types/node/querystring.d.ts b/themes/piratecare/node_modules/@types/node/querystring.d.ts new file mode 100644 index 0000000..0fd6fee --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/querystring.d.ts @@ -0,0 +1,29 @@ +declare module "querystring" { + interface StringifyOptions { + encodeURIComponent?: (str: string) => string; + } + + interface ParseOptions { + maxKeys?: number; + decodeURIComponent?: (str: string) => string; + } + + interface ParsedUrlQuery { [key: string]: string | string[]; } + + interface ParsedUrlQueryInput { + [key: string]: string | number | boolean | string[] | number[] | boolean[] | undefined | null; + } + + function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string; + function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery; + /** + * The querystring.encode() function is an alias for querystring.stringify(). + */ + const encode: typeof stringify; + /** + * The querystring.decode() function is an alias for querystring.parse(). + */ + const decode: typeof parse; + function escape(str: string): string; + function unescape(str: string): string; +} diff --git a/themes/piratecare/node_modules/@types/node/readline.d.ts b/themes/piratecare/node_modules/@types/node/readline.d.ts new file mode 100644 index 0000000..caa4857 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/readline.d.ts @@ -0,0 +1,170 @@ +declare module "readline" { + import * as events from "events"; + import * as stream from "stream"; + + interface Key { + sequence?: string; + name?: string; + ctrl?: boolean; + meta?: boolean; + shift?: boolean; + } + + class Interface extends events.EventEmitter { + readonly terminal: boolean; + + // Need direct access to line/cursor data, for use in external processes + // see: https://github.com/nodejs/node/issues/30347 + /** The current input data */ + readonly line: string; + /** The current cursor position in the input line */ + readonly cursor: number; + + /** + * NOTE: According to the documentation: + * + * > Instances of the `readline.Interface` class are constructed using the + * > `readline.createInterface()` method. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface + */ + protected constructor(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean); + /** + * NOTE: According to the documentation: + * + * > Instances of the `readline.Interface` class are constructed using the + * > `readline.createInterface()` method. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface + */ + protected constructor(options: ReadLineOptions); + + setPrompt(prompt: string): void; + prompt(preserveCursor?: boolean): void; + question(query: string, callback: (answer: string) => void): void; + pause(): this; + resume(): this; + close(): void; + write(data: string | Buffer, key?: Key): void; + + /** + * Returns the real position of the cursor in relation to the input + * prompt + string. Long input (wrapping) strings, as well as multiple + * line prompts are included in the calculations. + */ + getCursorPos(): CursorPos; + + /** + * events.EventEmitter + * 1. close + * 2. line + * 3. pause + * 4. resume + * 5. SIGCONT + * 6. SIGINT + * 7. SIGTSTP + */ + + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "close", listener: () => void): this; + addListener(event: "line", listener: (input: string) => void): this; + addListener(event: "pause", listener: () => void): this; + addListener(event: "resume", listener: () => void): this; + addListener(event: "SIGCONT", listener: () => void): this; + addListener(event: "SIGINT", listener: () => void): this; + addListener(event: "SIGTSTP", listener: () => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "close"): boolean; + emit(event: "line", input: string): boolean; + emit(event: "pause"): boolean; + emit(event: "resume"): boolean; + emit(event: "SIGCONT"): boolean; + emit(event: "SIGINT"): boolean; + emit(event: "SIGTSTP"): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "close", listener: () => void): this; + on(event: "line", listener: (input: string) => void): this; + on(event: "pause", listener: () => void): this; + on(event: "resume", listener: () => void): this; + on(event: "SIGCONT", listener: () => void): this; + on(event: "SIGINT", listener: () => void): this; + on(event: "SIGTSTP", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "close", listener: () => void): this; + once(event: "line", listener: (input: string) => void): this; + once(event: "pause", listener: () => void): this; + once(event: "resume", listener: () => void): this; + once(event: "SIGCONT", listener: () => void): this; + once(event: "SIGINT", listener: () => void): this; + once(event: "SIGTSTP", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "close", listener: () => void): this; + prependListener(event: "line", listener: (input: string) => void): this; + prependListener(event: "pause", listener: () => void): this; + prependListener(event: "resume", listener: () => void): this; + prependListener(event: "SIGCONT", listener: () => void): this; + prependListener(event: "SIGINT", listener: () => void): this; + prependListener(event: "SIGTSTP", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "line", listener: (input: string) => void): this; + prependOnceListener(event: "pause", listener: () => void): this; + prependOnceListener(event: "resume", listener: () => void): this; + prependOnceListener(event: "SIGCONT", listener: () => void): this; + prependOnceListener(event: "SIGINT", listener: () => void): this; + prependOnceListener(event: "SIGTSTP", listener: () => void): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + + type ReadLine = Interface; // type forwarded for backwards compatiblity + + type Completer = (line: string) => CompleterResult; + type AsyncCompleter = (line: string, callback: (err?: null | Error, result?: CompleterResult) => void) => any; + + type CompleterResult = [string[], string]; + + interface ReadLineOptions { + input: NodeJS.ReadableStream; + output?: NodeJS.WritableStream; + completer?: Completer | AsyncCompleter; + terminal?: boolean; + historySize?: number; + prompt?: string; + crlfDelay?: number; + removeHistoryDuplicates?: boolean; + escapeCodeTimeout?: number; + } + + function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean): Interface; + function createInterface(options: ReadLineOptions): Interface; + function emitKeypressEvents(stream: NodeJS.ReadableStream, readlineInterface?: Interface): void; + + type Direction = -1 | 0 | 1; + + interface CursorPos { + rows: number; + cols: number; + } + + /** + * Clears the current line of this WriteStream in a direction identified by `dir`. + */ + function clearLine(stream: NodeJS.WritableStream, dir: Direction, callback?: () => void): boolean; + /** + * Clears this `WriteStream` from the current cursor down. + */ + function clearScreenDown(stream: NodeJS.WritableStream, callback?: () => void): boolean; + /** + * Moves this WriteStream's cursor to the specified position. + */ + function cursorTo(stream: NodeJS.WritableStream, x: number, y?: number, callback?: () => void): boolean; + /** + * Moves this WriteStream's cursor relative to its current position. + */ + function moveCursor(stream: NodeJS.WritableStream, dx: number, dy: number, callback?: () => void): boolean; +} diff --git a/themes/piratecare/node_modules/@types/node/repl.d.ts b/themes/piratecare/node_modules/@types/node/repl.d.ts new file mode 100644 index 0000000..5e321d2 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/repl.d.ts @@ -0,0 +1,387 @@ +declare module "repl" { + import { Interface, Completer, AsyncCompleter } from "readline"; + import { Context } from "vm"; + import { InspectOptions } from "util"; + + interface ReplOptions { + /** + * The input prompt to display. + * Default: `"> "` + */ + prompt?: string; + /** + * The `Readable` stream from which REPL input will be read. + * Default: `process.stdin` + */ + input?: NodeJS.ReadableStream; + /** + * The `Writable` stream to which REPL output will be written. + * Default: `process.stdout` + */ + output?: NodeJS.WritableStream; + /** + * If `true`, specifies that the output should be treated as a TTY terminal, and have + * ANSI/VT100 escape codes written to it. + * Default: checking the value of the `isTTY` property on the output stream upon + * instantiation. + */ + terminal?: boolean; + /** + * The function to be used when evaluating each given line of input. + * Default: an async wrapper for the JavaScript `eval()` function. An `eval` function can + * error with `repl.Recoverable` to indicate the input was incomplete and prompt for + * additional lines. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_default_evaluation + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_custom_evaluation_functions + */ + eval?: REPLEval; + /** + * Defines if the repl prints output previews or not. + * @default `true` Always `false` in case `terminal` is falsy. + */ + preview?: boolean; + /** + * If `true`, specifies that the default `writer` function should include ANSI color + * styling to REPL output. If a custom `writer` function is provided then this has no + * effect. + * Default: the REPL instance's `terminal` value. + */ + useColors?: boolean; + /** + * If `true`, specifies that the default evaluation function will use the JavaScript + * `global` as the context as opposed to creating a new separate context for the REPL + * instance. The node CLI REPL sets this value to `true`. + * Default: `false`. + */ + useGlobal?: boolean; + /** + * If `true`, specifies that the default writer will not output the return value of a + * command if it evaluates to `undefined`. + * Default: `false`. + */ + ignoreUndefined?: boolean; + /** + * The function to invoke to format the output of each command before writing to `output`. + * Default: a wrapper for `util.inspect`. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_customizing_repl_output + */ + writer?: REPLWriter; + /** + * An optional function used for custom Tab auto completion. + * + * @see https://nodejs.org/dist/latest-v11.x/docs/api/readline.html#readline_use_of_the_completer_function + */ + completer?: Completer | AsyncCompleter; + /** + * A flag that specifies whether the default evaluator executes all JavaScript commands in + * strict mode or default (sloppy) mode. + * Accepted values are: + * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode. + * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to + * prefacing every repl statement with `'use strict'`. + */ + replMode?: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT; + /** + * Stop evaluating the current piece of code when `SIGINT` is received, i.e. `Ctrl+C` is + * pressed. This cannot be used together with a custom `eval` function. + * Default: `false`. + */ + breakEvalOnSigint?: boolean; + } + + type REPLEval = (this: REPLServer, evalCmd: string, context: Context, file: string, cb: (err: Error | null, result: any) => void) => void; + type REPLWriter = (this: REPLServer, obj: any) => string; + + /** + * This is the default "writer" value, if none is passed in the REPL options, + * and it can be overridden by custom print functions. + */ + const writer: REPLWriter & { options: InspectOptions }; + + type REPLCommandAction = (this: REPLServer, text: string) => void; + + interface REPLCommand { + /** + * Help text to be displayed when `.help` is entered. + */ + help?: string; + /** + * The function to execute, optionally accepting a single string argument. + */ + action: REPLCommandAction; + } + + /** + * Provides a customizable Read-Eval-Print-Loop (REPL). + * + * Instances of `repl.REPLServer` will accept individual lines of user input, evaluate those + * according to a user-defined evaluation function, then output the result. Input and output + * may be from `stdin` and `stdout`, respectively, or may be connected to any Node.js `stream`. + * + * Instances of `repl.REPLServer` support automatic completion of inputs, simplistic Emacs-style + * line editing, multi-line inputs, ANSI-styled output, saving and restoring current REPL session + * state, error recovery, and customizable evaluation functions. + * + * Instances of `repl.REPLServer` are created using the `repl.start()` method and _should not_ + * be created directly using the JavaScript `new` keyword. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_repl + */ + class REPLServer extends Interface { + /** + * The `vm.Context` provided to the `eval` function to be used for JavaScript + * evaluation. + */ + readonly context: Context; + /** + * The `Readable` stream from which REPL input will be read. + */ + readonly inputStream: NodeJS.ReadableStream; + /** + * The `Writable` stream to which REPL output will be written. + */ + readonly outputStream: NodeJS.WritableStream; + /** + * The commands registered via `replServer.defineCommand()`. + */ + readonly commands: { readonly [name: string]: REPLCommand | undefined }; + /** + * A value indicating whether the REPL is currently in "editor mode". + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_commands_and_special_keys + */ + readonly editorMode: boolean; + /** + * A value indicating whether the `_` variable has been assigned. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly underscoreAssigned: boolean; + /** + * The last evaluation result from the REPL (assigned to the `_` variable inside of the REPL). + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly last: any; + /** + * A value indicating whether the `_error` variable has been assigned. + * + * @since v9.8.0 + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly underscoreErrAssigned: boolean; + /** + * The last error raised inside the REPL (assigned to the `_error` variable inside of the REPL). + * + * @since v9.8.0 + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly lastError: any; + /** + * Specified in the REPL options, this is the function to be used when evaluating each + * given line of input. If not specified in the REPL options, this is an async wrapper + * for the JavaScript `eval()` function. + */ + readonly eval: REPLEval; + /** + * Specified in the REPL options, this is a value indicating whether the default + * `writer` function should include ANSI color styling to REPL output. + */ + readonly useColors: boolean; + /** + * Specified in the REPL options, this is a value indicating whether the default `eval` + * function will use the JavaScript `global` as the context as opposed to creating a new + * separate context for the REPL instance. + */ + readonly useGlobal: boolean; + /** + * Specified in the REPL options, this is a value indicating whether the default `writer` + * function should output the result of a command if it evaluates to `undefined`. + */ + readonly ignoreUndefined: boolean; + /** + * Specified in the REPL options, this is the function to invoke to format the output of + * each command before writing to `outputStream`. If not specified in the REPL options, + * this will be a wrapper for `util.inspect`. + */ + readonly writer: REPLWriter; + /** + * Specified in the REPL options, this is the function to use for custom Tab auto-completion. + */ + readonly completer: Completer | AsyncCompleter; + /** + * Specified in the REPL options, this is a flag that specifies whether the default `eval` + * function should execute all JavaScript commands in strict mode or default (sloppy) mode. + * Possible values are: + * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode. + * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to + * prefacing every repl statement with `'use strict'`. + */ + readonly replMode: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT; + + /** + * NOTE: According to the documentation: + * + * > Instances of `repl.REPLServer` are created using the `repl.start()` method and + * > _should not_ be created directly using the JavaScript `new` keyword. + * + * `REPLServer` cannot be subclassed due to implementation specifics in NodeJS. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_class_replserver + */ + private constructor(); + + /** + * Used to add new `.`-prefixed commands to the REPL instance. Such commands are invoked + * by typing a `.` followed by the `keyword`. + * + * @param keyword The command keyword (_without_ a leading `.` character). + * @param cmd The function to invoke when the command is processed. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_replserver_definecommand_keyword_cmd + */ + defineCommand(keyword: string, cmd: REPLCommandAction | REPLCommand): void; + /** + * Readies the REPL instance for input from the user, printing the configured `prompt` to a + * new line in the `output` and resuming the `input` to accept new input. + * + * When multi-line input is being entered, an ellipsis is printed rather than the 'prompt'. + * + * This method is primarily intended to be called from within the action function for + * commands registered using the `replServer.defineCommand()` method. + * + * @param preserveCursor When `true`, the cursor placement will not be reset to `0`. + */ + displayPrompt(preserveCursor?: boolean): void; + /** + * Clears any command that has been buffered but not yet executed. + * + * This method is primarily intended to be called from within the action function for + * commands registered using the `replServer.defineCommand()` method. + * + * @since v9.0.0 + */ + clearBufferedCommand(): void; + + /** + * Initializes a history log file for the REPL instance. When executing the + * Node.js binary and using the command line REPL, a history file is initialized + * by default. However, this is not the case when creating a REPL + * programmatically. Use this method to initialize a history log file when working + * with REPL instances programmatically. + * @param path The path to the history file + */ + setupHistory(path: string, cb: (err: Error | null, repl: this) => void): void; + + /** + * events.EventEmitter + * 1. close - inherited from `readline.Interface` + * 2. line - inherited from `readline.Interface` + * 3. pause - inherited from `readline.Interface` + * 4. resume - inherited from `readline.Interface` + * 5. SIGCONT - inherited from `readline.Interface` + * 6. SIGINT - inherited from `readline.Interface` + * 7. SIGTSTP - inherited from `readline.Interface` + * 8. exit + * 9. reset + */ + + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "close", listener: () => void): this; + addListener(event: "line", listener: (input: string) => void): this; + addListener(event: "pause", listener: () => void): this; + addListener(event: "resume", listener: () => void): this; + addListener(event: "SIGCONT", listener: () => void): this; + addListener(event: "SIGINT", listener: () => void): this; + addListener(event: "SIGTSTP", listener: () => void): this; + addListener(event: "exit", listener: () => void): this; + addListener(event: "reset", listener: (context: Context) => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "close"): boolean; + emit(event: "line", input: string): boolean; + emit(event: "pause"): boolean; + emit(event: "resume"): boolean; + emit(event: "SIGCONT"): boolean; + emit(event: "SIGINT"): boolean; + emit(event: "SIGTSTP"): boolean; + emit(event: "exit"): boolean; + emit(event: "reset", context: Context): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "close", listener: () => void): this; + on(event: "line", listener: (input: string) => void): this; + on(event: "pause", listener: () => void): this; + on(event: "resume", listener: () => void): this; + on(event: "SIGCONT", listener: () => void): this; + on(event: "SIGINT", listener: () => void): this; + on(event: "SIGTSTP", listener: () => void): this; + on(event: "exit", listener: () => void): this; + on(event: "reset", listener: (context: Context) => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "close", listener: () => void): this; + once(event: "line", listener: (input: string) => void): this; + once(event: "pause", listener: () => void): this; + once(event: "resume", listener: () => void): this; + once(event: "SIGCONT", listener: () => void): this; + once(event: "SIGINT", listener: () => void): this; + once(event: "SIGTSTP", listener: () => void): this; + once(event: "exit", listener: () => void): this; + once(event: "reset", listener: (context: Context) => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "close", listener: () => void): this; + prependListener(event: "line", listener: (input: string) => void): this; + prependListener(event: "pause", listener: () => void): this; + prependListener(event: "resume", listener: () => void): this; + prependListener(event: "SIGCONT", listener: () => void): this; + prependListener(event: "SIGINT", listener: () => void): this; + prependListener(event: "SIGTSTP", listener: () => void): this; + prependListener(event: "exit", listener: () => void): this; + prependListener(event: "reset", listener: (context: Context) => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "line", listener: (input: string) => void): this; + prependOnceListener(event: "pause", listener: () => void): this; + prependOnceListener(event: "resume", listener: () => void): this; + prependOnceListener(event: "SIGCONT", listener: () => void): this; + prependOnceListener(event: "SIGINT", listener: () => void): this; + prependOnceListener(event: "SIGTSTP", listener: () => void): this; + prependOnceListener(event: "exit", listener: () => void): this; + prependOnceListener(event: "reset", listener: (context: Context) => void): this; + } + + /** + * A flag passed in the REPL options. Evaluates expressions in sloppy mode. + */ + const REPL_MODE_SLOPPY: unique symbol; + + /** + * A flag passed in the REPL options. Evaluates expressions in strict mode. + * This is equivalent to prefacing every repl statement with `'use strict'`. + */ + const REPL_MODE_STRICT: unique symbol; + + /** + * Creates and starts a `repl.REPLServer` instance. + * + * @param options The options for the `REPLServer`. If `options` is a string, then it specifies + * the input prompt. + */ + function start(options?: string | ReplOptions): REPLServer; + + /** + * Indicates a recoverable error that a `REPLServer` can use to support multi-line input. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_recoverable_errors + */ + class Recoverable extends SyntaxError { + err: Error; + + constructor(err: Error); + } +} diff --git a/themes/piratecare/node_modules/@types/node/stream.d.ts b/themes/piratecare/node_modules/@types/node/stream.d.ts new file mode 100644 index 0000000..e82e185 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/stream.d.ts @@ -0,0 +1,326 @@ +declare module "stream" { + import * as events from "events"; + + class internal extends events.EventEmitter { + pipe(destination: T, options?: { end?: boolean; }): T; + } + + namespace internal { + class Stream extends internal { + constructor(opts?: ReadableOptions); + } + + interface ReadableOptions { + highWaterMark?: number; + encoding?: string; + objectMode?: boolean; + read?(this: Readable, size: number): void; + destroy?(this: Readable, error: Error | null, callback: (error: Error | null) => void): void; + autoDestroy?: boolean; + } + + class Readable extends Stream implements NodeJS.ReadableStream { + /** + * A utility method for creating Readable Streams out of iterators. + */ + static from(iterable: Iterable | AsyncIterable, options?: ReadableOptions): Readable; + + readable: boolean; + readonly readableHighWaterMark: number; + readonly readableLength: number; + readonly readableObjectMode: boolean; + destroyed: boolean; + constructor(opts?: ReadableOptions); + _read(size: number): void; + read(size?: number): any; + setEncoding(encoding: string): this; + pause(): this; + resume(): this; + isPaused(): boolean; + unpipe(destination?: NodeJS.WritableStream): this; + unshift(chunk: any, encoding?: BufferEncoding): void; + wrap(oldStream: NodeJS.ReadableStream): this; + push(chunk: any, encoding?: string): boolean; + _destroy(error: Error | null, callback: (error?: Error | null) => void): void; + destroy(error?: Error): void; + + /** + * Event emitter + * The defined events on documents including: + * 1. close + * 2. data + * 3. end + * 4. readable + * 5. error + */ + addListener(event: "close", listener: () => void): this; + addListener(event: "data", listener: (chunk: any) => void): this; + addListener(event: "end", listener: () => void): this; + addListener(event: "readable", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "close"): boolean; + emit(event: "data", chunk: any): boolean; + emit(event: "end"): boolean; + emit(event: "readable"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "close", listener: () => void): this; + on(event: "data", listener: (chunk: any) => void): this; + on(event: "end", listener: () => void): this; + on(event: "readable", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "close", listener: () => void): this; + once(event: "data", listener: (chunk: any) => void): this; + once(event: "end", listener: () => void): this; + once(event: "readable", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "close", listener: () => void): this; + prependListener(event: "data", listener: (chunk: any) => void): this; + prependListener(event: "end", listener: () => void): this; + prependListener(event: "readable", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "data", listener: (chunk: any) => void): this; + prependOnceListener(event: "end", listener: () => void): this; + prependOnceListener(event: "readable", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + + removeListener(event: "close", listener: () => void): this; + removeListener(event: "data", listener: (chunk: any) => void): this; + removeListener(event: "end", listener: () => void): this; + removeListener(event: "readable", listener: () => void): this; + removeListener(event: "error", listener: (err: Error) => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + + [Symbol.asyncIterator](): AsyncIterableIterator; + } + + interface WritableOptions { + highWaterMark?: number; + decodeStrings?: boolean; + defaultEncoding?: string; + objectMode?: boolean; + emitClose?: boolean; + write?(this: Writable, chunk: any, encoding: string, callback: (error?: Error | null) => void): void; + writev?(this: Writable, chunks: Array<{ chunk: any, encoding: string }>, callback: (error?: Error | null) => void): void; + destroy?(this: Writable, error: Error | null, callback: (error: Error | null) => void): void; + final?(this: Writable, callback: (error?: Error | null) => void): void; + autoDestroy?: boolean; + } + + class Writable extends Stream implements NodeJS.WritableStream { + readonly writable: boolean; + readonly writableEnded: boolean; + readonly writableFinished: boolean; + readonly writableHighWaterMark: number; + readonly writableLength: number; + readonly writableObjectMode: boolean; + readonly writableCorked: number; + destroyed: boolean; + constructor(opts?: WritableOptions); + _write(chunk: any, encoding: string, callback: (error?: Error | null) => void): void; + _writev?(chunks: Array<{ chunk: any, encoding: string }>, callback: (error?: Error | null) => void): void; + _destroy(error: Error | null, callback: (error?: Error | null) => void): void; + _final(callback: (error?: Error | null) => void): void; + write(chunk: any, cb?: (error: Error | null | undefined) => void): boolean; + write(chunk: any, encoding: string, cb?: (error: Error | null | undefined) => void): boolean; + setDefaultEncoding(encoding: string): this; + end(cb?: () => void): void; + end(chunk: any, cb?: () => void): void; + end(chunk: any, encoding: string, cb?: () => void): void; + cork(): void; + uncork(): void; + destroy(error?: Error): void; + + /** + * Event emitter + * The defined events on documents including: + * 1. close + * 2. drain + * 3. error + * 4. finish + * 5. pipe + * 6. unpipe + */ + addListener(event: "close", listener: () => void): this; + addListener(event: "drain", listener: () => void): this; + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "finish", listener: () => void): this; + addListener(event: "pipe", listener: (src: Readable) => void): this; + addListener(event: "unpipe", listener: (src: Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "close"): boolean; + emit(event: "drain"): boolean; + emit(event: "error", err: Error): boolean; + emit(event: "finish"): boolean; + emit(event: "pipe", src: Readable): boolean; + emit(event: "unpipe", src: Readable): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "close", listener: () => void): this; + on(event: "drain", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "finish", listener: () => void): this; + on(event: "pipe", listener: (src: Readable) => void): this; + on(event: "unpipe", listener: (src: Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "close", listener: () => void): this; + once(event: "drain", listener: () => void): this; + once(event: "error", listener: (err: Error) => void): this; + once(event: "finish", listener: () => void): this; + once(event: "pipe", listener: (src: Readable) => void): this; + once(event: "unpipe", listener: (src: Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "close", listener: () => void): this; + prependListener(event: "drain", listener: () => void): this; + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "finish", listener: () => void): this; + prependListener(event: "pipe", listener: (src: Readable) => void): this; + prependListener(event: "unpipe", listener: (src: Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "drain", listener: () => void): this; + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "finish", listener: () => void): this; + prependOnceListener(event: "pipe", listener: (src: Readable) => void): this; + prependOnceListener(event: "unpipe", listener: (src: Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + + removeListener(event: "close", listener: () => void): this; + removeListener(event: "drain", listener: () => void): this; + removeListener(event: "error", listener: (err: Error) => void): this; + removeListener(event: "finish", listener: () => void): this; + removeListener(event: "pipe", listener: (src: Readable) => void): this; + removeListener(event: "unpipe", listener: (src: Readable) => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + + interface DuplexOptions extends ReadableOptions, WritableOptions { + allowHalfOpen?: boolean; + readableObjectMode?: boolean; + writableObjectMode?: boolean; + readableHighWaterMark?: number; + writableHighWaterMark?: number; + writableCorked?: number; + read?(this: Duplex, size: number): void; + write?(this: Duplex, chunk: any, encoding: string, callback: (error?: Error | null) => void): void; + writev?(this: Duplex, chunks: Array<{ chunk: any, encoding: string }>, callback: (error?: Error | null) => void): void; + final?(this: Duplex, callback: (error?: Error | null) => void): void; + destroy?(this: Duplex, error: Error | null, callback: (error: Error | null) => void): void; + } + + // Note: Duplex extends both Readable and Writable. + class Duplex extends Readable implements Writable { + readonly writable: boolean; + readonly writableEnded: boolean; + readonly writableFinished: boolean; + readonly writableHighWaterMark: number; + readonly writableLength: number; + readonly writableObjectMode: boolean; + readonly writableCorked: number; + constructor(opts?: DuplexOptions); + _write(chunk: any, encoding: string, callback: (error?: Error | null) => void): void; + _writev?(chunks: Array<{ chunk: any, encoding: string }>, callback: (error?: Error | null) => void): void; + _destroy(error: Error | null, callback: (error: Error | null) => void): void; + _final(callback: (error?: Error | null) => void): void; + write(chunk: any, encoding?: string, cb?: (error: Error | null | undefined) => void): boolean; + write(chunk: any, cb?: (error: Error | null | undefined) => void): boolean; + setDefaultEncoding(encoding: string): this; + end(cb?: () => void): void; + end(chunk: any, cb?: () => void): void; + end(chunk: any, encoding?: string, cb?: () => void): void; + cork(): void; + uncork(): void; + } + + type TransformCallback = (error?: Error | null, data?: any) => void; + + interface TransformOptions extends DuplexOptions { + read?(this: Transform, size: number): void; + write?(this: Transform, chunk: any, encoding: string, callback: (error?: Error | null) => void): void; + writev?(this: Transform, chunks: Array<{ chunk: any, encoding: string }>, callback: (error?: Error | null) => void): void; + final?(this: Transform, callback: (error?: Error | null) => void): void; + destroy?(this: Transform, error: Error | null, callback: (error: Error | null) => void): void; + transform?(this: Transform, chunk: any, encoding: string, callback: TransformCallback): void; + flush?(this: Transform, callback: TransformCallback): void; + } + + class Transform extends Duplex { + constructor(opts?: TransformOptions); + _transform(chunk: any, encoding: string, callback: TransformCallback): void; + _flush(callback: TransformCallback): void; + } + + class PassThrough extends Transform { } + + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, callback: (err?: NodeJS.ErrnoException | null) => void): () => void; + namespace finished { + function __promisify__(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream): Promise; + } + + function pipeline(stream1: NodeJS.ReadableStream, stream2: T, callback?: (err: NodeJS.ErrnoException | null) => void): T; + function pipeline(stream1: NodeJS.ReadableStream, stream2: NodeJS.ReadWriteStream, stream3: T, callback?: (err: NodeJS.ErrnoException | null) => void): T; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream, + stream3: NodeJS.ReadWriteStream, + stream4: T, + callback?: (err: NodeJS.ErrnoException | null) => void, + ): T; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream, + stream3: NodeJS.ReadWriteStream, + stream4: NodeJS.ReadWriteStream, + stream5: T, + callback?: (err: NodeJS.ErrnoException | null) => void, + ): T; + function pipeline(streams: Array, callback?: (err: NodeJS.ErrnoException | null) => void): NodeJS.WritableStream; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array void)>, + ): NodeJS.WritableStream; + namespace pipeline { + function __promisify__(stream1: NodeJS.ReadableStream, stream2: NodeJS.WritableStream): Promise; + function __promisify__(stream1: NodeJS.ReadableStream, stream2: NodeJS.ReadWriteStream, stream3: NodeJS.WritableStream): Promise; + function __promisify__(stream1: NodeJS.ReadableStream, stream2: NodeJS.ReadWriteStream, stream3: NodeJS.ReadWriteStream, stream4: NodeJS.WritableStream): Promise; + function __promisify__( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream, + stream3: NodeJS.ReadWriteStream, + stream4: NodeJS.ReadWriteStream, + stream5: NodeJS.WritableStream, + ): Promise; + function __promisify__(streams: Array): Promise; + function __promisify__( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array, + ): Promise; + } + + interface Pipe { + close(): void; + hasRef(): boolean; + ref(): void; + unref(): void; + } + } + + export = internal; +} diff --git a/themes/piratecare/node_modules/@types/node/string_decoder.d.ts b/themes/piratecare/node_modules/@types/node/string_decoder.d.ts new file mode 100644 index 0000000..fe0e0b4 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/string_decoder.d.ts @@ -0,0 +1,7 @@ +declare module "string_decoder" { + class StringDecoder { + constructor(encoding?: string); + write(buffer: Buffer): string; + end(buffer?: Buffer): string; + } +} diff --git a/themes/piratecare/node_modules/@types/node/timers.d.ts b/themes/piratecare/node_modules/@types/node/timers.d.ts new file mode 100644 index 0000000..e64a673 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/timers.d.ts @@ -0,0 +1,16 @@ +declare module "timers" { + function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timeout; + namespace setTimeout { + function __promisify__(ms: number): Promise; + function __promisify__(ms: number, value: T): Promise; + } + function clearTimeout(timeoutId: NodeJS.Timeout): void; + function setInterval(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timeout; + function clearInterval(intervalId: NodeJS.Timeout): void; + function setImmediate(callback: (...args: any[]) => void, ...args: any[]): NodeJS.Immediate; + namespace setImmediate { + function __promisify__(): Promise; + function __promisify__(value: T): Promise; + } + function clearImmediate(immediateId: NodeJS.Immediate): void; +} diff --git a/themes/piratecare/node_modules/@types/node/tls.d.ts b/themes/piratecare/node_modules/@types/node/tls.d.ts new file mode 100644 index 0000000..a1a03b5 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/tls.d.ts @@ -0,0 +1,759 @@ +declare module "tls" { + import * as crypto from "crypto"; + import * as dns from "dns"; + import * as net from "net"; + import * as stream from "stream"; + + const CLIENT_RENEG_LIMIT: number; + const CLIENT_RENEG_WINDOW: number; + + interface Certificate { + /** + * Country code. + */ + C: string; + /** + * Street. + */ + ST: string; + /** + * Locality. + */ + L: string; + /** + * Organization. + */ + O: string; + /** + * Organizational unit. + */ + OU: string; + /** + * Common name. + */ + CN: string; + } + + interface PeerCertificate { + subject: Certificate; + issuer: Certificate; + subjectaltname: string; + infoAccess: { [index: string]: string[] | undefined }; + modulus: string; + exponent: string; + valid_from: string; + valid_to: string; + fingerprint: string; + ext_key_usage: string[]; + serialNumber: string; + raw: Buffer; + } + + interface DetailedPeerCertificate extends PeerCertificate { + issuerCertificate: DetailedPeerCertificate; + } + + interface CipherNameAndProtocol { + /** + * The cipher name. + */ + name: string; + /** + * SSL/TLS protocol version. + */ + version: string; + + /** + * IETF name for the cipher suite. + */ + standardName: string; + } + + interface EphemeralKeyInfo { + /** + * The supported types are 'DH' and 'ECDH'. + */ + type: string; + /** + * The name property is available only when type is 'ECDH'. + */ + name?: string; + /** + * The size of parameter of an ephemeral key exchange. + */ + size: number; + } + + interface KeyObject { + /** + * Private keys in PEM format. + */ + pem: string | Buffer; + /** + * Optional passphrase. + */ + passphrase?: string; + } + + interface PxfObject { + /** + * PFX or PKCS12 encoded private key and certificate chain. + */ + buf: string | Buffer; + /** + * Optional passphrase. + */ + passphrase?: string; + } + + interface TLSSocketOptions extends SecureContextOptions, CommonConnectionOptions { + /** + * If true the TLS socket will be instantiated in server-mode. + * Defaults to false. + */ + isServer?: boolean; + /** + * An optional net.Server instance. + */ + server?: net.Server; + + /** + * An optional Buffer instance containing a TLS session. + */ + session?: Buffer; + /** + * If true, specifies that the OCSP status request extension will be + * added to the client hello and an 'OCSPResponse' event will be + * emitted on the socket before establishing a secure communication + */ + requestOCSP?: boolean; + } + + class TLSSocket extends net.Socket { + /** + * Construct a new tls.TLSSocket object from an existing TCP socket. + */ + constructor(socket: net.Socket, options?: TLSSocketOptions); + + /** + * A boolean that is true if the peer certificate was signed by one of the specified CAs, otherwise false. + */ + authorized: boolean; + /** + * The reason why the peer's certificate has not been verified. + * This property becomes available only when tlsSocket.authorized === false. + */ + authorizationError: Error; + /** + * Static boolean value, always true. + * May be used to distinguish TLS sockets from regular ones. + */ + encrypted: boolean; + + /** + * String containing the selected ALPN protocol. + * When ALPN has no selected protocol, tlsSocket.alpnProtocol equals false. + */ + alpnProtocol?: string; + + /** + * Returns an object representing the local certificate. The returned + * object has some properties corresponding to the fields of the + * certificate. + * + * See tls.TLSSocket.getPeerCertificate() for an example of the + * certificate structure. + * + * If there is no local certificate, an empty object will be returned. + * If the socket has been destroyed, null will be returned. + */ + getCertificate(): PeerCertificate | object | null; + /** + * Returns an object representing the cipher name and the SSL/TLS protocol version of the current connection. + * @returns Returns an object representing the cipher name + * and the SSL/TLS protocol version of the current connection. + */ + getCipher(): CipherNameAndProtocol; + /** + * Returns an object representing the type, name, and size of parameter + * of an ephemeral key exchange in Perfect Forward Secrecy on a client + * connection. It returns an empty object when the key exchange is not + * ephemeral. As this is only supported on a client socket; null is + * returned if called on a server socket. The supported types are 'DH' + * and 'ECDH'. The name property is available only when type is 'ECDH'. + * + * For example: { type: 'ECDH', name: 'prime256v1', size: 256 }. + */ + getEphemeralKeyInfo(): EphemeralKeyInfo | object | null; + /** + * Returns the latest Finished message that has + * been sent to the socket as part of a SSL/TLS handshake, or undefined + * if no Finished message has been sent yet. + * + * As the Finished messages are message digests of the complete + * handshake (with a total of 192 bits for TLS 1.0 and more for SSL + * 3.0), they can be used for external authentication procedures when + * the authentication provided by SSL/TLS is not desired or is not + * enough. + * + * Corresponds to the SSL_get_finished routine in OpenSSL and may be + * used to implement the tls-unique channel binding from RFC 5929. + */ + getFinished(): Buffer | undefined; + /** + * Returns an object representing the peer's certificate. + * The returned object has some properties corresponding to the field of the certificate. + * If detailed argument is true the full chain with issuer property will be returned, + * if false only the top certificate without issuer property. + * If the peer does not provide a certificate, it returns null or an empty object. + * @param detailed - If true; the full chain with issuer property will be returned. + * @returns An object representing the peer's certificate. + */ + getPeerCertificate(detailed: true): DetailedPeerCertificate; + getPeerCertificate(detailed?: false): PeerCertificate; + getPeerCertificate(detailed?: boolean): PeerCertificate | DetailedPeerCertificate; + /** + * Returns the latest Finished message that is expected or has actually + * been received from the socket as part of a SSL/TLS handshake, or + * undefined if there is no Finished message so far. + * + * As the Finished messages are message digests of the complete + * handshake (with a total of 192 bits for TLS 1.0 and more for SSL + * 3.0), they can be used for external authentication procedures when + * the authentication provided by SSL/TLS is not desired or is not + * enough. + * + * Corresponds to the SSL_get_peer_finished routine in OpenSSL and may + * be used to implement the tls-unique channel binding from RFC 5929. + */ + getPeerFinished(): Buffer | undefined; + /** + * Returns a string containing the negotiated SSL/TLS protocol version of the current connection. + * The value `'unknown'` will be returned for connected sockets that have not completed the handshaking process. + * The value `null` will be returned for server sockets or disconnected client sockets. + * See https://www.openssl.org/docs/man1.0.2/ssl/SSL_get_version.html for more information. + * @returns negotiated SSL/TLS protocol version of the current connection + */ + getProtocol(): string | null; + /** + * Could be used to speed up handshake establishment when reconnecting to the server. + * @returns ASN.1 encoded TLS session or undefined if none was negotiated. + */ + getSession(): Buffer | undefined; + /** + * Returns a list of signature algorithms shared between the server and + * the client in the order of decreasing preference. + */ + getSharedSigalgs(): string[]; + /** + * NOTE: Works only with client TLS sockets. + * Useful only for debugging, for session reuse provide session option to tls.connect(). + * @returns TLS session ticket or undefined if none was negotiated. + */ + getTLSTicket(): Buffer | undefined; + /** + * Returns true if the session was reused, false otherwise. + */ + isSessionReused(): boolean; + /** + * Initiate TLS renegotiation process. + * + * NOTE: Can be used to request peer's certificate after the secure connection has been established. + * ANOTHER NOTE: When running as the server, socket will be destroyed with an error after handshakeTimeout timeout. + * @param options - The options may contain the following fields: rejectUnauthorized, + * requestCert (See tls.createServer() for details). + * @param callback - callback(err) will be executed with null as err, once the renegotiation + * is successfully completed. + * @return `undefined` when socket is destroy, `false` if negotiaion can't be initiated. + */ + renegotiate(options: { rejectUnauthorized?: boolean, requestCert?: boolean }, callback: (err: Error | null) => void): undefined | boolean; + /** + * Set maximum TLS fragment size (default and maximum value is: 16384, minimum is: 512). + * Smaller fragment size decreases buffering latency on the client: large fragments are buffered by + * the TLS layer until the entire fragment is received and its integrity is verified; + * large fragments can span multiple roundtrips, and their processing can be delayed due to packet + * loss or reordering. However, smaller fragments add extra TLS framing bytes and CPU overhead, + * which may decrease overall server throughput. + * @param size - TLS fragment size (default and maximum value is: 16384, minimum is: 512). + * @returns Returns true on success, false otherwise. + */ + setMaxSendFragment(size: number): boolean; + + /** + * Disables TLS renegotiation for this TLSSocket instance. Once called, + * attempts to renegotiate will trigger an 'error' event on the + * TLSSocket. + */ + disableRenegotiation(): void; + + /** + * When enabled, TLS packet trace information is written to `stderr`. This can be + * used to debug TLS connection problems. + * + * Note: The format of the output is identical to the output of `openssl s_client + * -trace` or `openssl s_server -trace`. While it is produced by OpenSSL's + * `SSL_trace()` function, the format is undocumented, can change without notice, + * and should not be relied on. + */ + enableTrace(): void; + + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "OCSPResponse", listener: (response: Buffer) => void): this; + addListener(event: "secureConnect", listener: () => void): this; + addListener(event: "session", listener: (session: Buffer) => void): this; + addListener(event: "keylog", listener: (line: Buffer) => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "OCSPResponse", response: Buffer): boolean; + emit(event: "secureConnect"): boolean; + emit(event: "session", session: Buffer): boolean; + emit(event: "keylog", line: Buffer): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "OCSPResponse", listener: (response: Buffer) => void): this; + on(event: "secureConnect", listener: () => void): this; + on(event: "session", listener: (session: Buffer) => void): this; + on(event: "keylog", listener: (line: Buffer) => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "OCSPResponse", listener: (response: Buffer) => void): this; + once(event: "secureConnect", listener: () => void): this; + once(event: "session", listener: (session: Buffer) => void): this; + once(event: "keylog", listener: (line: Buffer) => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "OCSPResponse", listener: (response: Buffer) => void): this; + prependListener(event: "secureConnect", listener: () => void): this; + prependListener(event: "session", listener: (session: Buffer) => void): this; + prependListener(event: "keylog", listener: (line: Buffer) => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "OCSPResponse", listener: (response: Buffer) => void): this; + prependOnceListener(event: "secureConnect", listener: () => void): this; + prependOnceListener(event: "session", listener: (session: Buffer) => void): this; + prependOnceListener(event: "keylog", listener: (line: Buffer) => void): this; + } + + interface CommonConnectionOptions { + /** + * An optional TLS context object from tls.createSecureContext() + */ + secureContext?: SecureContext; + + /** + * When enabled, TLS packet trace information is written to `stderr`. This can be + * used to debug TLS connection problems. + * @default false + */ + enableTrace?: boolean; + /** + * If true the server will request a certificate from clients that + * connect and attempt to verify that certificate. Defaults to + * false. + */ + requestCert?: boolean; + /** + * An array of strings or a Buffer naming possible ALPN protocols. + * (Protocols should be ordered by their priority.) + */ + ALPNProtocols?: string[] | Uint8Array[] | Uint8Array; + /** + * SNICallback(servername, cb) A function that will be + * called if the client supports SNI TLS extension. Two arguments + * will be passed when called: servername and cb. SNICallback should + * invoke cb(null, ctx), where ctx is a SecureContext instance. + * (tls.createSecureContext(...) can be used to get a proper + * SecureContext.) If SNICallback wasn't provided the default callback + * with high-level API will be used (see below). + */ + SNICallback?: (servername: string, cb: (err: Error | null, ctx: SecureContext) => void) => void; + /** + * If true the server will reject any connection which is not + * authorized with the list of supplied CAs. This option only has an + * effect if requestCert is true. + * @default true + */ + rejectUnauthorized?: boolean; + } + + interface TlsOptions extends SecureContextOptions, CommonConnectionOptions { + /** + * Abort the connection if the SSL/TLS handshake does not finish in the + * specified number of milliseconds. A 'tlsClientError' is emitted on + * the tls.Server object whenever a handshake times out. Default: + * 120000 (120 seconds). + */ + handshakeTimeout?: number; + /** + * The number of seconds after which a TLS session created by the + * server will no longer be resumable. See Session Resumption for more + * information. Default: 300. + */ + sessionTimeout?: number; + /** + * 48-bytes of cryptographically strong pseudo-random data. + */ + ticketKeys?: Buffer; + + /** + * + * @param socket + * @param identity identity parameter sent from the client. + * @return pre-shared key that must either be + * a buffer or `null` to stop the negotiation process. Returned PSK must be + * compatible with the selected cipher's digest. + * + * When negotiating TLS-PSK (pre-shared keys), this function is called + * with the identity provided by the client. + * If the return value is `null` the negotiation process will stop and an + * "unknown_psk_identity" alert message will be sent to the other party. + * If the server wishes to hide the fact that the PSK identity was not known, + * the callback must provide some random data as `psk` to make the connection + * fail with "decrypt_error" before negotiation is finished. + * PSK ciphers are disabled by default, and using TLS-PSK thus + * requires explicitly specifying a cipher suite with the `ciphers` option. + * More information can be found in the RFC 4279. + */ + + pskCallback?(socket: TLSSocket, identity: string): DataView | NodeJS.TypedArray | null; + /** + * hint to send to a client to help + * with selecting the identity during TLS-PSK negotiation. Will be ignored + * in TLS 1.3. Upon failing to set pskIdentityHint `tlsClientError` will be + * emitted with `ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED` code. + */ + pskIdentityHint?: string; + } + + interface PSKCallbackNegotation { + psk: DataView | NodeJS.TypedArray; + identitty: string; + } + + interface ConnectionOptions extends SecureContextOptions, CommonConnectionOptions { + host?: string; + port?: number; + path?: string; // Creates unix socket connection to path. If this option is specified, `host` and `port` are ignored. + socket?: net.Socket; // Establish secure connection on a given socket rather than creating a new socket + checkServerIdentity?: typeof checkServerIdentity; + servername?: string; // SNI TLS Extension + session?: Buffer; + minDHSize?: number; + lookup?: net.LookupFunction; + timeout?: number; + /** + * When negotiating TLS-PSK (pre-shared keys), this function is called + * with optional identity `hint` provided by the server or `null` + * in case of TLS 1.3 where `hint` was removed. + * It will be necessary to provide a custom `tls.checkServerIdentity()` + * for the connection as the default one will try to check hostname/IP + * of the server against the certificate but that's not applicable for PSK + * because there won't be a certificate present. + * More information can be found in the RFC 4279. + * + * @param hint message sent from the server to help client + * decide which identity to use during negotiation. + * Always `null` if TLS 1.3 is used. + * @returns Return `null` to stop the negotiation process. `psk` must be + * compatible with the selected cipher's digest. + * `identity` must use UTF-8 encoding. + */ + pskCallback?(hint: string | null): PSKCallbackNegotation | null; + } + + class Server extends net.Server { + /** + * The server.addContext() method adds a secure context that will be + * used if the client request's SNI name matches the supplied hostname + * (or wildcard). + */ + addContext(hostName: string, credentials: SecureContextOptions): void; + /** + * Returns the session ticket keys. + */ + getTicketKeys(): Buffer; + /** + * + * The server.setSecureContext() method replaces the + * secure context of an existing server. Existing connections to the + * server are not interrupted. + */ + setSecureContext(details: SecureContextOptions): void; + /** + * The server.setSecureContext() method replaces the secure context of + * an existing server. Existing connections to the server are not + * interrupted. + */ + setTicketKeys(keys: Buffer): void; + + /** + * events.EventEmitter + * 1. tlsClientError + * 2. newSession + * 3. OCSPRequest + * 4. resumeSession + * 5. secureConnection + * 6. keylog + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "tlsClientError", listener: (err: Error, tlsSocket: TLSSocket) => void): this; + addListener(event: "newSession", listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this; + addListener(event: "OCSPRequest", listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + addListener(event: "resumeSession", listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void): this; + addListener(event: "secureConnection", listener: (tlsSocket: TLSSocket) => void): this; + addListener(event: "keylog", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "tlsClientError", err: Error, tlsSocket: TLSSocket): boolean; + emit(event: "newSession", sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void): boolean; + emit(event: "OCSPRequest", certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void): boolean; + emit(event: "resumeSession", sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void): boolean; + emit(event: "secureConnection", tlsSocket: TLSSocket): boolean; + emit(event: "keylog", line: Buffer, tlsSocket: TLSSocket): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "tlsClientError", listener: (err: Error, tlsSocket: TLSSocket) => void): this; + on(event: "newSession", listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this; + on(event: "OCSPRequest", listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + on(event: "resumeSession", listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void): this; + on(event: "secureConnection", listener: (tlsSocket: TLSSocket) => void): this; + on(event: "keylog", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "tlsClientError", listener: (err: Error, tlsSocket: TLSSocket) => void): this; + once(event: "newSession", listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this; + once(event: "OCSPRequest", listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + once(event: "resumeSession", listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void): this; + once(event: "secureConnection", listener: (tlsSocket: TLSSocket) => void): this; + once(event: "keylog", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "tlsClientError", listener: (err: Error, tlsSocket: TLSSocket) => void): this; + prependListener(event: "newSession", listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this; + prependListener(event: "OCSPRequest", listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + prependListener(event: "resumeSession", listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void): this; + prependListener(event: "secureConnection", listener: (tlsSocket: TLSSocket) => void): this; + prependListener(event: "keylog", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "tlsClientError", listener: (err: Error, tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: "newSession", listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this; + prependOnceListener(event: "OCSPRequest", listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + prependOnceListener(event: "resumeSession", listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void): this; + prependOnceListener(event: "secureConnection", listener: (tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: "keylog", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + } + + interface SecurePair { + encrypted: TLSSocket; + cleartext: TLSSocket; + } + + type SecureVersion = 'TLSv1.3' | 'TLSv1.2' | 'TLSv1.1' | 'TLSv1'; + + interface SecureContextOptions { + /** + * Optionally override the trusted CA certificates. Default is to trust + * the well-known CAs curated by Mozilla. Mozilla's CAs are completely + * replaced when CAs are explicitly specified using this option. + */ + ca?: string | Buffer | Array; + /** + * Cert chains in PEM format. One cert chain should be provided per + * private key. Each cert chain should consist of the PEM formatted + * certificate for a provided private key, followed by the PEM + * formatted intermediate certificates (if any), in order, and not + * including the root CA (the root CA must be pre-known to the peer, + * see ca). When providing multiple cert chains, they do not have to + * be in the same order as their private keys in key. If the + * intermediate certificates are not provided, the peer will not be + * able to validate the certificate, and the handshake will fail. + */ + cert?: string | Buffer | Array; + /** + * Colon-separated list of supported signature algorithms. The list + * can contain digest algorithms (SHA256, MD5 etc.), public key + * algorithms (RSA-PSS, ECDSA etc.), combination of both (e.g + * 'RSA+SHA384') or TLS v1.3 scheme names (e.g. rsa_pss_pss_sha512). + */ + sigalgs?: string; + /** + * Cipher suite specification, replacing the default. For more + * information, see modifying the default cipher suite. Permitted + * ciphers can be obtained via tls.getCiphers(). Cipher names must be + * uppercased in order for OpenSSL to accept them. + */ + ciphers?: string; + /** + * Name of an OpenSSL engine which can provide the client certificate. + */ + clientCertEngine?: string; + /** + * PEM formatted CRLs (Certificate Revocation Lists). + */ + crl?: string | Buffer | Array; + /** + * Diffie Hellman parameters, required for Perfect Forward Secrecy. Use + * openssl dhparam to create the parameters. The key length must be + * greater than or equal to 1024 bits or else an error will be thrown. + * Although 1024 bits is permissible, use 2048 bits or larger for + * stronger security. If omitted or invalid, the parameters are + * silently discarded and DHE ciphers will not be available. + */ + dhparam?: string | Buffer; + /** + * A string describing a named curve or a colon separated list of curve + * NIDs or names, for example P-521:P-384:P-256, to use for ECDH key + * agreement. Set to auto to select the curve automatically. Use + * crypto.getCurves() to obtain a list of available curve names. On + * recent releases, openssl ecparam -list_curves will also display the + * name and description of each available elliptic curve. Default: + * tls.DEFAULT_ECDH_CURVE. + */ + ecdhCurve?: string; + /** + * Attempt to use the server's cipher suite preferences instead of the + * client's. When true, causes SSL_OP_CIPHER_SERVER_PREFERENCE to be + * set in secureOptions + */ + honorCipherOrder?: boolean; + /** + * Private keys in PEM format. PEM allows the option of private keys + * being encrypted. Encrypted keys will be decrypted with + * options.passphrase. Multiple keys using different algorithms can be + * provided either as an array of unencrypted key strings or buffers, + * or an array of objects in the form {pem: [, + * passphrase: ]}. The object form can only occur in an array. + * object.passphrase is optional. Encrypted keys will be decrypted with + * object.passphrase if provided, or options.passphrase if it is not. + */ + key?: string | Buffer | Array; + /** + * Name of an OpenSSL engine to get private key from. Should be used + * together with privateKeyIdentifier. + */ + privateKeyEngine?: string; + /** + * Identifier of a private key managed by an OpenSSL engine. Should be + * used together with privateKeyEngine. Should not be set together with + * key, because both options define a private key in different ways. + */ + privateKeyIdentifier?: string; + /** + * Optionally set the maximum TLS version to allow. One + * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the + * `secureProtocol` option, use one or the other. + * **Default:** `'TLSv1.3'`, unless changed using CLI options. Using + * `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to + * `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used. + */ + maxVersion?: SecureVersion; + /** + * Optionally set the minimum TLS version to allow. One + * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the + * `secureProtocol` option, use one or the other. It is not recommended to use + * less than TLSv1.2, but it may be required for interoperability. + * **Default:** `'TLSv1.2'`, unless changed using CLI options. Using + * `--tls-v1.0` sets the default to `'TLSv1'`. Using `--tls-v1.1` sets the default to + * `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to + * 'TLSv1.3'. If multiple of the options are provided, the lowest minimum is used. + */ + minVersion?: SecureVersion; + /** + * Shared passphrase used for a single private key and/or a PFX. + */ + passphrase?: string; + /** + * PFX or PKCS12 encoded private key and certificate chain. pfx is an + * alternative to providing key and cert individually. PFX is usually + * encrypted, if it is, passphrase will be used to decrypt it. Multiple + * PFX can be provided either as an array of unencrypted PFX buffers, + * or an array of objects in the form {buf: [, + * passphrase: ]}. The object form can only occur in an array. + * object.passphrase is optional. Encrypted PFX will be decrypted with + * object.passphrase if provided, or options.passphrase if it is not. + */ + pfx?: string | Buffer | Array; + /** + * Optionally affect the OpenSSL protocol behavior, which is not + * usually necessary. This should be used carefully if at all! Value is + * a numeric bitmask of the SSL_OP_* options from OpenSSL Options + */ + secureOptions?: number; // Value is a numeric bitmask of the `SSL_OP_*` options + /** + * Legacy mechanism to select the TLS protocol version to use, it does + * not support independent control of the minimum and maximum version, + * and does not support limiting the protocol to TLSv1.3. Use + * minVersion and maxVersion instead. The possible values are listed as + * SSL_METHODS, use the function names as strings. For example, use + * 'TLSv1_1_method' to force TLS version 1.1, or 'TLS_method' to allow + * any TLS protocol version up to TLSv1.3. It is not recommended to use + * TLS versions less than 1.2, but it may be required for + * interoperability. Default: none, see minVersion. + */ + secureProtocol?: string; + /** + * Opaque identifier used by servers to ensure session state is not + * shared between applications. Unused by clients. + */ + sessionIdContext?: string; + } + + interface SecureContext { + context: any; + } + + /* + * Verifies the certificate `cert` is issued to host `host`. + * @host The hostname to verify the certificate against + * @cert PeerCertificate representing the peer's certificate + * + * Returns Error object, populating it with the reason, host and cert on failure. On success, returns undefined. + */ + function checkServerIdentity(host: string, cert: PeerCertificate): Error | undefined; + function createServer(secureConnectionListener?: (socket: TLSSocket) => void): Server; + function createServer(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void): Server; + function connect(options: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + /** + * @deprecated + */ + function createSecurePair(credentials?: SecureContext, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair; + function createSecureContext(details: SecureContextOptions): SecureContext; + function getCiphers(): string[]; + + /** + * The default curve name to use for ECDH key agreement in a tls server. + * The default value is 'auto'. See tls.createSecureContext() for further + * information. + */ + let DEFAULT_ECDH_CURVE: string; + /** + * The default value of the maxVersion option of + * tls.createSecureContext(). It can be assigned any of the supported TLS + * protocol versions, 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Default: + * 'TLSv1.3', unless changed using CLI options. Using --tls-max-v1.2 sets + * the default to 'TLSv1.2'. Using --tls-max-v1.3 sets the default to + * 'TLSv1.3'. If multiple of the options are provided, the highest maximum + * is used. + */ + let DEFAULT_MAX_VERSION: SecureVersion; + /** + * The default value of the minVersion option of tls.createSecureContext(). + * It can be assigned any of the supported TLS protocol versions, + * 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Default: 'TLSv1.2', unless + * changed using CLI options. Using --tls-min-v1.0 sets the default to + * 'TLSv1'. Using --tls-min-v1.1 sets the default to 'TLSv1.1'. Using + * --tls-min-v1.3 sets the default to 'TLSv1.3'. If multiple of the options + * are provided, the lowest minimum is used. + */ + let DEFAULT_MIN_VERSION: SecureVersion; + + /** + * An immutable array of strings representing the root certificates (in PEM + * format) used for verifying peer certificates. This is the default value + * of the ca option to tls.createSecureContext(). + */ + const rootCertificates: ReadonlyArray; +} diff --git a/themes/piratecare/node_modules/@types/node/trace_events.d.ts b/themes/piratecare/node_modules/@types/node/trace_events.d.ts new file mode 100644 index 0000000..1f3a89c --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/trace_events.d.ts @@ -0,0 +1,61 @@ +declare module "trace_events" { + /** + * The `Tracing` object is used to enable or disable tracing for sets of + * categories. Instances are created using the + * `trace_events.createTracing()` method. + * + * When created, the `Tracing` object is disabled. Calling the + * `tracing.enable()` method adds the categories to the set of enabled trace + * event categories. Calling `tracing.disable()` will remove the categories + * from the set of enabled trace event categories. + */ + interface Tracing { + /** + * A comma-separated list of the trace event categories covered by this + * `Tracing` object. + */ + readonly categories: string; + + /** + * Disables this `Tracing` object. + * + * Only trace event categories _not_ covered by other enabled `Tracing` + * objects and _not_ specified by the `--trace-event-categories` flag + * will be disabled. + */ + disable(): void; + + /** + * Enables this `Tracing` object for the set of categories covered by + * the `Tracing` object. + */ + enable(): void; + + /** + * `true` only if the `Tracing` object has been enabled. + */ + readonly enabled: boolean; + } + + interface CreateTracingOptions { + /** + * An array of trace category names. Values included in the array are + * coerced to a string when possible. An error will be thrown if the + * value cannot be coerced. + */ + categories: string[]; + } + + /** + * Creates and returns a Tracing object for the given set of categories. + */ + function createTracing(options: CreateTracingOptions): Tracing; + + /** + * Returns a comma-separated list of all currently-enabled trace event + * categories. The current set of enabled trace event categories is + * determined by the union of all currently-enabled `Tracing` objects and + * any categories enabled using the `--trace-event-categories` flag. + */ + function getEnabledCategories(): string | undefined; +} diff --git a/themes/piratecare/node_modules/@types/node/ts3.5/fs.d.ts b/themes/piratecare/node_modules/@types/node/ts3.5/fs.d.ts new file mode 100644 index 0000000..0a9eae0 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/ts3.5/fs.d.ts @@ -0,0 +1,33 @@ +// tslint:disable-next-line:no-bad-reference +/// + +declare module 'fs' { + interface BigIntStats extends StatsBase { + } + + class BigIntStats { + atimeNs: BigInt; + mtimeNs: BigInt; + ctimeNs: BigInt; + birthtimeNs: BigInt; + } + + interface BigIntOptions { + bigint: true; + } + + interface StatOptions { + bigint: boolean; + } + + function stat(path: PathLike, options: BigIntOptions, callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void): void; + function stat(path: PathLike, options: StatOptions, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + + namespace stat { + function __promisify__(path: PathLike, options: BigIntOptions): Promise; + function __promisify__(path: PathLike, options: StatOptions): Promise; + } + + function statSync(path: PathLike, options: BigIntOptions): BigIntStats; + function statSync(path: PathLike, options: StatOptions): Stats | BigIntStats; +} diff --git a/themes/piratecare/node_modules/@types/node/ts3.5/globals.d.ts b/themes/piratecare/node_modules/@types/node/ts3.5/globals.d.ts new file mode 100644 index 0000000..70892bc --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/ts3.5/globals.d.ts @@ -0,0 +1,19 @@ +// tslint:disable-next-line:no-bad-reference +/// + +declare namespace NodeJS { + interface HRTime { + bigint(): bigint; + } +} + +interface Buffer extends Uint8Array { + readBigUInt64BE(offset?: number): bigint; + readBigUInt64LE(offset?: number): bigint; + readBigInt64BE(offset?: number): bigint; + readBigInt64LE(offset?: number): bigint; + writeBigInt64BE(value: bigint, offset?: number): number; + writeBigInt64LE(value: bigint, offset?: number): number; + writeBigUInt64BE(value: bigint, offset?: number): number; + writeBigUInt64LE(value: bigint, offset?: number): number; +} diff --git a/themes/piratecare/node_modules/@types/node/ts3.5/index.d.ts b/themes/piratecare/node_modules/@types/node/ts3.5/index.d.ts new file mode 100644 index 0000000..6a31db6 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/ts3.5/index.d.ts @@ -0,0 +1,17 @@ +// NOTE: These definitions support NodeJS and TypeScript 3.5. + +// Reference required types from the default lib: +/// +/// +/// +/// + +// Base definitions for all NodeJS modules that are not specific to any version of TypeScript: +// tslint:disable-next-line:no-bad-reference +/// + +// TypeScript 3.5-specific augmentations: +/// +/// +/// +/// diff --git a/themes/piratecare/node_modules/@types/node/ts3.5/util.d.ts b/themes/piratecare/node_modules/@types/node/ts3.5/util.d.ts new file mode 100644 index 0000000..5c57e6e --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/ts3.5/util.d.ts @@ -0,0 +1,9 @@ +// tslint:disable-next-line:no-bad-reference +/// + +declare module "util" { + namespace types { + function isBigInt64Array(value: any): value is BigInt64Array; + function isBigUint64Array(value: any): value is BigUint64Array; + } +} diff --git a/themes/piratecare/node_modules/@types/node/ts3.5/wasi.d.ts b/themes/piratecare/node_modules/@types/node/ts3.5/wasi.d.ts new file mode 100644 index 0000000..50c147e --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/ts3.5/wasi.d.ts @@ -0,0 +1,45 @@ +declare module 'wasi' { + interface WASIOptions { + /** + * An array of strings that the WebAssembly application will + * see as command line arguments. The first argument is the virtual path to the + * WASI command itself. + */ + args?: string[]; + /** + * An object similar to `process.env` that the WebAssembly + * application will see as its environment. + */ + env?: object; + /** + * This object represents the WebAssembly application's + * sandbox directory structure. The string keys of `preopens` are treated as + * directories within the sandbox. The corresponding values in `preopens` are + * the real paths to those directories on the host machine. + */ + preopens?: { + [key: string]: string; + }; + } + + class WASI { + constructor(options?: WASIOptions); + /** + * + * Attempt to begin execution of `instance` by invoking its `_start()` export. + * If `instance` does not contain a `_start()` export, then `start()` attempts to + * invoke the `__wasi_unstable_reactor_start()` export. If neither of those exports + * is present on `instance`, then `start()` does nothing. + * + * `start()` requires that `instance` exports a [`WebAssembly.Memory`][] named + * `memory`. If `instance` does not have a `memory` export an exception is thrown. + */ + start(instance: object): void; // TODO: avoid DOM dependency until WASM moved to own lib. + /** + * Is an object that implements the WASI system call API. This object + * should be passed as the `wasi_unstable` import during the instantiation of a + * [`WebAssembly.Instance`][]. + */ + readonly wasiImport: { [key: string]: any }; // TODO: Narrow to DOM types + } +} diff --git a/themes/piratecare/node_modules/@types/node/tty.d.ts b/themes/piratecare/node_modules/@types/node/tty.d.ts new file mode 100644 index 0000000..22bce21 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/tty.d.ts @@ -0,0 +1,66 @@ +declare module "tty" { + import * as net from "net"; + + function isatty(fd: number): boolean; + class ReadStream extends net.Socket { + constructor(fd: number, options?: net.SocketConstructorOpts); + isRaw: boolean; + setRawMode(mode: boolean): void; + isTTY: boolean; + } + /** + * -1 - to the left from cursor + * 0 - the entire line + * 1 - to the right from cursor + */ + type Direction = -1 | 0 | 1; + class WriteStream extends net.Socket { + constructor(fd: number); + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: "resize", listener: () => void): this; + + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: "resize"): boolean; + + on(event: string, listener: (...args: any[]) => void): this; + on(event: "resize", listener: () => void): this; + + once(event: string, listener: (...args: any[]) => void): this; + once(event: "resize", listener: () => void): this; + + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: "resize", listener: () => void): this; + + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: "resize", listener: () => void): this; + + /** + * Clears the current line of this WriteStream in a direction identified by `dir`. + */ + clearLine(dir: Direction, callback?: () => void): boolean; + /** + * Clears this `WriteStream` from the current cursor down. + */ + clearScreenDown(callback?: () => void): boolean; + /** + * Moves this WriteStream's cursor to the specified position. + */ + cursorTo(x: number, y?: number, callback?: () => void): boolean; + cursorTo(x: number, callback: () => void): boolean; + /** + * Moves this WriteStream's cursor relative to its current position. + */ + moveCursor(dx: number, dy: number, callback?: () => void): boolean; + /** + * @default `process.env` + */ + getColorDepth(env?: {}): number; + hasColors(depth?: number): boolean; + hasColors(env?: {}): boolean; + hasColors(depth: number, env?: {}): boolean; + getWindowSize(): [number, number]; + columns: number; + rows: number; + isTTY: boolean; + } +} diff --git a/themes/piratecare/node_modules/@types/node/url.d.ts b/themes/piratecare/node_modules/@types/node/url.d.ts new file mode 100644 index 0000000..d3a395b --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/url.d.ts @@ -0,0 +1,110 @@ +declare module "url" { + import { ParsedUrlQuery, ParsedUrlQueryInput } from 'querystring'; + + // Input to `url.format` + interface UrlObject { + auth?: string | null; + hash?: string | null; + host?: string | null; + hostname?: string | null; + href?: string | null; + pathname?: string | null; + protocol?: string | null; + search?: string | null; + slashes?: boolean | null; + port?: string | number | null; + query?: string | null | ParsedUrlQueryInput; + } + + // Output of `url.parse` + interface Url { + auth: string | null; + hash: string | null; + host: string | null; + hostname: string | null; + href: string; + path: string | null; + pathname: string | null; + protocol: string | null; + search: string | null; + slashes: boolean | null; + port: string | null; + query: string | null | ParsedUrlQuery; + } + + interface UrlWithParsedQuery extends Url { + query: ParsedUrlQuery; + } + + interface UrlWithStringQuery extends Url { + query: string | null; + } + + function parse(urlStr: string): UrlWithStringQuery; + function parse(urlStr: string, parseQueryString: false | undefined, slashesDenoteHost?: boolean): UrlWithStringQuery; + function parse(urlStr: string, parseQueryString: true, slashesDenoteHost?: boolean): UrlWithParsedQuery; + function parse(urlStr: string, parseQueryString: boolean, slashesDenoteHost?: boolean): Url; + + function format(URL: URL, options?: URLFormatOptions): string; + function format(urlObject: UrlObject | string): string; + function resolve(from: string, to: string): string; + + function domainToASCII(domain: string): string; + function domainToUnicode(domain: string): string; + + /** + * This function ensures the correct decodings of percent-encoded characters as + * well as ensuring a cross-platform valid absolute path string. + * @param url The file URL string or URL object to convert to a path. + */ + function fileURLToPath(url: string | URL): string; + + /** + * This function ensures that path is resolved absolutely, and that the URL + * control characters are correctly encoded when converting into a File URL. + * @param url The path to convert to a File URL. + */ + function pathToFileURL(url: string): URL; + + interface URLFormatOptions { + auth?: boolean; + fragment?: boolean; + search?: boolean; + unicode?: boolean; + } + + class URL { + constructor(input: string, base?: string | URL); + hash: string; + host: string; + hostname: string; + href: string; + readonly origin: string; + password: string; + pathname: string; + port: string; + protocol: string; + search: string; + readonly searchParams: URLSearchParams; + username: string; + toString(): string; + toJSON(): string; + } + + class URLSearchParams implements Iterable<[string, string]> { + constructor(init?: URLSearchParams | string | { [key: string]: string | string[] | undefined } | Iterable<[string, string]> | Array<[string, string]>); + append(name: string, value: string): void; + delete(name: string): void; + entries(): IterableIterator<[string, string]>; + forEach(callback: (value: string, name: string, searchParams: this) => void): void; + get(name: string): string | null; + getAll(name: string): string[]; + has(name: string): boolean; + keys(): IterableIterator; + set(name: string, value: string): void; + sort(): void; + toString(): string; + values(): IterableIterator; + [Symbol.iterator](): IterableIterator<[string, string]>; + } +} diff --git a/themes/piratecare/node_modules/@types/node/util.d.ts b/themes/piratecare/node_modules/@types/node/util.d.ts new file mode 100644 index 0000000..85a5ad8 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/util.d.ts @@ -0,0 +1,190 @@ +declare module "util" { + interface InspectOptions extends NodeJS.InspectOptions { } + type Style = 'special' | 'number' | 'bigint' | 'boolean' | 'undefined' | 'null' | 'string' | 'symbol' | 'date' | 'regexp' | 'module'; + type CustomInspectFunction = (depth: number, options: InspectOptionsStylized) => string; + interface InspectOptionsStylized extends InspectOptions { + stylize(text: string, styleType: Style): string; + } + function format(format: any, ...param: any[]): string; + function formatWithOptions(inspectOptions: InspectOptions, format: string, ...param: any[]): string; + /** @deprecated since v0.11.3 - use a third party module instead. */ + function log(string: string): void; + function inspect(object: any, showHidden?: boolean, depth?: number | null, color?: boolean): string; + function inspect(object: any, options: InspectOptions): string; + namespace inspect { + let colors: { + [color: string]: [number, number] | undefined + }; + let styles: { + [K in Style]: string + }; + let defaultOptions: InspectOptions; + /** + * Allows changing inspect settings from the repl. + */ + let replDefaults: InspectOptions; + const custom: unique symbol; + } + /** @deprecated since v4.0.0 - use `Array.isArray()` instead. */ + function isArray(object: any): object is any[]; + /** @deprecated since v4.0.0 - use `util.types.isRegExp()` instead. */ + function isRegExp(object: any): object is RegExp; + /** @deprecated since v4.0.0 - use `util.types.isDate()` instead. */ + function isDate(object: any): object is Date; + /** @deprecated since v4.0.0 - use `util.types.isNativeError()` instead. */ + function isError(object: any): object is Error; + function inherits(constructor: any, superConstructor: any): void; + function debuglog(key: string): (msg: string, ...param: any[]) => void; + /** @deprecated since v4.0.0 - use `typeof value === 'boolean'` instead. */ + function isBoolean(object: any): object is boolean; + /** @deprecated since v4.0.0 - use `Buffer.isBuffer()` instead. */ + function isBuffer(object: any): object is Buffer; + /** @deprecated since v4.0.0 - use `typeof value === 'function'` instead. */ + function isFunction(object: any): boolean; + /** @deprecated since v4.0.0 - use `value === null` instead. */ + function isNull(object: any): object is null; + /** @deprecated since v4.0.0 - use `value === null || value === undefined` instead. */ + function isNullOrUndefined(object: any): object is null | undefined; + /** @deprecated since v4.0.0 - use `typeof value === 'number'` instead. */ + function isNumber(object: any): object is number; + /** @deprecated since v4.0.0 - use `value !== null && typeof value === 'object'` instead. */ + function isObject(object: any): boolean; + /** @deprecated since v4.0.0 - use `(typeof value !== 'object' && typeof value !== 'function') || value === null` instead. */ + function isPrimitive(object: any): boolean; + /** @deprecated since v4.0.0 - use `typeof value === 'string'` instead. */ + function isString(object: any): object is string; + /** @deprecated since v4.0.0 - use `typeof value === 'symbol'` instead. */ + function isSymbol(object: any): object is symbol; + /** @deprecated since v4.0.0 - use `value === undefined` instead. */ + function isUndefined(object: any): object is undefined; + function deprecate(fn: T, message: string, code?: string): T; + function isDeepStrictEqual(val1: any, val2: any): boolean; + + interface CustomPromisify extends Function { + __promisify__: TCustom; + } + + function callbackify(fn: () => Promise): (callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify(fn: () => Promise): (callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void; + function callbackify(fn: (arg1: T1) => Promise): (arg1: T1, callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify(fn: (arg1: T1) => Promise): (arg1: T1, callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void; + function callbackify(fn: (arg1: T1, arg2: T2) => Promise): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify(fn: (arg1: T1, arg2: T2) => Promise): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + function callbackify(fn: (arg1: T1, arg2: T2, arg3: T3) => Promise): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3) => Promise): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise, + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise, + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException) => void) => void; + function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + + function promisify(fn: CustomPromisify): TCustom; + function promisify(fn: (callback: (err: any, result: TResult) => void) => void): () => Promise; + function promisify(fn: (callback: (err?: any) => void) => void): () => Promise; + function promisify(fn: (arg1: T1, callback: (err: any, result: TResult) => void) => void): (arg1: T1) => Promise; + function promisify(fn: (arg1: T1, callback: (err?: any) => void) => void): (arg1: T1) => Promise; + function promisify(fn: (arg1: T1, arg2: T2, callback: (err: any, result: TResult) => void) => void): (arg1: T1, arg2: T2) => Promise; + function promisify(fn: (arg1: T1, arg2: T2, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2) => Promise; + function promisify(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err: any, result: TResult) => void) => void): + (arg1: T1, arg2: T2, arg3: T3) => Promise; + function promisify(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise; + function promisify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: any, result: TResult) => void) => void, + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise; + function promisify(fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err?: any) => void) => void): + (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise; + function promisify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: any, result: TResult) => void) => void, + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise; + function promisify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err?: any) => void) => void, + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise; + function promisify(fn: Function): Function; + + namespace types { + function isAnyArrayBuffer(object: any): boolean; + function isArgumentsObject(object: any): object is IArguments; + function isArrayBuffer(object: any): object is ArrayBuffer; + function isAsyncFunction(object: any): boolean; + function isBooleanObject(object: any): object is Boolean; + function isBoxedPrimitive(object: any): object is (Number | Boolean | String | Symbol /* | Object(BigInt) | Object(Symbol) */); + function isDataView(object: any): object is DataView; + function isDate(object: any): object is Date; + function isExternal(object: any): boolean; + function isFloat32Array(object: any): object is Float32Array; + function isFloat64Array(object: any): object is Float64Array; + function isGeneratorFunction(object: any): boolean; + function isGeneratorObject(object: any): boolean; + function isInt8Array(object: any): object is Int8Array; + function isInt16Array(object: any): object is Int16Array; + function isInt32Array(object: any): object is Int32Array; + function isMap(object: any): boolean; + function isMapIterator(object: any): boolean; + function isModuleNamespaceObject(value: any): boolean; + function isNativeError(object: any): object is Error; + function isNumberObject(object: any): object is Number; + function isPromise(object: any): boolean; + function isProxy(object: any): boolean; + function isRegExp(object: any): object is RegExp; + function isSet(object: any): boolean; + function isSetIterator(object: any): boolean; + function isSharedArrayBuffer(object: any): boolean; + function isStringObject(object: any): boolean; + function isSymbolObject(object: any): boolean; + function isTypedArray(object: any): object is NodeJS.TypedArray; + function isUint8Array(object: any): object is Uint8Array; + function isUint8ClampedArray(object: any): object is Uint8ClampedArray; + function isUint16Array(object: any): object is Uint16Array; + function isUint32Array(object: any): object is Uint32Array; + function isWeakMap(object: any): boolean; + function isWeakSet(object: any): boolean; + function isWebAssemblyCompiledModule(object: any): boolean; + } + + class TextDecoder { + readonly encoding: string; + readonly fatal: boolean; + readonly ignoreBOM: boolean; + constructor( + encoding?: string, + options?: { fatal?: boolean; ignoreBOM?: boolean } + ); + decode( + input?: NodeJS.ArrayBufferView | ArrayBuffer | null, + options?: { stream?: boolean } + ): string; + } + + interface EncodeIntoResult { + /** + * The read Unicode code units of input. + */ + + read: number; + /** + * The written UTF-8 bytes of output. + */ + written: number; + } + + class TextEncoder { + readonly encoding: string; + encode(input?: string): Uint8Array; + encodeInto(input: string, output: Uint8Array): EncodeIntoResult; + } + + namespace promisify { + const custom: unique symbol; + } +} diff --git a/themes/piratecare/node_modules/@types/node/v8.d.ts b/themes/piratecare/node_modules/@types/node/v8.d.ts new file mode 100644 index 0000000..7d95082 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/v8.d.ts @@ -0,0 +1,187 @@ +declare module "v8" { + import { Readable } from "stream"; + + interface HeapSpaceInfo { + space_name: string; + space_size: number; + space_used_size: number; + space_available_size: number; + physical_space_size: number; + } + + // ** Signifies if the --zap_code_space option is enabled or not. 1 == enabled, 0 == disabled. */ + type DoesZapCodeSpaceFlag = 0 | 1; + + interface HeapInfo { + total_heap_size: number; + total_heap_size_executable: number; + total_physical_size: number; + total_available_size: number; + used_heap_size: number; + heap_size_limit: number; + malloced_memory: number; + peak_malloced_memory: number; + does_zap_garbage: DoesZapCodeSpaceFlag; + number_of_native_contexts: number; + number_of_detached_contexts: number; + } + + interface HeapCodeStatistics { + code_and_metadata_size: number; + bytecode_and_metadata_size: number; + external_script_source_size: number; + } + + /** + * Returns an integer representing a "version tag" derived from the V8 version, command line flags and detected CPU features. + * This is useful for determining whether a vm.Script cachedData buffer is compatible with this instance of V8. + */ + function cachedDataVersionTag(): number; + + function getHeapStatistics(): HeapInfo; + function getHeapSpaceStatistics(): HeapSpaceInfo[]; + function setFlagsFromString(flags: string): void; + /** + * Generates a snapshot of the current V8 heap and returns a Readable + * Stream that may be used to read the JSON serialized representation. + * This conversation was marked as resolved by joyeecheung + * This JSON stream format is intended to be used with tools such as + * Chrome DevTools. The JSON schema is undocumented and specific to the + * V8 engine, and may change from one version of V8 to the next. + */ + function getHeapSnapshot(): Readable; + + /** + * + * @param fileName The file path where the V8 heap snapshot is to be + * saved. If not specified, a file name with the pattern + * `'Heap-${yyyymmdd}-${hhmmss}-${pid}-${thread_id}.heapsnapshot'` will be + * generated, where `{pid}` will be the PID of the Node.js process, + * `{thread_id}` will be `0` when `writeHeapSnapshot()` is called from + * the main Node.js thread or the id of a worker thread. + */ + function writeHeapSnapshot(fileName?: string): string; + + function getHeapCodeStatistics(): HeapCodeStatistics; + + class Serializer { + /** + * Writes out a header, which includes the serialization format version. + */ + writeHeader(): void; + + /** + * Serializes a JavaScript value and adds the serialized representation to the internal buffer. + * This throws an error if value cannot be serialized. + */ + writeValue(val: any): boolean; + + /** + * Returns the stored internal buffer. + * This serializer should not be used once the buffer is released. + * Calling this method results in undefined behavior if a previous write has failed. + */ + releaseBuffer(): Buffer; + + /** + * Marks an ArrayBuffer as having its contents transferred out of band.\ + * Pass the corresponding ArrayBuffer in the deserializing context to deserializer.transferArrayBuffer(). + */ + transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer): void; + + /** + * Write a raw 32-bit unsigned integer. + */ + writeUint32(value: number): void; + + /** + * Write a raw 64-bit unsigned integer, split into high and low 32-bit parts. + */ + writeUint64(hi: number, lo: number): void; + + /** + * Write a JS number value. + */ + writeDouble(value: number): void; + + /** + * Write raw bytes into the serializer’s internal buffer. + * The deserializer will require a way to compute the length of the buffer. + */ + writeRawBytes(buffer: NodeJS.TypedArray): void; + } + + /** + * A subclass of `Serializer` that serializes `TypedArray` (in particular `Buffer`) and `DataView` objects as host objects, + * and only stores the part of their underlying `ArrayBuffers` that they are referring to. + */ + class DefaultSerializer extends Serializer { + } + + class Deserializer { + constructor(data: NodeJS.TypedArray); + /** + * Reads and validates a header (including the format version). + * May, for example, reject an invalid or unsupported wire format. + * In that case, an Error is thrown. + */ + readHeader(): boolean; + + /** + * Deserializes a JavaScript value from the buffer and returns it. + */ + readValue(): any; + + /** + * Marks an ArrayBuffer as having its contents transferred out of band. + * Pass the corresponding `ArrayBuffer` in the serializing context to serializer.transferArrayBuffer() + * (or return the id from serializer._getSharedArrayBufferId() in the case of SharedArrayBuffers). + */ + transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer): void; + + /** + * Reads the underlying wire format version. + * Likely mostly to be useful to legacy code reading old wire format versions. + * May not be called before .readHeader(). + */ + getWireFormatVersion(): number; + + /** + * Read a raw 32-bit unsigned integer and return it. + */ + readUint32(): number; + + /** + * Read a raw 64-bit unsigned integer and return it as an array [hi, lo] with two 32-bit unsigned integer entries. + */ + readUint64(): [number, number]; + + /** + * Read a JS number value. + */ + readDouble(): number; + + /** + * Read raw bytes from the deserializer’s internal buffer. + * The length parameter must correspond to the length of the buffer that was passed to serializer.writeRawBytes(). + */ + readRawBytes(length: number): Buffer; + } + + /** + * A subclass of `Serializer` that serializes `TypedArray` (in particular `Buffer`) and `DataView` objects as host objects, + * and only stores the part of their underlying `ArrayBuffers` that they are referring to. + */ + class DefaultDeserializer extends Deserializer { + } + + /** + * Uses a `DefaultSerializer` to serialize value into a buffer. + */ + function serialize(value: any): Buffer; + + /** + * Uses a `DefaultDeserializer` with default options to read a JS value from a buffer. + */ + function deserialize(data: NodeJS.TypedArray): any; +} diff --git a/themes/piratecare/node_modules/@types/node/vm.d.ts b/themes/piratecare/node_modules/@types/node/vm.d.ts new file mode 100644 index 0000000..208498c --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/vm.d.ts @@ -0,0 +1,110 @@ +declare module "vm" { + interface Context { + [key: string]: any; + } + interface BaseOptions { + /** + * Specifies the filename used in stack traces produced by this script. + * Default: `''`. + */ + filename?: string; + /** + * Specifies the line number offset that is displayed in stack traces produced by this script. + * Default: `0`. + */ + lineOffset?: number; + /** + * Specifies the column number offset that is displayed in stack traces produced by this script. + * Default: `0` + */ + columnOffset?: number; + } + interface ScriptOptions extends BaseOptions { + displayErrors?: boolean; + timeout?: number; + cachedData?: Buffer; + produceCachedData?: boolean; + } + interface RunningScriptOptions extends BaseOptions { + /** + * When `true`, if an `Error` occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. + * Default: `true`. + */ + displayErrors?: boolean; + /** + * Specifies the number of milliseconds to execute code before terminating execution. + * If execution is terminated, an `Error` will be thrown. This value must be a strictly positive integer. + */ + timeout?: number; + /** + * If `true`, the execution will be terminated when `SIGINT` (Ctrl+C) is received. + * Existing handlers for the event that have been attached via `process.on('SIGINT')` will be disabled during script execution, but will continue to work after that. + * If execution is terminated, an `Error` will be thrown. + * Default: `false`. + */ + breakOnSigint?: boolean; + } + interface CompileFunctionOptions extends BaseOptions { + /** + * Provides an optional data with V8's code cache data for the supplied source. + */ + cachedData?: Buffer; + /** + * Specifies whether to produce new cache data. + * Default: `false`, + */ + produceCachedData?: boolean; + /** + * The sandbox/context in which the said function should be compiled in. + */ + parsingContext?: Context; + + /** + * An array containing a collection of context extensions (objects wrapping the current scope) to be applied while compiling + */ + contextExtensions?: Object[]; + } + + interface CreateContextOptions { + /** + * Human-readable name of the newly created context. + * @default 'VM Context i' Where i is an ascending numerical index of the created context. + */ + name?: string; + /** + * Corresponds to the newly created context for display purposes. + * The origin should be formatted like a `URL`, but with only the scheme, host, and port (if necessary), + * like the value of the `url.origin` property of a URL object. + * Most notably, this string should omit the trailing slash, as that denotes a path. + * @default '' + */ + origin?: string; + codeGeneration?: { + /** + * If set to false any calls to eval or function constructors (Function, GeneratorFunction, etc) + * will throw an EvalError. + * @default true + */ + strings?: boolean; + /** + * If set to false any attempt to compile a WebAssembly module will throw a WebAssembly.CompileError. + * @default true + */ + wasm?: boolean; + }; + } + + class Script { + constructor(code: string, options?: ScriptOptions); + runInContext(contextifiedSandbox: Context, options?: RunningScriptOptions): any; + runInNewContext(sandbox?: Context, options?: RunningScriptOptions): any; + runInThisContext(options?: RunningScriptOptions): any; + createCachedData(): Buffer; + } + function createContext(sandbox?: Context, options?: CreateContextOptions): Context; + function isContext(sandbox: Context): boolean; + function runInContext(code: string, contextifiedSandbox: Context, options?: RunningScriptOptions | string): any; + function runInNewContext(code: string, sandbox?: Context, options?: RunningScriptOptions | string): any; + function runInThisContext(code: string, options?: RunningScriptOptions | string): any; + function compileFunction(code: string, params: string[], options: CompileFunctionOptions): Function; +} diff --git a/themes/piratecare/node_modules/@types/node/worker_threads.d.ts b/themes/piratecare/node_modules/@types/node/worker_threads.d.ts new file mode 100644 index 0000000..07336f7 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/worker_threads.d.ts @@ -0,0 +1,168 @@ +declare module "worker_threads" { + import { Context } from "vm"; + import { EventEmitter } from "events"; + import { Readable, Writable } from "stream"; + + const isMainThread: boolean; + const parentPort: null | MessagePort; + const threadId: number; + const workerData: any; + + class MessageChannel { + readonly port1: MessagePort; + readonly port2: MessagePort; + } + + class MessagePort extends EventEmitter { + close(): void; + postMessage(value: any, transferList?: Array): void; + ref(): void; + unref(): void; + start(): void; + + addListener(event: "close", listener: () => void): this; + addListener(event: "message", listener: (value: any) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "close"): boolean; + emit(event: "message", value: any): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "close", listener: () => void): this; + on(event: "message", listener: (value: any) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "close", listener: () => void): this; + once(event: "message", listener: (value: any) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "close", listener: () => void): this; + prependListener(event: "message", listener: (value: any) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "close", listener: () => void): this; + prependOnceListener(event: "message", listener: (value: any) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + + removeListener(event: "close", listener: () => void): this; + removeListener(event: "message", listener: (value: any) => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + + off(event: "close", listener: () => void): this; + off(event: "message", listener: (value: any) => void): this; + off(event: string | symbol, listener: (...args: any[]) => void): this; + } + + interface WorkerOptions { + /** + * List of arguments which would be stringified and appended to + * `process.argv` in the worker. This is mostly similar to the `workerData` + * but the values will be available on the global `process.argv` as if they + * were passed as CLI options to the script. + */ + argv?: any[]; + eval?: boolean; + workerData?: any; + stdin?: boolean; + stdout?: boolean; + stderr?: boolean; + execArgv?: string[]; + resourceLimits?: ResourceLimits; + } + + interface ResourceLimits { + maxYoungGenerationSizeMb?: number; + maxOldGenerationSizeMb?: number; + codeRangeSizeMb?: number; + } + + class Worker extends EventEmitter { + readonly stdin: Writable | null; + readonly stdout: Readable; + readonly stderr: Readable; + readonly threadId: number; + readonly resourceLimits?: ResourceLimits; + + constructor(filename: string, options?: WorkerOptions); + + postMessage(value: any, transferList?: Array): void; + ref(): void; + unref(): void; + /** + * Stop all JavaScript execution in the worker thread as soon as possible. + * Returns a Promise for the exit code that is fulfilled when the `exit` event is emitted. + */ + terminate(): Promise; + /** + * Transfer a `MessagePort` to a different `vm` Context. The original `port` + * object will be rendered unusable, and the returned `MessagePort` instance will + * take its place. + * + * The returned `MessagePort` will be an object in the target context, and will + * inherit from its global `Object` class. Objects passed to the + * `port.onmessage()` listener will also be created in the target context + * and inherit from its global `Object` class. + * + * However, the created `MessagePort` will no longer inherit from + * `EventEmitter`, and only `port.onmessage()` can be used to receive + * events using it. + */ + moveMessagePortToContext(port: MessagePort, context: Context): MessagePort; + + /** + * Receive a single message from a given `MessagePort`. If no message is available, + * `undefined` is returned, otherwise an object with a single `message` property + * that contains the message payload, corresponding to the oldest message in the + * `MessagePort`’s queue. + */ + receiveMessageOnPort(port: MessagePort): {} | undefined; + + addListener(event: "error", listener: (err: Error) => void): this; + addListener(event: "exit", listener: (exitCode: number) => void): this; + addListener(event: "message", listener: (value: any) => void): this; + addListener(event: "online", listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + + emit(event: "error", err: Error): boolean; + emit(event: "exit", exitCode: number): boolean; + emit(event: "message", value: any): boolean; + emit(event: "online"): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + + on(event: "error", listener: (err: Error) => void): this; + on(event: "exit", listener: (exitCode: number) => void): this; + on(event: "message", listener: (value: any) => void): this; + on(event: "online", listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + + once(event: "error", listener: (err: Error) => void): this; + once(event: "exit", listener: (exitCode: number) => void): this; + once(event: "message", listener: (value: any) => void): this; + once(event: "online", listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + + prependListener(event: "error", listener: (err: Error) => void): this; + prependListener(event: "exit", listener: (exitCode: number) => void): this; + prependListener(event: "message", listener: (value: any) => void): this; + prependListener(event: "online", listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + + prependOnceListener(event: "error", listener: (err: Error) => void): this; + prependOnceListener(event: "exit", listener: (exitCode: number) => void): this; + prependOnceListener(event: "message", listener: (value: any) => void): this; + prependOnceListener(event: "online", listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + + removeListener(event: "error", listener: (err: Error) => void): this; + removeListener(event: "exit", listener: (exitCode: number) => void): this; + removeListener(event: "message", listener: (value: any) => void): this; + removeListener(event: "online", listener: () => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + + off(event: "error", listener: (err: Error) => void): this; + off(event: "exit", listener: (exitCode: number) => void): this; + off(event: "message", listener: (value: any) => void): this; + off(event: "online", listener: () => void): this; + off(event: string | symbol, listener: (...args: any[]) => void): this; + } +} diff --git a/themes/piratecare/node_modules/@types/node/zlib.d.ts b/themes/piratecare/node_modules/@types/node/zlib.d.ts new file mode 100644 index 0000000..a03e900 --- /dev/null +++ b/themes/piratecare/node_modules/@types/node/zlib.d.ts @@ -0,0 +1,352 @@ +declare module "zlib" { + import * as stream from "stream"; + + interface ZlibOptions { + /** + * @default constants.Z_NO_FLUSH + */ + flush?: number; + /** + * @default constants.Z_FINISH + */ + finishFlush?: number; + /** + * @default 16*1024 + */ + chunkSize?: number; + windowBits?: number; + level?: number; // compression only + memLevel?: number; // compression only + strategy?: number; // compression only + dictionary?: NodeJS.ArrayBufferView | ArrayBuffer; // deflate/inflate only, empty dictionary by default + } + + interface BrotliOptions { + /** + * @default constants.BROTLI_OPERATION_PROCESS + */ + flush?: number; + /** + * @default constants.BROTLI_OPERATION_FINISH + */ + finishFlush?: number; + /** + * @default 16*1024 + */ + chunkSize?: number; + params?: { + /** + * Each key is a `constants.BROTLI_*` constant. + */ + [key: number]: boolean | number; + }; + } + + interface Zlib { + /** @deprecated Use bytesWritten instead. */ + readonly bytesRead: number; + readonly bytesWritten: number; + shell?: boolean | string; + close(callback?: () => void): void; + flush(kind?: number | (() => void), callback?: () => void): void; + } + + interface ZlibParams { + params(level: number, strategy: number, callback: () => void): void; + } + + interface ZlibReset { + reset(): void; + } + + interface BrotliCompress extends stream.Transform, Zlib { } + interface BrotliDecompress extends stream.Transform, Zlib { } + interface Gzip extends stream.Transform, Zlib { } + interface Gunzip extends stream.Transform, Zlib { } + interface Deflate extends stream.Transform, Zlib, ZlibReset, ZlibParams { } + interface Inflate extends stream.Transform, Zlib, ZlibReset { } + interface DeflateRaw extends stream.Transform, Zlib, ZlibReset, ZlibParams { } + interface InflateRaw extends stream.Transform, Zlib, ZlibReset { } + interface Unzip extends stream.Transform, Zlib { } + + function createBrotliCompress(options?: BrotliOptions): BrotliCompress; + function createBrotliDecompress(options?: BrotliOptions): BrotliDecompress; + function createGzip(options?: ZlibOptions): Gzip; + function createGunzip(options?: ZlibOptions): Gunzip; + function createDeflate(options?: ZlibOptions): Deflate; + function createInflate(options?: ZlibOptions): Inflate; + function createDeflateRaw(options?: ZlibOptions): DeflateRaw; + function createInflateRaw(options?: ZlibOptions): InflateRaw; + function createUnzip(options?: ZlibOptions): Unzip; + + type InputType = string | ArrayBuffer | NodeJS.ArrayBufferView; + + type CompressCallback = (error: Error | null, result: Buffer) => void; + + function brotliCompress(buf: InputType, options: BrotliOptions, callback: CompressCallback): void; + function brotliCompress(buf: InputType, callback: CompressCallback): void; + function brotliCompressSync(buf: InputType, options?: BrotliOptions): Buffer; + function brotliDecompress(buf: InputType, options: BrotliOptions, callback: CompressCallback): void; + function brotliDecompress(buf: InputType, callback: CompressCallback): void; + function brotliDecompressSync(buf: InputType, options?: BrotliOptions): Buffer; + function deflate(buf: InputType, callback: CompressCallback): void; + function deflate(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function deflateSync(buf: InputType, options?: ZlibOptions): Buffer; + function deflateRaw(buf: InputType, callback: CompressCallback): void; + function deflateRaw(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function deflateRawSync(buf: InputType, options?: ZlibOptions): Buffer; + function gzip(buf: InputType, callback: CompressCallback): void; + function gzip(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function gzipSync(buf: InputType, options?: ZlibOptions): Buffer; + function gunzip(buf: InputType, callback: CompressCallback): void; + function gunzip(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function gunzipSync(buf: InputType, options?: ZlibOptions): Buffer; + function inflate(buf: InputType, callback: CompressCallback): void; + function inflate(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function inflateSync(buf: InputType, options?: ZlibOptions): Buffer; + function inflateRaw(buf: InputType, callback: CompressCallback): void; + function inflateRaw(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function inflateRawSync(buf: InputType, options?: ZlibOptions): Buffer; + function unzip(buf: InputType, callback: CompressCallback): void; + function unzip(buf: InputType, options: ZlibOptions, callback: CompressCallback): void; + function unzipSync(buf: InputType, options?: ZlibOptions): Buffer; + + namespace constants { + const BROTLI_DECODE: number; + const BROTLI_DECODER_ERROR_ALLOC_BLOCK_TYPE_TREES: number; + const BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MAP: number; + const BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MODES: number; + const BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_1: number; + const BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_2: number; + const BROTLI_DECODER_ERROR_ALLOC_TREE_GROUPS: number; + const BROTLI_DECODER_ERROR_DICTIONARY_NOT_SET: number; + const BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_1: number; + const BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_2: number; + const BROTLI_DECODER_ERROR_FORMAT_CL_SPACE: number; + const BROTLI_DECODER_ERROR_FORMAT_CONTEXT_MAP_REPEAT: number; + const BROTLI_DECODER_ERROR_FORMAT_DICTIONARY: number; + const BROTLI_DECODER_ERROR_FORMAT_DISTANCE: number; + const BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_META_NIBBLE: number; + const BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_NIBBLE: number; + const BROTLI_DECODER_ERROR_FORMAT_HUFFMAN_SPACE: number; + const BROTLI_DECODER_ERROR_FORMAT_PADDING_1: number; + const BROTLI_DECODER_ERROR_FORMAT_PADDING_2: number; + const BROTLI_DECODER_ERROR_FORMAT_RESERVED: number; + const BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_ALPHABET: number; + const BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_SAME: number; + const BROTLI_DECODER_ERROR_FORMAT_TRANSFORM: number; + const BROTLI_DECODER_ERROR_FORMAT_WINDOW_BITS: number; + const BROTLI_DECODER_ERROR_INVALID_ARGUMENTS: number; + const BROTLI_DECODER_ERROR_UNREACHABLE: number; + const BROTLI_DECODER_NEEDS_MORE_INPUT: number; + const BROTLI_DECODER_NEEDS_MORE_OUTPUT: number; + const BROTLI_DECODER_NO_ERROR: number; + const BROTLI_DECODER_PARAM_DISABLE_RING_BUFFER_REALLOCATION: number; + const BROTLI_DECODER_PARAM_LARGE_WINDOW: number; + const BROTLI_DECODER_RESULT_ERROR: number; + const BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT: number; + const BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT: number; + const BROTLI_DECODER_RESULT_SUCCESS: number; + const BROTLI_DECODER_SUCCESS: number; + + const BROTLI_DEFAULT_MODE: number; + const BROTLI_DEFAULT_QUALITY: number; + const BROTLI_DEFAULT_WINDOW: number; + const BROTLI_ENCODE: number; + const BROTLI_LARGE_MAX_WINDOW_BITS: number; + const BROTLI_MAX_INPUT_BLOCK_BITS: number; + const BROTLI_MAX_QUALITY: number; + const BROTLI_MAX_WINDOW_BITS: number; + const BROTLI_MIN_INPUT_BLOCK_BITS: number; + const BROTLI_MIN_QUALITY: number; + const BROTLI_MIN_WINDOW_BITS: number; + + const BROTLI_MODE_FONT: number; + const BROTLI_MODE_GENERIC: number; + const BROTLI_MODE_TEXT: number; + + const BROTLI_OPERATION_EMIT_METADATA: number; + const BROTLI_OPERATION_FINISH: number; + const BROTLI_OPERATION_FLUSH: number; + const BROTLI_OPERATION_PROCESS: number; + + const BROTLI_PARAM_DISABLE_LITERAL_CONTEXT_MODELING: number; + const BROTLI_PARAM_LARGE_WINDOW: number; + const BROTLI_PARAM_LGBLOCK: number; + const BROTLI_PARAM_LGWIN: number; + const BROTLI_PARAM_MODE: number; + const BROTLI_PARAM_NDIRECT: number; + const BROTLI_PARAM_NPOSTFIX: number; + const BROTLI_PARAM_QUALITY: number; + const BROTLI_PARAM_SIZE_HINT: number; + + const DEFLATE: number; + const DEFLATERAW: number; + const GUNZIP: number; + const GZIP: number; + const INFLATE: number; + const INFLATERAW: number; + const UNZIP: number; + + const Z_BEST_COMPRESSION: number; + const Z_BEST_SPEED: number; + const Z_BLOCK: number; + const Z_BUF_ERROR: number; + const Z_DATA_ERROR: number; + + const Z_DEFAULT_CHUNK: number; + const Z_DEFAULT_COMPRESSION: number; + const Z_DEFAULT_LEVEL: number; + const Z_DEFAULT_MEMLEVEL: number; + const Z_DEFAULT_STRATEGY: number; + const Z_DEFAULT_WINDOWBITS: number; + + const Z_ERRNO: number; + const Z_FILTERED: number; + const Z_FINISH: number; + const Z_FIXED: number; + const Z_FULL_FLUSH: number; + const Z_HUFFMAN_ONLY: number; + const Z_MAX_CHUNK: number; + const Z_MAX_LEVEL: number; + const Z_MAX_MEMLEVEL: number; + const Z_MAX_WINDOWBITS: number; + const Z_MEM_ERROR: number; + const Z_MIN_CHUNK: number; + const Z_MIN_LEVEL: number; + const Z_MIN_MEMLEVEL: number; + const Z_MIN_WINDOWBITS: number; + const Z_NEED_DICT: number; + const Z_NO_COMPRESSION: number; + const Z_NO_FLUSH: number; + const Z_OK: number; + const Z_PARTIAL_FLUSH: number; + const Z_RLE: number; + const Z_STREAM_END: number; + const Z_STREAM_ERROR: number; + const Z_SYNC_FLUSH: number; + const Z_VERSION_ERROR: number; + const ZLIB_VERNUM: number; + } + + /** + * @deprecated + */ + const Z_NO_FLUSH: number; + /** + * @deprecated + */ + const Z_PARTIAL_FLUSH: number; + /** + * @deprecated + */ + const Z_SYNC_FLUSH: number; + /** + * @deprecated + */ + const Z_FULL_FLUSH: number; + /** + * @deprecated + */ + const Z_FINISH: number; + /** + * @deprecated + */ + const Z_BLOCK: number; + /** + * @deprecated + */ + const Z_TREES: number; + /** + * @deprecated + */ + const Z_OK: number; + /** + * @deprecated + */ + const Z_STREAM_END: number; + /** + * @deprecated + */ + const Z_NEED_DICT: number; + /** + * @deprecated + */ + const Z_ERRNO: number; + /** + * @deprecated + */ + const Z_STREAM_ERROR: number; + /** + * @deprecated + */ + const Z_DATA_ERROR: number; + /** + * @deprecated + */ + const Z_MEM_ERROR: number; + /** + * @deprecated + */ + const Z_BUF_ERROR: number; + /** + * @deprecated + */ + const Z_VERSION_ERROR: number; + /** + * @deprecated + */ + const Z_NO_COMPRESSION: number; + /** + * @deprecated + */ + const Z_BEST_SPEED: number; + /** + * @deprecated + */ + const Z_BEST_COMPRESSION: number; + /** + * @deprecated + */ + const Z_DEFAULT_COMPRESSION: number; + /** + * @deprecated + */ + const Z_FILTERED: number; + /** + * @deprecated + */ + const Z_HUFFMAN_ONLY: number; + /** + * @deprecated + */ + const Z_RLE: number; + /** + * @deprecated + */ + const Z_FIXED: number; + /** + * @deprecated + */ + const Z_DEFAULT_STRATEGY: number; + /** + * @deprecated + */ + const Z_BINARY: number; + /** + * @deprecated + */ + const Z_TEXT: number; + /** + * @deprecated + */ + const Z_ASCII: number; + /** + * @deprecated + */ + const Z_UNKNOWN: number; + /** + * @deprecated + */ + const Z_DEFLATED: number; +} diff --git a/themes/piratecare/node_modules/acorn-node/.travis.yml b/themes/piratecare/node_modules/acorn-node/.travis.yml new file mode 100644 index 0000000..24123d4 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/.travis.yml @@ -0,0 +1,22 @@ +language: node_js +node_js: + - '12' + - '11' + - '10' + - '9' + - '8' + - '6' + - '4' + - '0.12' + - '0.10' + - '0.8' + - '0.6' +before_install: + - 'nvm install-latest-npm' +install: + - 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.9" ]; then nvm install --latest-npm 0.8 && npm install && nvm use "${TRAVIS_NODE_VERSION}"; else npm install; fi;' +sudo: false +matrix: + fast_finish: true + allow_failures: + - node_js: "0.6" diff --git a/themes/piratecare/node_modules/acorn-node/CHANGELOG.md b/themes/piratecare/node_modules/acorn-node/CHANGELOG.md new file mode 100644 index 0000000..ce2c779 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/CHANGELOG.md @@ -0,0 +1,94 @@ +# acorn-node change log + +All notable changes to this project will be documented in this file. + +This project adheres to [Semantic Versioning](http://semver.org/). + +## 1.8.2 + * Revert a breaking change in import.meta parsing. + +## 1.8.1 + * Fix crash in compiled private-class-elements code. + +## 1.8.0 + * Upgrade acorn to v7. + + For backwards compatibility, `acorn-node` still uses the `Import` node type for dynamic imports, _NOT_ `ImportExpression` like acorn v7 and estree. + * Add numeric separator support: + ```js + var a = 10_000_000_000_000_000_000_000_000n; + ``` + +## 1.7.0 + * Add class instance fields support: + ```js + class X { + pub = 1; + #priv = 2; + } + ``` + * Add class static fields support: + ```js + class X { + static pub = 1; + static #priv = 2; + } + ``` + * Add `export * as ns` support when `sourceType` is 'module': + ```js + export * as ns from './ns.mjs'; + ``` + +## 1.6.2 + + * Allow dynamic `import()` in scripts. + * Update minimum dependency versions, fixing a peerDependency warning. + * Add Node 10 and 11 to CI. + +## 1.6.1 + + * Update acorn-dynamic-import to v4. + +## 1.6.0 + + * Upgrade acorn to v6. + * Add bigint support. + +## 1.5.2 + + * Upgrade acorn to support optional catch binding in the AST walker. + +## 1.5.1 + + * Fix tests on Node <= 0.12. + +## 1.5.0 + + * Add tests for async iteration, optional catch binding, import.meta, + dynamic import, bigint (currently unsupported). + * Add import.meta support. (`sourceType: 'module'` only) + * Add dynamic import support. (`sourceType: 'module'` only) + * Fix optional catch binding support in the walker. + +## 1.4.0 + + * Upgrade acorn to 5.6, which supports optional catch bindings and other + new syntax features. + * Set ecmaVersion to 2019 to opt in to optional catch bindings etc. + +## 1.3.0 + + * Upgrade acorn to 5.4, which supports object spread and async iteration. + * Remove acorn5-object-spread plugin. + +## 1.2.0 + + * Expose `acorn/dist/walk` as `acorn-node/walk`. + +## 1.1.0 + + * Enable `allowHashBang` and `allowReturnOutsideFunction` by default. + +## 1.0.0 + + * Initial release. diff --git a/themes/piratecare/node_modules/acorn-node/LICENSE.md b/themes/piratecare/node_modules/acorn-node/LICENSE.md new file mode 100644 index 0000000..3698cf1 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/LICENSE.md @@ -0,0 +1,95 @@ +# [Apache License 2.0](https://spdx.org/licenses/Apache-2.0) + +Copyright 2018 Renée Kooi + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +> http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +## acorn-bigint + +The code in the `lib/bigint` folder is compiled from code licensed as MIT: + +> Copyright (C) 2017-2018 by Adrian Heine +> +> 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. + +Find the source code at https://github.com/acornjs/acorn-bigint. + +## acorn-import-meta + +The code in the `lib/import-meta` folder is compiled from code licensed as MIT: + +> Copyright (C) 2017-2018 by Adrian Heine +> +> 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. + +Find the source code at https://github.com/acornjs/acorn-import-meta. + +## acorn-dynamic-import + +The code in the `lib/dynamic-import` folder is licensed as MIT: + +> MIT License +> +> Copyright (c) 2016 Jordan Gensler +> +> 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. + +Find the source code at https://github.com/kesne/acorn-dynamic-import. diff --git a/themes/piratecare/node_modules/acorn-node/README.md b/themes/piratecare/node_modules/acorn-node/README.md new file mode 100644 index 0000000..37e871f --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/README.md @@ -0,0 +1,65 @@ +# acorn-node + +[Acorn](https://github.com/acornjs/acorn) preloaded with plugins for syntax parity with recent Node versions. + +It also includes versions of the plugins compiled with [Bublé](https://github.com/rich-harris/buble), so they can be run on old Node versions (0.6 and up). + +[![npm][npm-image]][npm-url] +[![travis][travis-image]][travis-url] +[![standard][standard-image]][standard-url] + +[npm-image]: https://img.shields.io/npm/v/acorn-node.svg?style=flat-square +[npm-url]: https://www.npmjs.com/package/acorn-node +[travis-image]: https://img.shields.io/travis/browserify/acorn-node/master.svg?style=flat-square +[travis-url]: https://travis-ci.org/browserify/acorn-node +[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square +[standard-url]: http://npm.im/standard + +## Install + +``` +npm install acorn-node +``` + +## Usage + +```js +var acorn = require('acorn-node') +``` + +The API is the same as [acorn](https://github.com/acornjs/acorn), but the following syntax features are enabled by default: + + - Bigint syntax `10n` + - Numeric separators syntax `10_000` + - Public and private class instance fields + - Public and private class static fields + - Dynamic `import()` + - The `import.meta` property + - `export * as ns from` syntax + +And the following options have different defaults from acorn, to match Node modules: + + - `ecmaVersion: 2019` + - `allowHashBang: true` + - `allowReturnOutsideFunction: true` + +```js +var walk = require('acorn-node/walk') +``` + +The Acorn syntax tree walker. Comes preconfigured for the syntax plugins if necessary. +See the [acorn documentation](https://github.com/acornjs/acorn#distwalkjs) for details. + +## License + +The files in the repo root and the ./test folder are licensed as [Apache-2.0](LICENSE.md). + +The files in lib/ are generated from other packages: + +- lib/bigint: [acorn-bigint](https://github.com/acornjs/acorn-bigint]), MIT +- lib/class-private-elements: [acorn-class-private-elements](https://github.com/acornjs/acorn-class-private-elements), MIT +- lib/dynamic-import: [acorn-dynamic-import](https://github.com/acornjs/acorn-dynamic-import), MIT +- lib/export-ns-from: [acorn-export-ns-from](https://github.com/acornjs/acorn-export-ns-from), MIT +- lib/import-meta: [acorn-import-meta](https://github.com/acornjs/acorn-import-meta), MIT +- lib/numeric-separator: [acorn-numeric-separator](https://github.com/acornjs/acorn-numeric-separator]), MIT +- lib/static-class-features: [acorn-static-class-features](https://github.com/acornjs/acorn-static-class-features), MIT diff --git a/themes/piratecare/node_modules/acorn-node/build.js b/themes/piratecare/node_modules/acorn-node/build.js new file mode 100644 index 0000000..ca08f35 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/build.js @@ -0,0 +1,36 @@ +var fs = require('fs') +var path = require('path') +var mkdirp = require('mkdirp') +var buble = require('buble') + +var HEADER = '/* Generated by `npm run build`, do not edit! */\n\n' + +function compile (name, output, fix) { + console.log(name, '→', output) + mkdirp.sync(path.dirname(path.join(__dirname, output))) + var source = fs.readFileSync(require.resolve(name), 'utf8') + if (fix) source = fix(source) + var result = buble.transform(source, { + transforms: { + dangerousForOf: true + } + }) + fs.writeFileSync(path.join(__dirname, output), HEADER + result.code, 'utf8') +} + +function privateClassElements (str) { + return str.replace('acorn-private-class-elements', '../private-class-elements') +} + +compile('acorn-bigint', './lib/bigint/index.js') +compile('acorn-numeric-separator', './lib/numeric-separator/index.js') +compile('acorn-dynamic-import', './lib/dynamic-import/index.js') +compile('acorn-import-meta', './lib/import-meta/index.js') +compile('acorn-export-ns-from', './lib/export-ns-from/index.js') +compile('acorn-class-fields', './lib/class-fields/index.js', privateClassElements) +compile('acorn-static-class-features', './lib/static-class-features/index.js', privateClassElements) +compile('acorn-private-class-elements', './lib/private-class-elements/index.js', function (str) { + return str.replace('class extends Parser', 'class Parser_ extends Parser') + // it also works with v7 + .replace('if (acorn.version.indexOf("6.") != 0 || acorn.version.indexOf("6.0.") == 0) {', 'if (false) {') +}) diff --git a/themes/piratecare/node_modules/acorn-node/index.js b/themes/piratecare/node_modules/acorn-node/index.js new file mode 100644 index 0000000..c0ec3bf --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/index.js @@ -0,0 +1,38 @@ +var acorn = require('acorn') +var xtend = require('xtend') + +var CJSParser = acorn.Parser + .extend(require('./lib/bigint')) + .extend(require('./lib/class-fields')) + .extend(require('./lib/static-class-features')) + .extend(require('./lib/numeric-separator')) + .extend(require('./lib/dynamic-import').default) +var ESModulesParser = CJSParser + .extend(require('./lib/export-ns-from')) + .extend(require('./lib/import-meta')) + +function mapOptions (opts) { + if (!opts) opts = {} + return xtend({ + ecmaVersion: 2020, + allowHashBang: true, + allowReturnOutsideFunction: true + }, opts) +} + +function getParser (opts) { + if (!opts) opts = {} + return opts.sourceType === 'module' ? ESModulesParser : CJSParser +} + +module.exports = exports = xtend(acorn, { + parse: function parse (src, opts) { + return getParser(opts).parse(src, mapOptions(opts)) + }, + parseExpressionAt: function parseExpressionAt (src, offset, opts) { + return getParser(opts).parseExpressionAt(src, offset, mapOptions(opts)) + }, + tokenizer: function tokenizer (src, opts) { + return getParser(opts).tokenizer(src, mapOptions(opts)) + } +}) diff --git a/themes/piratecare/node_modules/acorn-node/lib/bigint/index.js b/themes/piratecare/node_modules/acorn-node/lib/bigint/index.js new file mode 100644 index 0000000..40f6a9f --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/bigint/index.js @@ -0,0 +1,71 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +var acorn = require("acorn") +var tt = acorn.tokTypes +var isIdentifierStart = acorn.isIdentifierStart + +module.exports = function(Parser) { + return /*@__PURE__*/(function (Parser) { + function anonymous () { + Parser.apply(this, arguments); + } + + if ( Parser ) anonymous.__proto__ = Parser; + anonymous.prototype = Object.create( Parser && Parser.prototype ); + anonymous.prototype.constructor = anonymous; + + anonymous.prototype.parseLiteral = function parseLiteral (value) { + var node = Parser.prototype.parseLiteral.call(this, value) + if (node.raw.charCodeAt(node.raw.length - 1) == 110) { node.bigint = this.getNumberInput(node.start, node.end) } + return node + }; + + anonymous.prototype.readRadixNumber = function readRadixNumber (radix) { + var start = this.pos + this.pos += 2 // 0x + var val = this.readInt(radix) + if (val === null) { this.raise(this.start + 2, ("Expected number in radix " + radix)) } + if (this.input.charCodeAt(this.pos) == 110) { + var str = this.getNumberInput(start, this.pos) + val = typeof BigInt !== "undefined" ? BigInt(str) : null + ++this.pos + } else if (isIdentifierStart(this.fullCharCodeAtPos())) { this.raise(this.pos, "Identifier directly after number") } + return this.finishToken(tt.num, val) + }; + + anonymous.prototype.readNumber = function readNumber (startsWithDot) { + var start = this.pos + + // Not an int + if (startsWithDot) { return Parser.prototype.readNumber.call(this, startsWithDot) } + + // Legacy octal + if (this.input.charCodeAt(start) === 48 && this.input.charCodeAt(start + 1) !== 110) { + return Parser.prototype.readNumber.call(this, startsWithDot) + } + + if (this.readInt(10) === null) { this.raise(start, "Invalid number") } + + // Not a BigInt, reset and parse again + if (this.input.charCodeAt(this.pos) != 110) { + this.pos = start + return Parser.prototype.readNumber.call(this, startsWithDot) + } + + var str = this.getNumberInput(start, this.pos) + var val = typeof BigInt !== "undefined" ? BigInt(str) : null + ++this.pos + return this.finishToken(tt.num, val) + }; + + // This is basically a hook for acorn-numeric-separator + anonymous.prototype.getNumberInput = function getNumberInput (start, end) { + if (Parser.prototype.getNumberInput) { return Parser.prototype.getNumberInput.call(this, start, end) } + return this.input.slice(start, end) + }; + + return anonymous; + }(Parser)) +} diff --git a/themes/piratecare/node_modules/acorn-node/lib/class-fields/index.js b/themes/piratecare/node_modules/acorn-node/lib/class-fields/index.js new file mode 100644 index 0000000..e7f15ae --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/class-fields/index.js @@ -0,0 +1,70 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +var acorn = require("acorn") +var tt = acorn.tokTypes +var privateClassElements = require("../private-class-elements") + +function maybeParseFieldValue(field) { + if (this.eat(tt.eq)) { + var oldInFieldValue = this._inFieldValue + this._inFieldValue = true + field.value = this.parseExpression() + this._inFieldValue = oldInFieldValue + } else { field.value = null } +} + +module.exports = function(Parser) { + Parser = privateClassElements(Parser) + return /*@__PURE__*/(function (Parser) { + function anonymous () { + Parser.apply(this, arguments); + } + + if ( Parser ) anonymous.__proto__ = Parser; + anonymous.prototype = Object.create( Parser && Parser.prototype ); + anonymous.prototype.constructor = anonymous; + + anonymous.prototype.parseClassElement = function parseClassElement (_constructorAllowsSuper) { + if (this.options.ecmaVersion >= 8 && (this.type == tt.name || this.type == this.privateNameToken || this.type == tt.bracketL || this.type == tt.string)) { + var branch = this._branch() + if (branch.type == tt.bracketL) { + var count = 0 + do { + if (branch.eat(tt.bracketL)) { ++count } + else if (branch.eat(tt.bracketR)) { --count } + else { branch.next() } + } while (count > 0) + } else { branch.next() } + if (branch.type == tt.eq || branch.canInsertSemicolon() || branch.type == tt.semi) { + var node = this.startNode() + if (this.type == this.privateNameToken) { + this.parsePrivateClassElementName(node) + } else { + this.parsePropertyName(node) + } + if ((node.key.type === "Identifier" && node.key.name === "constructor") || + (node.key.type === "Literal" && node.key.value === "constructor")) { + this.raise(node.key.start, "Classes may not have a field called constructor") + } + maybeParseFieldValue.call(this, node) + this.finishNode(node, "FieldDefinition") + this.semicolon() + return node + } + } + + return Parser.prototype.parseClassElement.apply(this, arguments) + }; + + // Prohibit arguments in class field initializers + anonymous.prototype.parseIdent = function parseIdent (liberal, isBinding) { + var ident = Parser.prototype.parseIdent.call(this, liberal, isBinding) + if (this._inFieldValue && ident.name == "arguments") { this.raise(ident.start, "A class field initializer may not contain arguments") } + return ident + }; + + return anonymous; + }(Parser)) +} diff --git a/themes/piratecare/node_modules/acorn-node/lib/dynamic-import/index.js b/themes/piratecare/node_modules/acorn-node/lib/dynamic-import/index.js new file mode 100644 index 0000000..bb37198 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/dynamic-import/index.js @@ -0,0 +1,86 @@ +/* Generated by `npm run build`, do not edit! */ + +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.DynamicImportKey = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) { descriptor.writable = true; } Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) { defineProperties(Constructor.prototype, protoProps); } if (staticProps) { defineProperties(Constructor, staticProps); } return Constructor; }; }(); + +var _get = function () { + function get(object, property, receiver) { if (object === null) { object = Function.prototype; } var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } + + return get; +}(); + +exports['default'] = dynamicImport; + +var _acorn = require('acorn'); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) { Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } } /* eslint-disable no-underscore-dangle */ + + +var DynamicImportKey = exports.DynamicImportKey = 'Import'; + +// NOTE: This allows `yield import()` to parse correctly. +_acorn.tokTypes._import.startsExpr = true; + +function parseDynamicImport() { + var node = this.startNode(); + this.next(); + if (this.type !== _acorn.tokTypes.parenL) { + this.unexpected(); + } + return this.finishNode(node, DynamicImportKey); +} + +function parenAfter() { + return (/^(\s|\/\/.*|\/\*[^]*?\*\/)*\(/.test(this.input.slice(this.pos)) + ); +} + +function dynamicImport(Parser) { + return function (_Parser) { + _inherits(_class, _Parser); + + function _class() { + _classCallCheck(this, _class); + + return _possibleConstructorReturn(this, (_class.__proto__ || Object.getPrototypeOf(_class)).apply(this, arguments)); + } + + _createClass(_class, [{ + key: 'parseStatement', + value: function () { + function parseStatement(context, topLevel, exports) { + if (this.type === _acorn.tokTypes._import && parenAfter.call(this)) { + return this.parseExpressionStatement(this.startNode(), this.parseExpression()); + } + return _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'parseStatement', this).call(this, context, topLevel, exports); + } + + return parseStatement; + }() + }, { + key: 'parseExprAtom', + value: function () { + function parseExprAtom(refDestructuringErrors) { + if (this.type === _acorn.tokTypes._import) { + return parseDynamicImport.call(this); + } + return _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'parseExprAtom', this).call(this, refDestructuringErrors); + } + + return parseExprAtom; + }() + }]); + + return _class; + }(Parser); +} \ No newline at end of file diff --git a/themes/piratecare/node_modules/acorn-node/lib/export-ns-from/index.js b/themes/piratecare/node_modules/acorn-node/lib/export-ns-from/index.js new file mode 100644 index 0000000..7196dc8 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/export-ns-from/index.js @@ -0,0 +1,43 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +var skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g + +var tt = require("acorn").tokTypes + +module.exports = function(Parser) { + return /*@__PURE__*/(function (Parser) { + function anonymous () { + Parser.apply(this, arguments); + } + + if ( Parser ) anonymous.__proto__ = Parser; + anonymous.prototype = Object.create( Parser && Parser.prototype ); + anonymous.prototype.constructor = anonymous; + + anonymous.prototype.parseExport = function parseExport (node, exports) { + skipWhiteSpace.lastIndex = this.pos + var skip = skipWhiteSpace.exec(this.input) + var next = this.input.charAt(this.pos + skip[0].length) + if (next !== "*") { return Parser.prototype.parseExport.call(this, node, exports) } + + this.next() + var specifier = this.startNode() + this.expect(tt.star) + if (this.eatContextual("as")) { + node.declaration = null + specifier.exported = this.parseIdent(true) + this.checkExport(exports, specifier.exported.name, this.lastTokStart) + node.specifiers = [this.finishNode(specifier, "ExportNamespaceSpecifier")] + } + this.expectContextual("from") + if (this.type !== tt.string) { this.unexpected() } + node.source = this.parseExprAtom() + this.semicolon() + return this.finishNode(node, node.specifiers ? "ExportNamedDeclaration" : "ExportAllDeclaration") + }; + + return anonymous; + }(Parser)) +} diff --git a/themes/piratecare/node_modules/acorn-node/lib/import-meta/index.js b/themes/piratecare/node_modules/acorn-node/lib/import-meta/index.js new file mode 100644 index 0000000..bd4adf9 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/import-meta/index.js @@ -0,0 +1,55 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +var tt = require("acorn").tokTypes + +var skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g + +var nextTokenIsDot = function (parser) { + skipWhiteSpace.lastIndex = parser.pos + var skip = skipWhiteSpace.exec(parser.input) + var next = parser.pos + skip[0].length + return parser.input.slice(next, next + 1) === "." +} + +module.exports = function(Parser) { + return /*@__PURE__*/(function (Parser) { + function anonymous () { + Parser.apply(this, arguments); + } + + if ( Parser ) anonymous.__proto__ = Parser; + anonymous.prototype = Object.create( Parser && Parser.prototype ); + anonymous.prototype.constructor = anonymous; + + anonymous.prototype.parseExprAtom = function parseExprAtom (refDestructuringErrors) { + if (this.type !== tt._import || !nextTokenIsDot(this)) { return Parser.prototype.parseExprAtom.call(this, refDestructuringErrors) } + + if (!this.options.allowImportExportEverywhere && !this.inModule) { + this.raise(this.start, "'import' and 'export' may appear only with 'sourceType: module'") + } + + var node = this.startNode() + node.meta = this.parseIdent(true) + this.expect(tt.dot) + node.property = this.parseIdent(true) + if (node.property.name !== "meta") { + this.raiseRecoverable(node.property.start, "The only valid meta property for import is import.meta") + } + return this.finishNode(node, "MetaProperty") + }; + + anonymous.prototype.parseStatement = function parseStatement (context, topLevel, exports) { + if (this.type !== tt._import || !nextTokenIsDot(this)) { + return Parser.prototype.parseStatement.call(this, context, topLevel, exports) + } + + var node = this.startNode() + var expr = this.parseExpression() + return this.parseExpressionStatement(node, expr) + }; + + return anonymous; + }(Parser)) +} diff --git a/themes/piratecare/node_modules/acorn-node/lib/numeric-separator/index.js b/themes/piratecare/node_modules/acorn-node/lib/numeric-separator/index.js new file mode 100644 index 0000000..ec3cfc4 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/numeric-separator/index.js @@ -0,0 +1,61 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +module.exports = function(Parser) { + return /*@__PURE__*/(function (Parser) { + function anonymous () { + Parser.apply(this, arguments); + } + + if ( Parser ) anonymous.__proto__ = Parser; + anonymous.prototype = Object.create( Parser && Parser.prototype ); + anonymous.prototype.constructor = anonymous; + + anonymous.prototype.readInt = function readInt (radix, len) { + // Hack: len is only != null for unicode escape sequences, + // where numeric separators are not allowed + if (len != null) { return Parser.prototype.readInt.call(this, radix, len) } + + var start = this.pos, total = 0, acceptUnderscore = false + for (;;) { + var code = this.input.charCodeAt(this.pos), val = (void 0) + if (code >= 97) { val = code - 97 + 10 } // a + else if (code == 95) { + if (!acceptUnderscore) { this.raise(this.pos, "Invalid numeric separator") } + ++this.pos + acceptUnderscore = false + continue + } else if (code >= 65) { val = code - 65 + 10 } // A + else if (code >= 48 && code <= 57) { val = code - 48 } // 0-9 + else { val = Infinity } + if (val >= radix) { break } + ++this.pos + total = total * radix + val + acceptUnderscore = true + } + if (this.pos === start) { return null } + if (!acceptUnderscore) { this.raise(this.pos - 1, "Invalid numeric separator") } + + return total + }; + + anonymous.prototype.readNumber = function readNumber (startsWithDot) { + var token = Parser.prototype.readNumber.call(this, startsWithDot) + var octal = this.end - this.start >= 2 && this.input.charCodeAt(this.start) === 48 + var stripped = this.getNumberInput(this.start, this.end) + if (stripped.length < this.end - this.start) { + if (octal) { this.raise(this.start, "Invalid number") } + this.value = parseFloat(stripped) + } + return token + }; + + // This is used by acorn-bigint + anonymous.prototype.getNumberInput = function getNumberInput (start, end) { + return this.input.slice(start, end).replace(/_/g, "") + }; + + return anonymous; + }(Parser)) +} diff --git a/themes/piratecare/node_modules/acorn-node/lib/private-class-elements/index.js b/themes/piratecare/node_modules/acorn-node/lib/private-class-elements/index.js new file mode 100644 index 0000000..364e1fc --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/private-class-elements/index.js @@ -0,0 +1,135 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +var acorn = require("acorn") +if (false) { + throw new Error(("acorn-private-class-elements requires acorn@^6.1.0, not " + (acorn.version))) +} +var tt = acorn.tokTypes +var TokenType = acorn.TokenType + +module.exports = function(Parser) { + // Only load this plugin once. + if (Parser.prototype.parsePrivateName) { + return Parser + } + + // Make sure `Parser` comes from the same acorn as our `tt`, + // otherwise the comparisons fail. + var cur = Parser + while (cur && cur !== acorn.Parser) { + cur = cur.__proto__ + } + if (cur !== acorn.Parser) { + throw new Error("acorn-private-class-elements does not support mixing different acorn copies") + } + + Parser = /*@__PURE__*/(function (Parser) { + function Parser_ () { + Parser.apply(this, arguments); + } + + if ( Parser ) Parser_.__proto__ = Parser; + Parser_.prototype = Object.create( Parser && Parser.prototype ); + Parser_.prototype.constructor = Parser_; + + Parser_.prototype._branch = function _branch () { + this.__branch = this.__branch || new Parser({ecmaVersion: this.options.ecmaVersion}, this.input) + this.__branch.end = this.end + this.__branch.pos = this.pos + this.__branch.type = this.type + this.__branch.value = this.value + this.__branch.containsEsc = this.containsEsc + return this.__branch + }; + + Parser_.prototype.parsePrivateClassElementName = function parsePrivateClassElementName (element) { + element.computed = false + element.key = this.parsePrivateName() + if (element.key.name == "constructor") { this.raise(element.key.start, "Classes may not have a private element named constructor") } + var accept = {get: "set", set: "get"}[element.kind] + var privateBoundNames = this._privateBoundNamesStack[this._privateBoundNamesStack.length - 1] + if (Object.prototype.hasOwnProperty.call(privateBoundNames, element.key.name) && privateBoundNames[element.key.name] !== accept) { + this.raise(element.start, "Duplicate private element") + } + privateBoundNames[element.key.name] = element.kind || true + delete this._unresolvedPrivateNamesStack[this._unresolvedPrivateNamesStack.length - 1][element.key.name] + return element.key + }; + + Parser_.prototype.parsePrivateName = function parsePrivateName () { + var node = this.startNode() + node.name = this.value + this.next() + this.finishNode(node, "PrivateName") + if (this.options.allowReserved == "never") { this.checkUnreserved(node) } + return node + }; + + // Parse # token + Parser_.prototype.getTokenFromCode = function getTokenFromCode (code) { + if (code === 35) { + ++this.pos + var word = this.readWord1() + return this.finishToken(this.privateNameToken, word) + } + return Parser.prototype.getTokenFromCode.call(this, code) + }; + + // Manage stacks and check for undeclared private names + Parser_.prototype.parseClass = function parseClass (node, isStatement) { + this._privateBoundNamesStack = this._privateBoundNamesStack || [] + var privateBoundNames = Object.create(this._privateBoundNamesStack[this._privateBoundNamesStack.length - 1] || null) + this._privateBoundNamesStack.push(privateBoundNames) + this._unresolvedPrivateNamesStack = this._unresolvedPrivateNamesStack || [] + var unresolvedPrivateNames = Object.create(null) + this._unresolvedPrivateNamesStack.push(unresolvedPrivateNames) + var _return = Parser.prototype.parseClass.call(this, node, isStatement) + this._privateBoundNamesStack.pop() + this._unresolvedPrivateNamesStack.pop() + if (!this._unresolvedPrivateNamesStack.length) { + var names = Object.keys(unresolvedPrivateNames) + if (names.length) { + names.sort(function (n1, n2) { return unresolvedPrivateNames[n1] - unresolvedPrivateNames[n2]; }) + this.raise(unresolvedPrivateNames[names[0]], "Usage of undeclared private name") + } + } else { Object.assign(this._unresolvedPrivateNamesStack[this._unresolvedPrivateNamesStack.length - 1], unresolvedPrivateNames) } + return _return + }; + + // Parse private element access + Parser_.prototype.parseSubscript = function parseSubscript (base, startPos, startLoc, noCalls, maybeAsyncArrow) { + if (!this.eat(tt.dot)) { + return Parser.prototype.parseSubscript.call(this, base, startPos, startLoc, noCalls, maybeAsyncArrow) + } + var node = this.startNodeAt(startPos, startLoc) + node.object = base + node.computed = false + if (this.type == this.privateNameToken) { + node.property = this.parsePrivateName() + if (!this._privateBoundNamesStack.length || !this._privateBoundNamesStack[this._privateBoundNamesStack.length - 1][node.property.name]) { + this._unresolvedPrivateNamesStack[this._unresolvedPrivateNamesStack.length - 1][node.property.name] = node.property.start + } + } else { + node.property = this.parseIdent(true) + } + return this.finishNode(node, "MemberExpression") + }; + + // Prohibit delete of private class elements + Parser_.prototype.parseMaybeUnary = function parseMaybeUnary (refDestructuringErrors, sawUnary) { + var _return = Parser.prototype.parseMaybeUnary.call(this, refDestructuringErrors, sawUnary) + if (_return.operator == "delete") { + if (_return.argument.type == "MemberExpression" && _return.argument.property.type == "PrivateName") { + this.raise(_return.start, "Private elements may not be deleted") + } + } + return _return + }; + + return Parser_; + }(Parser)) + Parser.prototype.privateNameToken = new TokenType("privateName") + return Parser +} diff --git a/themes/piratecare/node_modules/acorn-node/lib/static-class-features/index.js b/themes/piratecare/node_modules/acorn-node/lib/static-class-features/index.js new file mode 100644 index 0000000..3894491 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/lib/static-class-features/index.js @@ -0,0 +1,139 @@ +/* Generated by `npm run build`, do not edit! */ + +"use strict" + +var skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g + +var acorn = require("acorn") +var tt = acorn.tokTypes + +function maybeParseFieldValue(field) { + if (this.eat(tt.eq)) { + var oldInFieldValue = this._inStaticFieldValue + this._inStaticFieldValue = true + field.value = this.parseExpression() + this._inStaticFieldValue = oldInFieldValue + } else { field.value = null } +} + +var privateClassElements = require("../private-class-elements") + +module.exports = function(Parser) { + var ExtendedParser = privateClassElements(Parser) + + return /*@__PURE__*/(function (ExtendedParser) { + function anonymous () { + ExtendedParser.apply(this, arguments); + } + + if ( ExtendedParser ) anonymous.__proto__ = ExtendedParser; + anonymous.prototype = Object.create( ExtendedParser && ExtendedParser.prototype ); + anonymous.prototype.constructor = anonymous; + + anonymous.prototype.parseClassElement = function parseClassElement (_constructorAllowsSuper) { + var this$1 = this; + + if (this.eat(tt.semi)) { return null } + + var node = this.startNode() + + var tryContextual = function (k, noLineBreak) { + if (typeof noLineBreak == "undefined") { noLineBreak = false } + var start = this$1.start, startLoc = this$1.startLoc + if (!this$1.eatContextual(k)) { return false } + if (this$1.type !== tt.parenL && (!noLineBreak || !this$1.canInsertSemicolon())) { return true } + if (node.key) { this$1.unexpected() } + node.computed = false + node.key = this$1.startNodeAt(start, startLoc) + node.key.name = k + this$1.finishNode(node.key, "Identifier") + return false + } + + node.static = tryContextual("static") + if (!node.static) { return ExtendedParser.prototype.parseClassElement.apply(this, arguments) } + + var isGenerator = this.eat(tt.star) + var isAsync = false + if (!isGenerator) { + // Special-case for `async`, since `parseClassMember` currently looks + // for `(` to determine whether `async` is a method name + if (this.options.ecmaVersion >= 8 && this.isContextual("async")) { + skipWhiteSpace.lastIndex = this.pos + var skip = skipWhiteSpace.exec(this.input) + var next = this.input.charAt(this.pos + skip[0].length) + if (next === ";" || next === "=") { + node.key = this.parseIdent(true) + node.computed = false + maybeParseFieldValue.call(this, node) + this.finishNode(node, "FieldDefinition") + this.semicolon() + return node + } else if (this.options.ecmaVersion >= 8 && tryContextual("async", true)) { + isAsync = true + isGenerator = this.options.ecmaVersion >= 9 && this.eat(tt.star) + } + } else if (tryContextual("get")) { + node.kind = "get" + } else if (tryContextual("set")) { + node.kind = "set" + } + } + if (this.type === this.privateNameToken) { + this.parsePrivateClassElementName(node) + if (this.type !== tt.parenL) { + if (node.key.name === "prototype") { + this.raise(node.key.start, "Classes may not have a private static property named prototype") + } + maybeParseFieldValue.call(this, node) + this.finishNode(node, "FieldDefinition") + this.semicolon() + return node + } + } else if (!node.key) { + this.parsePropertyName(node) + if ((node.key.name || node.key.value) === "prototype" && !node.computed) { + this.raise(node.key.start, "Classes may not have a static property named prototype") + } + } + if (!node.kind) { node.kind = "method" } + this.parseClassMethod(node, isGenerator, isAsync) + if (!node.kind && (node.key.name || node.key.value) === "constructor" && !node.computed) { + this.raise(node.key.start, "Classes may not have a static field named constructor") + } + if (node.kind === "get" && node.value.params.length !== 0) { + this.raiseRecoverable(node.value.start, "getter should have no params") + } + if (node.kind === "set" && node.value.params.length !== 1) { + this.raiseRecoverable(node.value.start, "setter should have exactly one param") + } + if (node.kind === "set" && node.value.params[0].type === "RestElement") { + this.raiseRecoverable(node.value.params[0].start, "Setter cannot use rest params") + } + + return node + + }; + + // Parse public static fields + anonymous.prototype.parseClassMethod = function parseClassMethod (method, isGenerator, isAsync, _allowsDirectSuper) { + if (isGenerator || isAsync || method.kind != "method" || !method.static || this.options.ecmaVersion < 8 || this.type == tt.parenL) { + return ExtendedParser.prototype.parseClassMethod.apply(this, arguments) + } + maybeParseFieldValue.call(this, method) + delete method.kind + method = this.finishNode(method, "FieldDefinition") + this.semicolon() + return method + }; + + // Prohibit arguments in class field initializers + anonymous.prototype.parseIdent = function parseIdent (liberal, isBinding) { + var ident = ExtendedParser.prototype.parseIdent.call(this, liberal, isBinding) + if (this._inStaticFieldValue && ident.name == "arguments") { this.raise(ident.start, "A static class field initializer may not contain arguments") } + return ident + }; + + return anonymous; + }(ExtendedParser)) +} diff --git a/themes/piratecare/node_modules/acorn-node/package.json b/themes/piratecare/node_modules/acorn-node/package.json new file mode 100644 index 0000000..2d6bc2f --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "acorn-node@1.8.2", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "acorn-node@1.8.2", + "_id": "acorn-node@1.8.2", + "_inBundle": false, + "_integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "_location": "/acorn-node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn-node@1.8.2", + "name": "acorn-node", + "escapedName": "acorn-node", + "rawSpec": "1.8.2", + "saveSpec": null, + "fetchSpec": "1.8.2" + }, + "_requiredBy": [ + "/detective" + ], + "_resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "_spec": "1.8.2", + "_where": "/tmp/tailwind-hugo", + "author": { + "name": "Renée Kooi", + "email": "renee@kooi.me" + }, + "bugs": { + "url": "https://github.com/browserify/acorn-node/issues" + }, + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + }, + "description": "the acorn javascript parser, preloaded with plugins for syntax parity with recent node versions", + "devDependencies": { + "acorn-bigint": "^0.4.0", + "acorn-class-fields": "^0.3.1", + "acorn-dynamic-import": "^4.0.0", + "acorn-export-ns-from": "^0.1.0", + "acorn-import-meta": "^0.3.0", + "acorn-numeric-separator": "^0.3.0", + "acorn-private-class-elements": "^0.1.1", + "acorn-static-class-features": "^0.2.0", + "buble": "^0.19.8", + "mkdirp": "^0.5.1", + "standard": "^13.1.0", + "tape": "^4.11.0" + }, + "homepage": "https://github.com/browserify/acorn-node", + "keywords": [ + "acorn", + "browserify", + "javascript", + "parser" + ], + "license": "Apache-2.0", + "main": "index.js", + "name": "acorn-node", + "repository": { + "type": "git", + "url": "git+https://github.com/browserify/acorn-node.git" + }, + "scripts": { + "build": "node build.js", + "prepublishOnly": "npm run build", + "test": "standard && node test/index.js" + }, + "standard": { + "ignore": [ + "lib/*/*.js" + ] + }, + "version": "1.8.2" +} diff --git a/themes/piratecare/node_modules/acorn-node/test/index.js b/themes/piratecare/node_modules/acorn-node/test/index.js new file mode 100644 index 0000000..59832db --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/test/index.js @@ -0,0 +1,154 @@ +var test = require('tape') +var acorn = require('../') +var walk = require('../walk') +var baseAcorn = require('acorn') + +test('parses object spread syntax', function (t) { + var ast = acorn.parse('var a = { ...b }') + t.equal(ast.body[0].declarations[0].init.type, 'ObjectExpression') + t.equal(ast.body[0].declarations[0].init.properties[0].type, 'SpreadElement') + + ast = acorn.parse('function a ({ ...b }) {}') + t.equal(ast.body[0].params[0].type, 'ObjectPattern') + t.equal(ast.body[0].params[0].properties[0].type, 'RestElement') + + t.end() +}) + +test('does not change main acorn module', function (t) { + t.throws(function () { + baseAcorn.parse('var a = 10n') + }) + t.end() +}) + +test('tokenizes object spread syntax', function (t) { + var tokenizer = acorn.tokenizer('var a = { ...b }') + + t.doesNotThrow(function (t) { + while (tokenizer.getToken().type !== acorn.tokTypes.eof) {} + }) + t.end() +}) + +test('allows hashbangs by default', function (t) { + t.doesNotThrow(function () { + acorn.parse('#!/usr/bin/env node\nconsole.log("ok")') + }) + t.end() +}) + +test('allows top level return by default', function (t) { + t.doesNotThrow(function () { + acorn.parse('console.log("ok"); return; console.log("not ok")') + }) + t.end() +}) + +test('supports async generators', function (t) { + t.doesNotThrow(function () { + acorn.parse('async function* a () { await x; yield 1 }') + }) + t.end() +}) + +test('supports async iteration', function (t) { + t.doesNotThrow(function () { + acorn.parse('async function l (y) { for await (const x of y) {} }') + }) + t.end() +}) + +test('supports optional catch', function (t) { + t.doesNotThrow(function () { + acorn.parse('try { throw null } catch {}') + }) + t.end() +}) + +test('supports bigint', function (t) { + t.doesNotThrow(function () { + acorn.parse('50n ** 50n') + }) + t.end() +}) + +test('supports numeric separators', function (t) { + t.doesNotThrow(function () { + acorn.parse('50_000_000n ** 1n') + }) + t.end() +}) + +test('supports import.meta with sourceType: module', function (t) { + t.doesNotThrow(function () { + acorn.parse('console.log(import.meta.url)', { sourceType: 'module' }) + }) + t.end() +}) + +test('supports dynamic import() with sourceType: module', function (t) { + t.doesNotThrow(function () { + acorn.parse('import("./whatever.mjs")', { sourceType: 'module' }) + }) + t.end() +}) + +test('supports dynamic import() with sourceType: script', function (t) { + t.doesNotThrow(function () { + acorn.parse('import("./whatever.mjs")', { sourceType: 'script' }) + }) + t.end() +}) + +test('supports class instance properties', function (t) { + t.doesNotThrow(function () { + acorn.parse('class X { x = y }', { sourceType: 'script' }) + }) + t.end() +}) + +test('supports private class instance properties', function (t) { + t.doesNotThrow(function () { + acorn.parse('class X { #x = y }', { sourceType: 'script' }) + }) + t.end() +}) + +test('supports class static properties', function (t) { + t.doesNotThrow(function () { + acorn.parse('class X { static x = y }', { sourceType: 'script' }) + }) + t.end() +}) + +test('supports private class static properties', function (t) { + t.doesNotThrow(function () { + acorn.parse('class X { static #x = y }', { sourceType: 'script' }) + }) + t.end() +}) + +test('supports namespace export syntax with sourceType: module', function (t) { + t.doesNotThrow(function () { + acorn.parse('export * as x from "./x.mjs";', { sourceType: 'module' }) + }) + t.end() +}) + +test('walk supports plugin syntax', function (t) { + var ast = acorn.parse( + 'async function* a() { try { await import(xyz); } catch { for await (x of null) {} } yield import.meta.url }', + { sourceType: 'module' } + ) + t.plan(2) + walk.simple(ast, { + Import: function () { + t.pass('import()') + }, + MetaProperty: function () { + t.pass('import.meta') + } + }) + t.end() +}) diff --git a/themes/piratecare/node_modules/acorn-node/walk.js b/themes/piratecare/node_modules/acorn-node/walk.js new file mode 100644 index 0000000..273a30c --- /dev/null +++ b/themes/piratecare/node_modules/acorn-node/walk.js @@ -0,0 +1,57 @@ +var xtend = require('xtend') +var walk = require('acorn-walk') + +var base = xtend(walk.base) +base.Import = function () {} + +function simple (node, visitors, baseVisitor, state, override) { + return walk.simple(node, visitors, baseVisitor || base, state, override) +} + +function ancestor (node, visitors, baseVisitor, state) { + return walk.ancestor(node, visitors, baseVisitor || base, state) +} + +function recursive (node, state, funcs, baseVisitor, override) { + return walk.recursive(node, state, funcs, baseVisitor || base, override) +} + +function full (node, callback, baseVisitor, state, override) { + return walk.full(node, callback, baseVisitor || base, state, override) +} + +function fullAncestor (node, callback, baseVisitor, state) { + return walk.fullAncestor(node, callback, baseVisitor || base, state) +} + +function findNodeAt (node, start, end, test, baseVisitor, state) { + return walk.findNodeAt(node, start, end, test, baseVisitor || base, state) +} + +function findNodeAround (node, pos, test, baseVisitor, state) { + return walk.findNodeAround(node, pos, test, baseVisitor || base, state) +} + +function findNodeAfter (node, pos, test, baseVisitor, state) { + return walk.findNodeAfter(node, pos, test, baseVisitor || base, state) +} + +function findNodeBefore (node, pos, test, baseVisitor, state) { + return walk.findNodeBefore(node, pos, test, baseVisitor || base, state) +} + +function make (funcs, baseVisitor) { + return walk.make(funcs, baseVisitor || base) +} + +exports.simple = simple +exports.ancestor = ancestor +exports.recursive = recursive +exports.full = full +exports.fullAncestor = fullAncestor +exports.findNodeAt = findNodeAt +exports.findNodeAround = findNodeAround +exports.findNodeAfter = findNodeAfter +exports.findNodeBefore = findNodeBefore +exports.make = make +exports.base = base diff --git a/themes/piratecare/node_modules/acorn-walk/CHANGELOG.md b/themes/piratecare/node_modules/acorn-walk/CHANGELOG.md new file mode 100644 index 0000000..82d4399 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/CHANGELOG.md @@ -0,0 +1,109 @@ +## 7.0.0 (2017-08-12) + +### New features + +Support walking `ImportExpression` nodes. + +## 6.2.0 (2017-07-04) + +### New features + +Add support for `Import` nodes. + +## 6.1.0 (2018-09-28) + +### New features + +The walker now walks `TemplateElement` nodes. + +## 6.0.1 (2018-09-14) + +### Bug fixes + +Fix bad "main" field in package.json. + +## 6.0.0 (2018-09-14) + +### Breaking changes + +This is now a separate package, `acorn-walk`, rather than part of the main `acorn` package. + +The `ScopeBody` and `ScopeExpression` meta-node-types are no longer supported. + +## 5.7.1 (2018-06-15) + +### Bug fixes + +Make sure the walker and bin files are rebuilt on release (the previous release didn't get the up-to-date versions). + +## 5.7.0 (2018-06-15) + +### Bug fixes + +Fix crash in walker when walking a binding-less catch node. + +## 5.6.2 (2018-06-05) + +### Bug fixes + +In the walker, go back to allowing the `baseVisitor` argument to be null to default to the default base everywhere. + +## 5.6.1 (2018-06-01) + +### Bug fixes + +Fix regression when passing `null` as fourth argument to `walk.recursive`. + +## 5.6.0 (2018-05-31) + +### Bug fixes + +Fix a bug in the walker that caused a crash when walking an object pattern spread. + +## 5.5.1 (2018-03-06) + +### Bug fixes + +Fix regression in walker causing property values in object patterns to be walked as expressions. + +## 5.5.0 (2018-02-27) + +### Bug fixes + +Support object spread in the AST walker. + +## 5.4.1 (2018-02-02) + +### Bug fixes + +5.4.0 somehow accidentally included an old version of walk.js. + +## 5.2.0 (2017-10-30) + +### Bug fixes + +The `full` and `fullAncestor` walkers no longer visit nodes multiple times. + +## 5.1.0 (2017-07-05) + +### New features + +New walker functions `full` and `fullAncestor`. + +## 3.2.0 (2016-06-07) + +### New features + +Make it possible to use `visit.ancestor` with a walk state. + +## 3.1.0 (2016-04-18) + +### New features + +The walker now allows defining handlers for `CatchClause` nodes. + +## 2.5.2 (2015-10-27) + +### Fixes + +Fix bug where the walker walked an exported `let` statement as an expression. diff --git a/themes/piratecare/node_modules/acorn-walk/LICENSE b/themes/piratecare/node_modules/acorn-walk/LICENSE new file mode 100644 index 0000000..2c0632b --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2012-2018 by various contributors (see AUTHORS) + +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. diff --git a/themes/piratecare/node_modules/acorn-walk/README.md b/themes/piratecare/node_modules/acorn-walk/README.md new file mode 100644 index 0000000..e192bac --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/README.md @@ -0,0 +1,126 @@ +# Acorn AST walker + +An abstract syntax tree walker for the +[ESTree](https://github.com/estree/estree) format. + +## Community + +Acorn is open source software released under an +[MIT license](https://github.com/acornjs/acorn/blob/master/acorn-walk/LICENSE). + +You are welcome to +[report bugs](https://github.com/acornjs/acorn/issues) or create pull +requests on [github](https://github.com/acornjs/acorn). For questions +and discussion, please use the +[Tern discussion forum](https://discuss.ternjs.net). + +## Installation + +The easiest way to install acorn is from [`npm`](https://www.npmjs.com/): + +```sh +npm install acorn-walk +``` + +Alternately, you can download the source and build acorn yourself: + +```sh +git clone https://github.com/acornjs/acorn.git +cd acorn +npm install +``` + +## Interface + +An algorithm for recursing through a syntax tree is stored as an +object, with a property for each tree node type holding a function +that will recurse through such a node. There are several ways to run +such a walker. + +**simple**`(node, visitors, base, state)` does a 'simple' walk over a +tree. `node` should be the AST node to walk, and `visitors` an object +with properties whose names correspond to node types in the [ESTree +spec](https://github.com/estree/estree). The properties should contain +functions that will be called with the node object and, if applicable +the state at that point. The last two arguments are optional. `base` +is a walker algorithm, and `state` is a start state. The default +walker will simply visit all statements and expressions and not +produce a meaningful state. (An example of a use of state is to track +scope at each point in the tree.) + +```js +const acorn = require("acorn") +const walk = require("acorn-walk") + +walk.simple(acorn.parse("let x = 10"), { + Literal(node) { + console.log(`Found a literal: ${node.value}`) + } +}) +``` + +**ancestor**`(node, visitors, base, state)` does a 'simple' walk over +a tree, building up an array of ancestor nodes (including the current node) +and passing the array to the callbacks as a third parameter. + +```js +const acorn = require("acorn") +const walk = require("acorn-walk") + +walk.ancestor(acorn.parse("foo('hi')"), { + Literal(_, ancestors) { + console.log("This literal's ancestors are:", ancestors.map(n => n.type)) + } +}) +``` + +**recursive**`(node, state, functions, base)` does a 'recursive' +walk, where the walker functions are responsible for continuing the +walk on the child nodes of their target node. `state` is the start +state, and `functions` should contain an object that maps node types +to walker functions. Such functions are called with `(node, state, c)` +arguments, and can cause the walk to continue on a sub-node by calling +the `c` argument on it with `(node, state)` arguments. The optional +`base` argument provides the fallback walker functions for node types +that aren't handled in the `functions` object. If not given, the +default walkers will be used. + +**make**`(functions, base)` builds a new walker object by using the +walker functions in `functions` and filling in the missing ones by +taking defaults from `base`. + +**full**`(node, callback, base, state)` does a 'full' walk over a +tree, calling the callback with the arguments (node, state, type) for +each node + +**fullAncestor**`(node, callback, base, state)` does a 'full' walk +over a tree, building up an array of ancestor nodes (including the +current node) and passing the array to the callbacks as a third +parameter. + +```js +const acorn = require("acorn") +const walk = require("acorn-walk") + +walk.full(acorn.parse("1 + 1"), node => { + console.log(`There's a ${node.type} node at ${node.ch}`) +}) +``` + +**findNodeAt**`(node, start, end, test, base, state)` tries to locate +a node in a tree at the given start and/or end offsets, which +satisfies the predicate `test`. `start` and `end` can be either `null` +(as wildcard) or a number. `test` may be a string (indicating a node +type) or a function that takes `(nodeType, node)` arguments and +returns a boolean indicating whether this node is interesting. `base` +and `state` are optional, and can be used to specify a custom walker. +Nodes are tested from inner to outer, so if two nodes match the +boundaries, the inner one will be preferred. + +**findNodeAround**`(node, pos, test, base, state)` is a lot like +`findNodeAt`, but will match any node that exists 'around' (spanning) +the given position. + +**findNodeAfter**`(node, pos, test, base, state)` is similar to +`findNodeAround`, but will match all nodes *after* the given position +(testing outer nodes before inner nodes). diff --git a/themes/piratecare/node_modules/acorn-walk/dist/walk.js b/themes/piratecare/node_modules/acorn-walk/dist/walk.js new file mode 100644 index 0000000..387b337 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/dist/walk.js @@ -0,0 +1,461 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (global = global || self, factory((global.acorn = global.acorn || {}, global.acorn.walk = {}))); +}(this, function (exports) { 'use strict'; + + // AST walker module for Mozilla Parser API compatible trees + + // A simple walk is one where you simply specify callbacks to be + // called on specific nodes. The last two arguments are optional. A + // simple use would be + // + // walk.simple(myTree, { + // Expression: function(node) { ... } + // }); + // + // to do something with all expressions. All Parser API node types + // can be used to identify node types, as well as Expression and + // Statement, which denote categories of nodes. + // + // The base argument can be used to pass a custom (recursive) + // walker, and state can be used to give this walked an initial + // state. + + function simple(node, visitors, baseVisitor, state, override) { + if (!baseVisitor) { baseVisitor = base + ; }(function c(node, st, override) { + var type = override || node.type, found = visitors[type]; + baseVisitor[type](node, st, c); + if (found) { found(node, st); } + })(node, state, override); + } + + // An ancestor walk keeps an array of ancestor nodes (including the + // current node) and passes them to the callback as third parameter + // (and also as state parameter when no other state is present). + function ancestor(node, visitors, baseVisitor, state) { + var ancestors = []; + if (!baseVisitor) { baseVisitor = base + ; }(function c(node, st, override) { + var type = override || node.type, found = visitors[type]; + var isNew = node !== ancestors[ancestors.length - 1]; + if (isNew) { ancestors.push(node); } + baseVisitor[type](node, st, c); + if (found) { found(node, st || ancestors, ancestors); } + if (isNew) { ancestors.pop(); } + })(node, state); + } + + // A recursive walk is one where your functions override the default + // walkers. They can modify and replace the state parameter that's + // threaded through the walk, and can opt how and whether to walk + // their child nodes (by calling their third argument on these + // nodes). + function recursive(node, state, funcs, baseVisitor, override) { + var visitor = funcs ? make(funcs, baseVisitor || undefined) : baseVisitor + ;(function c(node, st, override) { + visitor[override || node.type](node, st, c); + })(node, state, override); + } + + function makeTest(test) { + if (typeof test === "string") + { return function (type) { return type === test; } } + else if (!test) + { return function () { return true; } } + else + { return test } + } + + var Found = function Found(node, state) { this.node = node; this.state = state; }; + + // A full walk triggers the callback on each node + function full(node, callback, baseVisitor, state, override) { + if (!baseVisitor) { baseVisitor = base + ; }(function c(node, st, override) { + var type = override || node.type; + baseVisitor[type](node, st, c); + if (!override) { callback(node, st, type); } + })(node, state, override); + } + + // An fullAncestor walk is like an ancestor walk, but triggers + // the callback on each node + function fullAncestor(node, callback, baseVisitor, state) { + if (!baseVisitor) { baseVisitor = base; } + var ancestors = [] + ;(function c(node, st, override) { + var type = override || node.type; + var isNew = node !== ancestors[ancestors.length - 1]; + if (isNew) { ancestors.push(node); } + baseVisitor[type](node, st, c); + if (!override) { callback(node, st || ancestors, ancestors, type); } + if (isNew) { ancestors.pop(); } + })(node, state); + } + + // Find a node with a given start, end, and type (all are optional, + // null can be used as wildcard). Returns a {node, state} object, or + // undefined when it doesn't find a matching node. + function findNodeAt(node, start, end, test, baseVisitor, state) { + if (!baseVisitor) { baseVisitor = base; } + test = makeTest(test); + try { + (function c(node, st, override) { + var type = override || node.type; + if ((start == null || node.start <= start) && + (end == null || node.end >= end)) + { baseVisitor[type](node, st, c); } + if ((start == null || node.start === start) && + (end == null || node.end === end) && + test(type, node)) + { throw new Found(node, st) } + })(node, state); + } catch (e) { + if (e instanceof Found) { return e } + throw e + } + } + + // Find the innermost node of a given type that contains the given + // position. Interface similar to findNodeAt. + function findNodeAround(node, pos, test, baseVisitor, state) { + test = makeTest(test); + if (!baseVisitor) { baseVisitor = base; } + try { + (function c(node, st, override) { + var type = override || node.type; + if (node.start > pos || node.end < pos) { return } + baseVisitor[type](node, st, c); + if (test(type, node)) { throw new Found(node, st) } + })(node, state); + } catch (e) { + if (e instanceof Found) { return e } + throw e + } + } + + // Find the outermost matching node after a given position. + function findNodeAfter(node, pos, test, baseVisitor, state) { + test = makeTest(test); + if (!baseVisitor) { baseVisitor = base; } + try { + (function c(node, st, override) { + if (node.end < pos) { return } + var type = override || node.type; + if (node.start >= pos && test(type, node)) { throw new Found(node, st) } + baseVisitor[type](node, st, c); + })(node, state); + } catch (e) { + if (e instanceof Found) { return e } + throw e + } + } + + // Find the outermost matching node before a given position. + function findNodeBefore(node, pos, test, baseVisitor, state) { + test = makeTest(test); + if (!baseVisitor) { baseVisitor = base; } + var max + ;(function c(node, st, override) { + if (node.start > pos) { return } + var type = override || node.type; + if (node.end <= pos && (!max || max.node.end < node.end) && test(type, node)) + { max = new Found(node, st); } + baseVisitor[type](node, st, c); + })(node, state); + return max + } + + // Fallback to an Object.create polyfill for older environments. + var create = Object.create || function(proto) { + function Ctor() {} + Ctor.prototype = proto; + return new Ctor + }; + + // Used to create a custom walker. Will fill in all missing node + // type properties with the defaults. + function make(funcs, baseVisitor) { + var visitor = create(baseVisitor || base); + for (var type in funcs) { visitor[type] = funcs[type]; } + return visitor + } + + function skipThrough(node, st, c) { c(node, st); } + function ignore(_node, _st, _c) {} + + // Node walkers. + + var base = {}; + + base.Program = base.BlockStatement = function (node, st, c) { + for (var i = 0, list = node.body; i < list.length; i += 1) + { + var stmt = list[i]; + + c(stmt, st, "Statement"); + } + }; + base.Statement = skipThrough; + base.EmptyStatement = ignore; + base.ExpressionStatement = base.ParenthesizedExpression = + function (node, st, c) { return c(node.expression, st, "Expression"); }; + base.IfStatement = function (node, st, c) { + c(node.test, st, "Expression"); + c(node.consequent, st, "Statement"); + if (node.alternate) { c(node.alternate, st, "Statement"); } + }; + base.LabeledStatement = function (node, st, c) { return c(node.body, st, "Statement"); }; + base.BreakStatement = base.ContinueStatement = ignore; + base.WithStatement = function (node, st, c) { + c(node.object, st, "Expression"); + c(node.body, st, "Statement"); + }; + base.SwitchStatement = function (node, st, c) { + c(node.discriminant, st, "Expression"); + for (var i$1 = 0, list$1 = node.cases; i$1 < list$1.length; i$1 += 1) { + var cs = list$1[i$1]; + + if (cs.test) { c(cs.test, st, "Expression"); } + for (var i = 0, list = cs.consequent; i < list.length; i += 1) + { + var cons = list[i]; + + c(cons, st, "Statement"); + } + } + }; + base.SwitchCase = function (node, st, c) { + if (node.test) { c(node.test, st, "Expression"); } + for (var i = 0, list = node.consequent; i < list.length; i += 1) + { + var cons = list[i]; + + c(cons, st, "Statement"); + } + }; + base.ReturnStatement = base.YieldExpression = base.AwaitExpression = function (node, st, c) { + if (node.argument) { c(node.argument, st, "Expression"); } + }; + base.ThrowStatement = base.SpreadElement = + function (node, st, c) { return c(node.argument, st, "Expression"); }; + base.TryStatement = function (node, st, c) { + c(node.block, st, "Statement"); + if (node.handler) { c(node.handler, st); } + if (node.finalizer) { c(node.finalizer, st, "Statement"); } + }; + base.CatchClause = function (node, st, c) { + if (node.param) { c(node.param, st, "Pattern"); } + c(node.body, st, "Statement"); + }; + base.WhileStatement = base.DoWhileStatement = function (node, st, c) { + c(node.test, st, "Expression"); + c(node.body, st, "Statement"); + }; + base.ForStatement = function (node, st, c) { + if (node.init) { c(node.init, st, "ForInit"); } + if (node.test) { c(node.test, st, "Expression"); } + if (node.update) { c(node.update, st, "Expression"); } + c(node.body, st, "Statement"); + }; + base.ForInStatement = base.ForOfStatement = function (node, st, c) { + c(node.left, st, "ForInit"); + c(node.right, st, "Expression"); + c(node.body, st, "Statement"); + }; + base.ForInit = function (node, st, c) { + if (node.type === "VariableDeclaration") { c(node, st); } + else { c(node, st, "Expression"); } + }; + base.DebuggerStatement = ignore; + + base.FunctionDeclaration = function (node, st, c) { return c(node, st, "Function"); }; + base.VariableDeclaration = function (node, st, c) { + for (var i = 0, list = node.declarations; i < list.length; i += 1) + { + var decl = list[i]; + + c(decl, st); + } + }; + base.VariableDeclarator = function (node, st, c) { + c(node.id, st, "Pattern"); + if (node.init) { c(node.init, st, "Expression"); } + }; + + base.Function = function (node, st, c) { + if (node.id) { c(node.id, st, "Pattern"); } + for (var i = 0, list = node.params; i < list.length; i += 1) + { + var param = list[i]; + + c(param, st, "Pattern"); + } + c(node.body, st, node.expression ? "Expression" : "Statement"); + }; + + base.Pattern = function (node, st, c) { + if (node.type === "Identifier") + { c(node, st, "VariablePattern"); } + else if (node.type === "MemberExpression") + { c(node, st, "MemberPattern"); } + else + { c(node, st); } + }; + base.VariablePattern = ignore; + base.MemberPattern = skipThrough; + base.RestElement = function (node, st, c) { return c(node.argument, st, "Pattern"); }; + base.ArrayPattern = function (node, st, c) { + for (var i = 0, list = node.elements; i < list.length; i += 1) { + var elt = list[i]; + + if (elt) { c(elt, st, "Pattern"); } + } + }; + base.ObjectPattern = function (node, st, c) { + for (var i = 0, list = node.properties; i < list.length; i += 1) { + var prop = list[i]; + + if (prop.type === "Property") { + if (prop.computed) { c(prop.key, st, "Expression"); } + c(prop.value, st, "Pattern"); + } else if (prop.type === "RestElement") { + c(prop.argument, st, "Pattern"); + } + } + }; + + base.Expression = skipThrough; + base.ThisExpression = base.Super = base.MetaProperty = ignore; + base.ArrayExpression = function (node, st, c) { + for (var i = 0, list = node.elements; i < list.length; i += 1) { + var elt = list[i]; + + if (elt) { c(elt, st, "Expression"); } + } + }; + base.ObjectExpression = function (node, st, c) { + for (var i = 0, list = node.properties; i < list.length; i += 1) + { + var prop = list[i]; + + c(prop, st); + } + }; + base.FunctionExpression = base.ArrowFunctionExpression = base.FunctionDeclaration; + base.SequenceExpression = function (node, st, c) { + for (var i = 0, list = node.expressions; i < list.length; i += 1) + { + var expr = list[i]; + + c(expr, st, "Expression"); + } + }; + base.TemplateLiteral = function (node, st, c) { + for (var i = 0, list = node.quasis; i < list.length; i += 1) + { + var quasi = list[i]; + + c(quasi, st); + } + + for (var i$1 = 0, list$1 = node.expressions; i$1 < list$1.length; i$1 += 1) + { + var expr = list$1[i$1]; + + c(expr, st, "Expression"); + } + }; + base.TemplateElement = ignore; + base.UnaryExpression = base.UpdateExpression = function (node, st, c) { + c(node.argument, st, "Expression"); + }; + base.BinaryExpression = base.LogicalExpression = function (node, st, c) { + c(node.left, st, "Expression"); + c(node.right, st, "Expression"); + }; + base.AssignmentExpression = base.AssignmentPattern = function (node, st, c) { + c(node.left, st, "Pattern"); + c(node.right, st, "Expression"); + }; + base.ConditionalExpression = function (node, st, c) { + c(node.test, st, "Expression"); + c(node.consequent, st, "Expression"); + c(node.alternate, st, "Expression"); + }; + base.NewExpression = base.CallExpression = function (node, st, c) { + c(node.callee, st, "Expression"); + if (node.arguments) + { for (var i = 0, list = node.arguments; i < list.length; i += 1) + { + var arg = list[i]; + + c(arg, st, "Expression"); + } } + }; + base.MemberExpression = function (node, st, c) { + c(node.object, st, "Expression"); + if (node.computed) { c(node.property, st, "Expression"); } + }; + base.ExportNamedDeclaration = base.ExportDefaultDeclaration = function (node, st, c) { + if (node.declaration) + { c(node.declaration, st, node.type === "ExportNamedDeclaration" || node.declaration.id ? "Statement" : "Expression"); } + if (node.source) { c(node.source, st, "Expression"); } + }; + base.ExportAllDeclaration = function (node, st, c) { + c(node.source, st, "Expression"); + }; + base.ImportDeclaration = function (node, st, c) { + for (var i = 0, list = node.specifiers; i < list.length; i += 1) + { + var spec = list[i]; + + c(spec, st); + } + c(node.source, st, "Expression"); + }; + base.ImportExpression = function (node, st, c) { + c(node.source, st, "Expression"); + }; + base.ImportSpecifier = base.ImportDefaultSpecifier = base.ImportNamespaceSpecifier = base.Identifier = base.Literal = ignore; + + base.TaggedTemplateExpression = function (node, st, c) { + c(node.tag, st, "Expression"); + c(node.quasi, st, "Expression"); + }; + base.ClassDeclaration = base.ClassExpression = function (node, st, c) { return c(node, st, "Class"); }; + base.Class = function (node, st, c) { + if (node.id) { c(node.id, st, "Pattern"); } + if (node.superClass) { c(node.superClass, st, "Expression"); } + c(node.body, st); + }; + base.ClassBody = function (node, st, c) { + for (var i = 0, list = node.body; i < list.length; i += 1) + { + var elt = list[i]; + + c(elt, st); + } + }; + base.MethodDefinition = base.Property = function (node, st, c) { + if (node.computed) { c(node.key, st, "Expression"); } + c(node.value, st, "Expression"); + }; + + exports.ancestor = ancestor; + exports.base = base; + exports.findNodeAfter = findNodeAfter; + exports.findNodeAround = findNodeAround; + exports.findNodeAt = findNodeAt; + exports.findNodeBefore = findNodeBefore; + exports.full = full; + exports.fullAncestor = fullAncestor; + exports.make = make; + exports.recursive = recursive; + exports.simple = simple; + + Object.defineProperty(exports, '__esModule', { value: true }); + +})); diff --git a/themes/piratecare/node_modules/acorn-walk/dist/walk.js.map b/themes/piratecare/node_modules/acorn-walk/dist/walk.js.map new file mode 100644 index 0000000..5590a29 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/dist/walk.js.map @@ -0,0 +1 @@ +{"version":3,"file":"walk.js","sources":["../src/index.js"],"sourcesContent":["// AST walker module for Mozilla Parser API compatible trees\n\n// A simple walk is one where you simply specify callbacks to be\n// called on specific nodes. The last two arguments are optional. A\n// simple use would be\n//\n// walk.simple(myTree, {\n// Expression: function(node) { ... }\n// });\n//\n// to do something with all expressions. All Parser API node types\n// can be used to identify node types, as well as Expression and\n// Statement, which denote categories of nodes.\n//\n// The base argument can be used to pass a custom (recursive)\n// walker, and state can be used to give this walked an initial\n// state.\n\nexport function simple(node, visitors, baseVisitor, state, override) {\n if (!baseVisitor) baseVisitor = base\n ;(function c(node, st, override) {\n let type = override || node.type, found = visitors[type]\n baseVisitor[type](node, st, c)\n if (found) found(node, st)\n })(node, state, override)\n}\n\n// An ancestor walk keeps an array of ancestor nodes (including the\n// current node) and passes them to the callback as third parameter\n// (and also as state parameter when no other state is present).\nexport function ancestor(node, visitors, baseVisitor, state) {\n let ancestors = []\n if (!baseVisitor) baseVisitor = base\n ;(function c(node, st, override) {\n let type = override || node.type, found = visitors[type]\n let isNew = node !== ancestors[ancestors.length - 1]\n if (isNew) ancestors.push(node)\n baseVisitor[type](node, st, c)\n if (found) found(node, st || ancestors, ancestors)\n if (isNew) ancestors.pop()\n })(node, state)\n}\n\n// A recursive walk is one where your functions override the default\n// walkers. They can modify and replace the state parameter that's\n// threaded through the walk, and can opt how and whether to walk\n// their child nodes (by calling their third argument on these\n// nodes).\nexport function recursive(node, state, funcs, baseVisitor, override) {\n let visitor = funcs ? make(funcs, baseVisitor || undefined) : baseVisitor\n ;(function c(node, st, override) {\n visitor[override || node.type](node, st, c)\n })(node, state, override)\n}\n\nfunction makeTest(test) {\n if (typeof test === \"string\")\n return type => type === test\n else if (!test)\n return () => true\n else\n return test\n}\n\nclass Found {\n constructor(node, state) { this.node = node; this.state = state }\n}\n\n// A full walk triggers the callback on each node\nexport function full(node, callback, baseVisitor, state, override) {\n if (!baseVisitor) baseVisitor = base\n ;(function c(node, st, override) {\n let type = override || node.type\n baseVisitor[type](node, st, c)\n if (!override) callback(node, st, type)\n })(node, state, override)\n}\n\n// An fullAncestor walk is like an ancestor walk, but triggers\n// the callback on each node\nexport function fullAncestor(node, callback, baseVisitor, state) {\n if (!baseVisitor) baseVisitor = base\n let ancestors = []\n ;(function c(node, st, override) {\n let type = override || node.type\n let isNew = node !== ancestors[ancestors.length - 1]\n if (isNew) ancestors.push(node)\n baseVisitor[type](node, st, c)\n if (!override) callback(node, st || ancestors, ancestors, type)\n if (isNew) ancestors.pop()\n })(node, state)\n}\n\n// Find a node with a given start, end, and type (all are optional,\n// null can be used as wildcard). Returns a {node, state} object, or\n// undefined when it doesn't find a matching node.\nexport function findNodeAt(node, start, end, test, baseVisitor, state) {\n if (!baseVisitor) baseVisitor = base\n test = makeTest(test)\n try {\n (function c(node, st, override) {\n let type = override || node.type\n if ((start == null || node.start <= start) &&\n (end == null || node.end >= end))\n baseVisitor[type](node, st, c)\n if ((start == null || node.start === start) &&\n (end == null || node.end === end) &&\n test(type, node))\n throw new Found(node, st)\n })(node, state)\n } catch (e) {\n if (e instanceof Found) return e\n throw e\n }\n}\n\n// Find the innermost node of a given type that contains the given\n// position. Interface similar to findNodeAt.\nexport function findNodeAround(node, pos, test, baseVisitor, state) {\n test = makeTest(test)\n if (!baseVisitor) baseVisitor = base\n try {\n (function c(node, st, override) {\n let type = override || node.type\n if (node.start > pos || node.end < pos) return\n baseVisitor[type](node, st, c)\n if (test(type, node)) throw new Found(node, st)\n })(node, state)\n } catch (e) {\n if (e instanceof Found) return e\n throw e\n }\n}\n\n// Find the outermost matching node after a given position.\nexport function findNodeAfter(node, pos, test, baseVisitor, state) {\n test = makeTest(test)\n if (!baseVisitor) baseVisitor = base\n try {\n (function c(node, st, override) {\n if (node.end < pos) return\n let type = override || node.type\n if (node.start >= pos && test(type, node)) throw new Found(node, st)\n baseVisitor[type](node, st, c)\n })(node, state)\n } catch (e) {\n if (e instanceof Found) return e\n throw e\n }\n}\n\n// Find the outermost matching node before a given position.\nexport function findNodeBefore(node, pos, test, baseVisitor, state) {\n test = makeTest(test)\n if (!baseVisitor) baseVisitor = base\n let max\n ;(function c(node, st, override) {\n if (node.start > pos) return\n let type = override || node.type\n if (node.end <= pos && (!max || max.node.end < node.end) && test(type, node))\n max = new Found(node, st)\n baseVisitor[type](node, st, c)\n })(node, state)\n return max\n}\n\n// Fallback to an Object.create polyfill for older environments.\nconst create = Object.create || function(proto) {\n function Ctor() {}\n Ctor.prototype = proto\n return new Ctor\n}\n\n// Used to create a custom walker. Will fill in all missing node\n// type properties with the defaults.\nexport function make(funcs, baseVisitor) {\n let visitor = create(baseVisitor || base)\n for (let type in funcs) visitor[type] = funcs[type]\n return visitor\n}\n\nfunction skipThrough(node, st, c) { c(node, st) }\nfunction ignore(_node, _st, _c) {}\n\n// Node walkers.\n\nexport const base = {}\n\nbase.Program = base.BlockStatement = (node, st, c) => {\n for (let stmt of node.body)\n c(stmt, st, \"Statement\")\n}\nbase.Statement = skipThrough\nbase.EmptyStatement = ignore\nbase.ExpressionStatement = base.ParenthesizedExpression =\n (node, st, c) => c(node.expression, st, \"Expression\")\nbase.IfStatement = (node, st, c) => {\n c(node.test, st, \"Expression\")\n c(node.consequent, st, \"Statement\")\n if (node.alternate) c(node.alternate, st, \"Statement\")\n}\nbase.LabeledStatement = (node, st, c) => c(node.body, st, \"Statement\")\nbase.BreakStatement = base.ContinueStatement = ignore\nbase.WithStatement = (node, st, c) => {\n c(node.object, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.SwitchStatement = (node, st, c) => {\n c(node.discriminant, st, \"Expression\")\n for (let cs of node.cases) {\n if (cs.test) c(cs.test, st, \"Expression\")\n for (let cons of cs.consequent)\n c(cons, st, \"Statement\")\n }\n}\nbase.SwitchCase = (node, st, c) => {\n if (node.test) c(node.test, st, \"Expression\")\n for (let cons of node.consequent)\n c(cons, st, \"Statement\")\n}\nbase.ReturnStatement = base.YieldExpression = base.AwaitExpression = (node, st, c) => {\n if (node.argument) c(node.argument, st, \"Expression\")\n}\nbase.ThrowStatement = base.SpreadElement =\n (node, st, c) => c(node.argument, st, \"Expression\")\nbase.TryStatement = (node, st, c) => {\n c(node.block, st, \"Statement\")\n if (node.handler) c(node.handler, st)\n if (node.finalizer) c(node.finalizer, st, \"Statement\")\n}\nbase.CatchClause = (node, st, c) => {\n if (node.param) c(node.param, st, \"Pattern\")\n c(node.body, st, \"Statement\")\n}\nbase.WhileStatement = base.DoWhileStatement = (node, st, c) => {\n c(node.test, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.ForStatement = (node, st, c) => {\n if (node.init) c(node.init, st, \"ForInit\")\n if (node.test) c(node.test, st, \"Expression\")\n if (node.update) c(node.update, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.ForInStatement = base.ForOfStatement = (node, st, c) => {\n c(node.left, st, \"ForInit\")\n c(node.right, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.ForInit = (node, st, c) => {\n if (node.type === \"VariableDeclaration\") c(node, st)\n else c(node, st, \"Expression\")\n}\nbase.DebuggerStatement = ignore\n\nbase.FunctionDeclaration = (node, st, c) => c(node, st, \"Function\")\nbase.VariableDeclaration = (node, st, c) => {\n for (let decl of node.declarations)\n c(decl, st)\n}\nbase.VariableDeclarator = (node, st, c) => {\n c(node.id, st, \"Pattern\")\n if (node.init) c(node.init, st, \"Expression\")\n}\n\nbase.Function = (node, st, c) => {\n if (node.id) c(node.id, st, \"Pattern\")\n for (let param of node.params)\n c(param, st, \"Pattern\")\n c(node.body, st, node.expression ? \"Expression\" : \"Statement\")\n}\n\nbase.Pattern = (node, st, c) => {\n if (node.type === \"Identifier\")\n c(node, st, \"VariablePattern\")\n else if (node.type === \"MemberExpression\")\n c(node, st, \"MemberPattern\")\n else\n c(node, st)\n}\nbase.VariablePattern = ignore\nbase.MemberPattern = skipThrough\nbase.RestElement = (node, st, c) => c(node.argument, st, \"Pattern\")\nbase.ArrayPattern = (node, st, c) => {\n for (let elt of node.elements) {\n if (elt) c(elt, st, \"Pattern\")\n }\n}\nbase.ObjectPattern = (node, st, c) => {\n for (let prop of node.properties) {\n if (prop.type === \"Property\") {\n if (prop.computed) c(prop.key, st, \"Expression\")\n c(prop.value, st, \"Pattern\")\n } else if (prop.type === \"RestElement\") {\n c(prop.argument, st, \"Pattern\")\n }\n }\n}\n\nbase.Expression = skipThrough\nbase.ThisExpression = base.Super = base.MetaProperty = ignore\nbase.ArrayExpression = (node, st, c) => {\n for (let elt of node.elements) {\n if (elt) c(elt, st, \"Expression\")\n }\n}\nbase.ObjectExpression = (node, st, c) => {\n for (let prop of node.properties)\n c(prop, st)\n}\nbase.FunctionExpression = base.ArrowFunctionExpression = base.FunctionDeclaration\nbase.SequenceExpression = (node, st, c) => {\n for (let expr of node.expressions)\n c(expr, st, \"Expression\")\n}\nbase.TemplateLiteral = (node, st, c) => {\n for (let quasi of node.quasis)\n c(quasi, st)\n\n for (let expr of node.expressions)\n c(expr, st, \"Expression\")\n}\nbase.TemplateElement = ignore\nbase.UnaryExpression = base.UpdateExpression = (node, st, c) => {\n c(node.argument, st, \"Expression\")\n}\nbase.BinaryExpression = base.LogicalExpression = (node, st, c) => {\n c(node.left, st, \"Expression\")\n c(node.right, st, \"Expression\")\n}\nbase.AssignmentExpression = base.AssignmentPattern = (node, st, c) => {\n c(node.left, st, \"Pattern\")\n c(node.right, st, \"Expression\")\n}\nbase.ConditionalExpression = (node, st, c) => {\n c(node.test, st, \"Expression\")\n c(node.consequent, st, \"Expression\")\n c(node.alternate, st, \"Expression\")\n}\nbase.NewExpression = base.CallExpression = (node, st, c) => {\n c(node.callee, st, \"Expression\")\n if (node.arguments)\n for (let arg of node.arguments)\n c(arg, st, \"Expression\")\n}\nbase.MemberExpression = (node, st, c) => {\n c(node.object, st, \"Expression\")\n if (node.computed) c(node.property, st, \"Expression\")\n}\nbase.ExportNamedDeclaration = base.ExportDefaultDeclaration = (node, st, c) => {\n if (node.declaration)\n c(node.declaration, st, node.type === \"ExportNamedDeclaration\" || node.declaration.id ? \"Statement\" : \"Expression\")\n if (node.source) c(node.source, st, \"Expression\")\n}\nbase.ExportAllDeclaration = (node, st, c) => {\n c(node.source, st, \"Expression\")\n}\nbase.ImportDeclaration = (node, st, c) => {\n for (let spec of node.specifiers)\n c(spec, st)\n c(node.source, st, \"Expression\")\n}\nbase.ImportSpecifier = base.ImportDefaultSpecifier = base.ImportNamespaceSpecifier = base.Identifier = base.Literal = ignore\n\nbase.TaggedTemplateExpression = (node, st, c) => {\n c(node.tag, st, \"Expression\")\n c(node.quasi, st, \"Expression\")\n}\nbase.ClassDeclaration = base.ClassExpression = (node, st, c) => c(node, st, \"Class\")\nbase.Class = (node, st, c) => {\n if (node.id) c(node.id, st, \"Pattern\")\n if (node.superClass) c(node.superClass, st, \"Expression\")\n c(node.body, st)\n}\nbase.ClassBody = (node, st, c) => {\n for (let elt of node.body)\n c(elt, st)\n}\nbase.MethodDefinition = base.Property = (node, st, c) => {\n if (node.computed) c(node.key, st, \"Expression\")\n c(node.value, st, \"Expression\")\n}\n"],"names":["let","const"],"mappings":";;;;;;AAAA;;;;;;;;;;;;;;;;;;AAkBA,AAAO,SAAS,MAAM,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE;EACnE,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,IAAI;GACnC,EAAA,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,GAAG,QAAQ,CAAC,IAAI,EAAC;IACxD,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,KAAK,EAAE,EAAA,KAAK,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;GAC3B,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAC;CAC1B;;;;;AAKD,AAAO,SAAS,QAAQ,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE;EAC3DA,IAAI,SAAS,GAAG,GAAE;EAClB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,IAAI;GACnC,EAAA,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,GAAG,QAAQ,CAAC,IAAI,EAAC;IACxDA,IAAI,KAAK,GAAG,IAAI,KAAK,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,EAAC;IACpD,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,EAAA;IAC/B,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,KAAK,EAAE,EAAA,KAAK,CAAC,IAAI,EAAE,EAAE,IAAI,SAAS,EAAE,SAAS,EAAC,EAAA;IAClD,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,GAAG,GAAE,EAAA;GAC3B,EAAE,IAAI,EAAE,KAAK,EAAC;CAChB;;;;;;;AAOD,AAAO,SAAS,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE;EACnEA,IAAI,OAAO,GAAG,KAAK,GAAG,IAAI,CAAC,KAAK,EAAE,WAAW,IAAI,SAAS,CAAC,GAAG,WAAW,CACxE,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/B,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;GAC5C,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAC;CAC1B;;AAED,SAAS,QAAQ,CAAC,IAAI,EAAE;EACtB,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC1B,EAAA,OAAO,UAAA,IAAI,EAAC,SAAG,IAAI,KAAK,IAAI,GAAA,EAAA;OACzB,IAAI,CAAC,IAAI;IACZ,EAAA,OAAO,YAAG,SAAG,IAAI,GAAA,EAAA;;IAEjB,EAAA,OAAO,IAAI,EAAA;CACd;;AAED,IAAM,KAAK,GAAC,cACC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,MAAK,EAAE,CAAA;;;AAInE,AAAO,SAAS,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE;EACjE,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,IAAI;GACnC,EAAA,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;IAChC,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,CAAC,QAAQ,EAAE,EAAA,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE,IAAI,EAAC,EAAA;GACxC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAC;CAC1B;;;;AAID,AAAO,SAAS,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE;EAC/D,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpCA,IAAI,SAAS,GAAG,EAAE,CACjB,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;IAChCA,IAAI,KAAK,GAAG,IAAI,KAAK,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,EAAC;IACpD,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,EAAA;IAC/B,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,CAAC,QAAQ,EAAE,EAAA,QAAQ,CAAC,IAAI,EAAE,EAAE,IAAI,SAAS,EAAE,SAAS,EAAE,IAAI,EAAC,EAAA;IAC/D,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,GAAG,GAAE,EAAA;GAC3B,EAAE,IAAI,EAAE,KAAK,EAAC;CAChB;;;;;AAKD,AAAO,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EACrE,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpC,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI;IACF,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;MAC9BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;MAChC,IAAI,CAAC,KAAK,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,IAAI,KAAK;WACpC,GAAG,IAAI,IAAI,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC;QAClC,EAAA,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC,EAAA;MAChC,IAAI,CAAC,KAAK,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,KAAK;WACrC,GAAG,IAAI,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,GAAG,CAAC;UACjC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC;QAClB,EAAA,MAAM,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAA;KAC5B,EAAE,IAAI,EAAE,KAAK,EAAC;GAChB,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,YAAY,KAAK,EAAE,EAAA,OAAO,CAAC,EAAA;IAChC,MAAM,CAAC;GACR;CACF;;;;AAID,AAAO,SAAS,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EAClE,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpC,IAAI;IACF,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;MAC9BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;MAChC,IAAI,IAAI,CAAC,KAAK,GAAG,GAAG,IAAI,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,EAAA,MAAM,EAAA;MAC9C,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;MAC9B,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAA,MAAM,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAA;KAChD,EAAE,IAAI,EAAE,KAAK,EAAC;GAChB,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,YAAY,KAAK,EAAE,EAAA,OAAO,CAAC,EAAA;IAChC,MAAM,CAAC;GACR;CACF;;;AAGD,AAAO,SAAS,aAAa,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EACjE,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpC,IAAI;IACF,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;MAC9B,IAAI,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,EAAA,MAAM,EAAA;MAC1BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;MAChC,IAAI,IAAI,CAAC,KAAK,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAA,MAAM,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAA;MACpE,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;KAC/B,EAAE,IAAI,EAAE,KAAK,EAAC;GAChB,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,YAAY,KAAK,EAAE,EAAA,OAAO,CAAC,EAAA;IAChC,MAAM,CAAC;GACR;CACF;;;AAGD,AAAO,SAAS,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EAClE,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpCA,IAAI,GAAG,CACN,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/B,IAAI,IAAI,CAAC,KAAK,GAAG,GAAG,EAAE,EAAA,MAAM,EAAA;IAC5BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;IAChC,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC;MAC1E,EAAA,GAAG,GAAG,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;IAC3B,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;GAC/B,EAAE,IAAI,EAAE,KAAK,EAAC;EACf,OAAO,GAAG;CACX;;;AAGDC,IAAM,MAAM,GAAG,MAAM,CAAC,MAAM,IAAI,SAAS,KAAK,EAAE;EAC9C,SAAS,IAAI,GAAG,EAAE;EAClB,IAAI,CAAC,SAAS,GAAG,MAAK;EACtB,OAAO,IAAI,IAAI;EAChB;;;;AAID,AAAO,SAAS,IAAI,CAAC,KAAK,EAAE,WAAW,EAAE;EACvCD,IAAI,OAAO,GAAG,MAAM,CAAC,WAAW,IAAI,IAAI,EAAC;EACzC,KAAKA,IAAI,IAAI,IAAI,KAAK,EAAE,EAAA,OAAO,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,IAAI,EAAC,EAAA;EACnD,OAAO,OAAO;CACf;;AAED,SAAS,WAAW,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC,EAAE;AACjD,SAAS,MAAM,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE;;;;AAIlC,AAAOC,IAAM,IAAI,GAAG,GAAE;;AAEtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,cAAc,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjD,KAAa,kBAAI,IAAI,CAAC,IAAI,yBAAA;IAArB;IAAAD,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;GAAA;EAC3B;AACD,IAAI,CAAC,SAAS,GAAG,YAAW;AAC5B,IAAI,CAAC,cAAc,GAAG,OAAM;AAC5B,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,uBAAuB;EACrD,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,CAAC,IAAA;AACvD,IAAI,CAAC,WAAW,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC/B,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,WAAW,EAAC;EACnC,IAAI,IAAI,CAAC,SAAS,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,WAAW,EAAC,EAAA;EACvD;AACD,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,CAAC,IAAA;AACtE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,iBAAiB,GAAG,OAAM;AACrD,IAAI,CAAC,aAAa,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACnC,CAAC,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,EAAE,YAAY,EAAC;EACtC,KAAW,kBAAI,IAAI,CAAC,KAAK,yBAAA,EAAE;IAAtBA,IAAI,EAAE;;IACT,IAAI,EAAE,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;IACzC,KAAa,sBAAI,EAAE,CAAC,UAAU,+BAAA;MAAzB;MAAAA,IAAI,IAAI;;MACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;KAAA;GAC3B;EACF;AACD,IAAI,CAAC,UAAU,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC9B,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC7C,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA;IAA3B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;GAAA;EAC3B;AACD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjF,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACtD;AACD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,aAAa;EACtC,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,CAAC,IAAA;AACrD,IAAI,CAAC,YAAY,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAChC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B,IAAI,IAAI,CAAC,OAAO,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,EAAC,EAAA;EACrC,IAAI,IAAI,CAAC,SAAS,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,WAAW,EAAC,EAAA;EACvD;AACD,IAAI,CAAC,WAAW,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC/B,IAAI,IAAI,CAAC,KAAK,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EAC5C,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC1D,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,YAAY,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAChC,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EAC1C,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC7C,IAAI,IAAI,CAAC,MAAM,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACjD,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,cAAc,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACxD,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,EAAC;EAC3B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAC/B,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,OAAO,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC3B,IAAI,IAAI,CAAC,IAAI,KAAK,qBAAqB,EAAE,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;OAC/C,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC/B;AACD,IAAI,CAAC,iBAAiB,GAAG,OAAM;;AAE/B,IAAI,CAAC,mBAAmB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,IAAA;AACnE,IAAI,CAAC,mBAAmB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACvC,KAAa,kBAAI,IAAI,CAAC,YAAY,yBAAA;IAA7B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC;GAAA;EACd;AACD,IAAI,CAAC,kBAAkB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACtC,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAC;EACzB,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC9C;;AAED,IAAI,CAAC,QAAQ,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC5B,IAAI,IAAI,CAAC,EAAE,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EACtC,KAAc,kBAAI,IAAI,CAAC,MAAM,yBAAA;IAAxB;IAAAA,IAAI,KAAK;;IACZ,CAAC,CAAC,KAAK,EAAE,EAAE,EAAE,SAAS,EAAC;GAAA;EACzB,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,UAAU,GAAG,YAAY,GAAG,WAAW,EAAC;EAC/D;;AAED,IAAI,CAAC,OAAO,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC3B,IAAI,IAAI,CAAC,IAAI,KAAK,YAAY;IAC5B,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,iBAAiB,EAAC,EAAA;OAC3B,IAAI,IAAI,CAAC,IAAI,KAAK,kBAAkB;IACvC,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,eAAe,EAAC,EAAA;;IAE5B,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;EACd;AACD,IAAI,CAAC,eAAe,GAAG,OAAM;AAC7B,IAAI,CAAC,aAAa,GAAG,YAAW;AAChC,IAAI,CAAC,WAAW,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,SAAS,CAAC,IAAA;AACnE,IAAI,CAAC,YAAY,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAChC,KAAY,kBAAI,IAAI,CAAC,QAAQ,yBAAA,EAAE;IAA1BA,IAAI,GAAG;;IACV,IAAI,GAAG,EAAE,EAAA,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;GAC/B;EACF;AACD,IAAI,CAAC,aAAa,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjC,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA,EAAE;IAA7BA,IAAI,IAAI;;IACX,IAAI,IAAI,CAAC,IAAI,KAAK,UAAU,EAAE;MAC5B,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;MAChD,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,SAAS,EAAC;KAC7B,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,aAAa,EAAE;MACtC,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,SAAS,EAAC;KAChC;GACF;EACF;;AAED,IAAI,CAAC,UAAU,GAAG,YAAW;AAC7B,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,YAAY,GAAG,OAAM;AAC7D,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACnC,KAAY,kBAAI,IAAI,CAAC,QAAQ,yBAAA,EAAE;IAA1BA,IAAI,GAAG;;IACV,IAAI,GAAG,EAAE,EAAA,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;GAClC;EACF;AACD,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACpC,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA;IAA3B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC;GAAA;EACd;AACD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,uBAAuB,GAAG,IAAI,CAAC,oBAAmB;AACjF,IAAI,CAAC,kBAAkB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACtC,KAAa,kBAAI,IAAI,CAAC,WAAW,yBAAA;IAA5B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;GAAA;EAC5B;AACD,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACnC,KAAc,kBAAI,IAAI,CAAC,MAAM,yBAAA;IAAxB;IAAAA,IAAI,KAAK;;IACZ,CAAC,CAAC,KAAK,EAAE,EAAE,EAAC;GAAA;;EAEd,KAAa,sBAAI,IAAI,CAAC,WAAW,+BAAA;IAA5B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;GAAA;EAC5B;AACD,IAAI,CAAC,eAAe,GAAG,OAAM;AAC7B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC3D,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,EAAC;EACnC;AACD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,iBAAiB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC7D,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC;AACD,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,iBAAiB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjE,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,EAAC;EAC3B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC;AACD,IAAI,CAAC,qBAAqB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACzC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,EAAC;EACpC,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,YAAY,EAAC;EACpC;AACD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,cAAc,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACvD,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC,IAAI,IAAI,CAAC,SAAS;IAChB,EAAA,KAAY,kBAAI,IAAI,CAAC,SAAS,yBAAA;MAAzB;QAAAA,IAAI,GAAG;;QACV,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC;OAAA,EAAA;EAC7B;AACD,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACpC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACtD;AACD,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC,wBAAwB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC1E,IAAI,IAAI,CAAC,WAAW;IAClB,EAAA,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,EAAE,IAAI,CAAC,IAAI,KAAK,wBAAwB,IAAI,IAAI,CAAC,WAAW,CAAC,EAAE,GAAG,WAAW,GAAG,YAAY,EAAC,EAAA;EACrH,IAAI,IAAI,CAAC,MAAM,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAClD;AACD,IAAI,CAAC,oBAAoB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACxC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EACjC;AACD,IAAI,CAAC,iBAAiB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACrC,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA;IAA3B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC;GAAA;EACb,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EACjC;AACD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC,wBAAwB,GAAG,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,OAAO,GAAG,OAAM;;AAE5H,IAAI,CAAC,wBAAwB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC5C,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC;EAC7B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC;AACD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,IAAA;AACpF,IAAI,CAAC,KAAK,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACzB,IAAI,IAAI,CAAC,EAAE,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EACtC,IAAI,IAAI,CAAC,UAAU,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACzD,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAC;EACjB;AACD,IAAI,CAAC,SAAS,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC7B,KAAY,kBAAI,IAAI,CAAC,IAAI,yBAAA;IAApB;IAAAA,IAAI,GAAG;;IACV,CAAC,CAAC,GAAG,EAAE,EAAE,EAAC;GAAA;EACb;AACD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,QAAQ,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACpD,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAChD,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;CAChC;;;;;;;;;;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/themes/piratecare/node_modules/acorn-walk/dist/walk.mjs b/themes/piratecare/node_modules/acorn-walk/dist/walk.mjs new file mode 100644 index 0000000..65b23ed --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/dist/walk.mjs @@ -0,0 +1,441 @@ +// AST walker module for Mozilla Parser API compatible trees + +// A simple walk is one where you simply specify callbacks to be +// called on specific nodes. The last two arguments are optional. A +// simple use would be +// +// walk.simple(myTree, { +// Expression: function(node) { ... } +// }); +// +// to do something with all expressions. All Parser API node types +// can be used to identify node types, as well as Expression and +// Statement, which denote categories of nodes. +// +// The base argument can be used to pass a custom (recursive) +// walker, and state can be used to give this walked an initial +// state. + +function simple(node, visitors, baseVisitor, state, override) { + if (!baseVisitor) { baseVisitor = base + ; }(function c(node, st, override) { + var type = override || node.type, found = visitors[type]; + baseVisitor[type](node, st, c); + if (found) { found(node, st); } + })(node, state, override); +} + +// An ancestor walk keeps an array of ancestor nodes (including the +// current node) and passes them to the callback as third parameter +// (and also as state parameter when no other state is present). +function ancestor(node, visitors, baseVisitor, state) { + var ancestors = []; + if (!baseVisitor) { baseVisitor = base + ; }(function c(node, st, override) { + var type = override || node.type, found = visitors[type]; + var isNew = node !== ancestors[ancestors.length - 1]; + if (isNew) { ancestors.push(node); } + baseVisitor[type](node, st, c); + if (found) { found(node, st || ancestors, ancestors); } + if (isNew) { ancestors.pop(); } + })(node, state); +} + +// A recursive walk is one where your functions override the default +// walkers. They can modify and replace the state parameter that's +// threaded through the walk, and can opt how and whether to walk +// their child nodes (by calling their third argument on these +// nodes). +function recursive(node, state, funcs, baseVisitor, override) { + var visitor = funcs ? make(funcs, baseVisitor || undefined) : baseVisitor + ;(function c(node, st, override) { + visitor[override || node.type](node, st, c); + })(node, state, override); +} + +function makeTest(test) { + if (typeof test === "string") + { return function (type) { return type === test; } } + else if (!test) + { return function () { return true; } } + else + { return test } +} + +var Found = function Found(node, state) { this.node = node; this.state = state; }; + +// A full walk triggers the callback on each node +function full(node, callback, baseVisitor, state, override) { + if (!baseVisitor) { baseVisitor = base + ; }(function c(node, st, override) { + var type = override || node.type; + baseVisitor[type](node, st, c); + if (!override) { callback(node, st, type); } + })(node, state, override); +} + +// An fullAncestor walk is like an ancestor walk, but triggers +// the callback on each node +function fullAncestor(node, callback, baseVisitor, state) { + if (!baseVisitor) { baseVisitor = base; } + var ancestors = [] + ;(function c(node, st, override) { + var type = override || node.type; + var isNew = node !== ancestors[ancestors.length - 1]; + if (isNew) { ancestors.push(node); } + baseVisitor[type](node, st, c); + if (!override) { callback(node, st || ancestors, ancestors, type); } + if (isNew) { ancestors.pop(); } + })(node, state); +} + +// Find a node with a given start, end, and type (all are optional, +// null can be used as wildcard). Returns a {node, state} object, or +// undefined when it doesn't find a matching node. +function findNodeAt(node, start, end, test, baseVisitor, state) { + if (!baseVisitor) { baseVisitor = base; } + test = makeTest(test); + try { + (function c(node, st, override) { + var type = override || node.type; + if ((start == null || node.start <= start) && + (end == null || node.end >= end)) + { baseVisitor[type](node, st, c); } + if ((start == null || node.start === start) && + (end == null || node.end === end) && + test(type, node)) + { throw new Found(node, st) } + })(node, state); + } catch (e) { + if (e instanceof Found) { return e } + throw e + } +} + +// Find the innermost node of a given type that contains the given +// position. Interface similar to findNodeAt. +function findNodeAround(node, pos, test, baseVisitor, state) { + test = makeTest(test); + if (!baseVisitor) { baseVisitor = base; } + try { + (function c(node, st, override) { + var type = override || node.type; + if (node.start > pos || node.end < pos) { return } + baseVisitor[type](node, st, c); + if (test(type, node)) { throw new Found(node, st) } + })(node, state); + } catch (e) { + if (e instanceof Found) { return e } + throw e + } +} + +// Find the outermost matching node after a given position. +function findNodeAfter(node, pos, test, baseVisitor, state) { + test = makeTest(test); + if (!baseVisitor) { baseVisitor = base; } + try { + (function c(node, st, override) { + if (node.end < pos) { return } + var type = override || node.type; + if (node.start >= pos && test(type, node)) { throw new Found(node, st) } + baseVisitor[type](node, st, c); + })(node, state); + } catch (e) { + if (e instanceof Found) { return e } + throw e + } +} + +// Find the outermost matching node before a given position. +function findNodeBefore(node, pos, test, baseVisitor, state) { + test = makeTest(test); + if (!baseVisitor) { baseVisitor = base; } + var max + ;(function c(node, st, override) { + if (node.start > pos) { return } + var type = override || node.type; + if (node.end <= pos && (!max || max.node.end < node.end) && test(type, node)) + { max = new Found(node, st); } + baseVisitor[type](node, st, c); + })(node, state); + return max +} + +// Fallback to an Object.create polyfill for older environments. +var create = Object.create || function(proto) { + function Ctor() {} + Ctor.prototype = proto; + return new Ctor +}; + +// Used to create a custom walker. Will fill in all missing node +// type properties with the defaults. +function make(funcs, baseVisitor) { + var visitor = create(baseVisitor || base); + for (var type in funcs) { visitor[type] = funcs[type]; } + return visitor +} + +function skipThrough(node, st, c) { c(node, st); } +function ignore(_node, _st, _c) {} + +// Node walkers. + +var base = {}; + +base.Program = base.BlockStatement = function (node, st, c) { + for (var i = 0, list = node.body; i < list.length; i += 1) + { + var stmt = list[i]; + + c(stmt, st, "Statement"); + } +}; +base.Statement = skipThrough; +base.EmptyStatement = ignore; +base.ExpressionStatement = base.ParenthesizedExpression = + function (node, st, c) { return c(node.expression, st, "Expression"); }; +base.IfStatement = function (node, st, c) { + c(node.test, st, "Expression"); + c(node.consequent, st, "Statement"); + if (node.alternate) { c(node.alternate, st, "Statement"); } +}; +base.LabeledStatement = function (node, st, c) { return c(node.body, st, "Statement"); }; +base.BreakStatement = base.ContinueStatement = ignore; +base.WithStatement = function (node, st, c) { + c(node.object, st, "Expression"); + c(node.body, st, "Statement"); +}; +base.SwitchStatement = function (node, st, c) { + c(node.discriminant, st, "Expression"); + for (var i$1 = 0, list$1 = node.cases; i$1 < list$1.length; i$1 += 1) { + var cs = list$1[i$1]; + + if (cs.test) { c(cs.test, st, "Expression"); } + for (var i = 0, list = cs.consequent; i < list.length; i += 1) + { + var cons = list[i]; + + c(cons, st, "Statement"); + } + } +}; +base.SwitchCase = function (node, st, c) { + if (node.test) { c(node.test, st, "Expression"); } + for (var i = 0, list = node.consequent; i < list.length; i += 1) + { + var cons = list[i]; + + c(cons, st, "Statement"); + } +}; +base.ReturnStatement = base.YieldExpression = base.AwaitExpression = function (node, st, c) { + if (node.argument) { c(node.argument, st, "Expression"); } +}; +base.ThrowStatement = base.SpreadElement = + function (node, st, c) { return c(node.argument, st, "Expression"); }; +base.TryStatement = function (node, st, c) { + c(node.block, st, "Statement"); + if (node.handler) { c(node.handler, st); } + if (node.finalizer) { c(node.finalizer, st, "Statement"); } +}; +base.CatchClause = function (node, st, c) { + if (node.param) { c(node.param, st, "Pattern"); } + c(node.body, st, "Statement"); +}; +base.WhileStatement = base.DoWhileStatement = function (node, st, c) { + c(node.test, st, "Expression"); + c(node.body, st, "Statement"); +}; +base.ForStatement = function (node, st, c) { + if (node.init) { c(node.init, st, "ForInit"); } + if (node.test) { c(node.test, st, "Expression"); } + if (node.update) { c(node.update, st, "Expression"); } + c(node.body, st, "Statement"); +}; +base.ForInStatement = base.ForOfStatement = function (node, st, c) { + c(node.left, st, "ForInit"); + c(node.right, st, "Expression"); + c(node.body, st, "Statement"); +}; +base.ForInit = function (node, st, c) { + if (node.type === "VariableDeclaration") { c(node, st); } + else { c(node, st, "Expression"); } +}; +base.DebuggerStatement = ignore; + +base.FunctionDeclaration = function (node, st, c) { return c(node, st, "Function"); }; +base.VariableDeclaration = function (node, st, c) { + for (var i = 0, list = node.declarations; i < list.length; i += 1) + { + var decl = list[i]; + + c(decl, st); + } +}; +base.VariableDeclarator = function (node, st, c) { + c(node.id, st, "Pattern"); + if (node.init) { c(node.init, st, "Expression"); } +}; + +base.Function = function (node, st, c) { + if (node.id) { c(node.id, st, "Pattern"); } + for (var i = 0, list = node.params; i < list.length; i += 1) + { + var param = list[i]; + + c(param, st, "Pattern"); + } + c(node.body, st, node.expression ? "Expression" : "Statement"); +}; + +base.Pattern = function (node, st, c) { + if (node.type === "Identifier") + { c(node, st, "VariablePattern"); } + else if (node.type === "MemberExpression") + { c(node, st, "MemberPattern"); } + else + { c(node, st); } +}; +base.VariablePattern = ignore; +base.MemberPattern = skipThrough; +base.RestElement = function (node, st, c) { return c(node.argument, st, "Pattern"); }; +base.ArrayPattern = function (node, st, c) { + for (var i = 0, list = node.elements; i < list.length; i += 1) { + var elt = list[i]; + + if (elt) { c(elt, st, "Pattern"); } + } +}; +base.ObjectPattern = function (node, st, c) { + for (var i = 0, list = node.properties; i < list.length; i += 1) { + var prop = list[i]; + + if (prop.type === "Property") { + if (prop.computed) { c(prop.key, st, "Expression"); } + c(prop.value, st, "Pattern"); + } else if (prop.type === "RestElement") { + c(prop.argument, st, "Pattern"); + } + } +}; + +base.Expression = skipThrough; +base.ThisExpression = base.Super = base.MetaProperty = ignore; +base.ArrayExpression = function (node, st, c) { + for (var i = 0, list = node.elements; i < list.length; i += 1) { + var elt = list[i]; + + if (elt) { c(elt, st, "Expression"); } + } +}; +base.ObjectExpression = function (node, st, c) { + for (var i = 0, list = node.properties; i < list.length; i += 1) + { + var prop = list[i]; + + c(prop, st); + } +}; +base.FunctionExpression = base.ArrowFunctionExpression = base.FunctionDeclaration; +base.SequenceExpression = function (node, st, c) { + for (var i = 0, list = node.expressions; i < list.length; i += 1) + { + var expr = list[i]; + + c(expr, st, "Expression"); + } +}; +base.TemplateLiteral = function (node, st, c) { + for (var i = 0, list = node.quasis; i < list.length; i += 1) + { + var quasi = list[i]; + + c(quasi, st); + } + + for (var i$1 = 0, list$1 = node.expressions; i$1 < list$1.length; i$1 += 1) + { + var expr = list$1[i$1]; + + c(expr, st, "Expression"); + } +}; +base.TemplateElement = ignore; +base.UnaryExpression = base.UpdateExpression = function (node, st, c) { + c(node.argument, st, "Expression"); +}; +base.BinaryExpression = base.LogicalExpression = function (node, st, c) { + c(node.left, st, "Expression"); + c(node.right, st, "Expression"); +}; +base.AssignmentExpression = base.AssignmentPattern = function (node, st, c) { + c(node.left, st, "Pattern"); + c(node.right, st, "Expression"); +}; +base.ConditionalExpression = function (node, st, c) { + c(node.test, st, "Expression"); + c(node.consequent, st, "Expression"); + c(node.alternate, st, "Expression"); +}; +base.NewExpression = base.CallExpression = function (node, st, c) { + c(node.callee, st, "Expression"); + if (node.arguments) + { for (var i = 0, list = node.arguments; i < list.length; i += 1) + { + var arg = list[i]; + + c(arg, st, "Expression"); + } } +}; +base.MemberExpression = function (node, st, c) { + c(node.object, st, "Expression"); + if (node.computed) { c(node.property, st, "Expression"); } +}; +base.ExportNamedDeclaration = base.ExportDefaultDeclaration = function (node, st, c) { + if (node.declaration) + { c(node.declaration, st, node.type === "ExportNamedDeclaration" || node.declaration.id ? "Statement" : "Expression"); } + if (node.source) { c(node.source, st, "Expression"); } +}; +base.ExportAllDeclaration = function (node, st, c) { + c(node.source, st, "Expression"); +}; +base.ImportDeclaration = function (node, st, c) { + for (var i = 0, list = node.specifiers; i < list.length; i += 1) + { + var spec = list[i]; + + c(spec, st); + } + c(node.source, st, "Expression"); +}; +base.ImportExpression = function (node, st, c) { + c(node.source, st, "Expression"); +}; +base.ImportSpecifier = base.ImportDefaultSpecifier = base.ImportNamespaceSpecifier = base.Identifier = base.Literal = ignore; + +base.TaggedTemplateExpression = function (node, st, c) { + c(node.tag, st, "Expression"); + c(node.quasi, st, "Expression"); +}; +base.ClassDeclaration = base.ClassExpression = function (node, st, c) { return c(node, st, "Class"); }; +base.Class = function (node, st, c) { + if (node.id) { c(node.id, st, "Pattern"); } + if (node.superClass) { c(node.superClass, st, "Expression"); } + c(node.body, st); +}; +base.ClassBody = function (node, st, c) { + for (var i = 0, list = node.body; i < list.length; i += 1) + { + var elt = list[i]; + + c(elt, st); + } +}; +base.MethodDefinition = base.Property = function (node, st, c) { + if (node.computed) { c(node.key, st, "Expression"); } + c(node.value, st, "Expression"); +}; + +export { ancestor, base, findNodeAfter, findNodeAround, findNodeAt, findNodeBefore, full, fullAncestor, make, recursive, simple }; diff --git a/themes/piratecare/node_modules/acorn-walk/dist/walk.mjs.map b/themes/piratecare/node_modules/acorn-walk/dist/walk.mjs.map new file mode 100644 index 0000000..2a94219 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/dist/walk.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"walk.mjs","sources":["../src/index.js"],"sourcesContent":["// AST walker module for Mozilla Parser API compatible trees\n\n// A simple walk is one where you simply specify callbacks to be\n// called on specific nodes. The last two arguments are optional. A\n// simple use would be\n//\n// walk.simple(myTree, {\n// Expression: function(node) { ... }\n// });\n//\n// to do something with all expressions. All Parser API node types\n// can be used to identify node types, as well as Expression and\n// Statement, which denote categories of nodes.\n//\n// The base argument can be used to pass a custom (recursive)\n// walker, and state can be used to give this walked an initial\n// state.\n\nexport function simple(node, visitors, baseVisitor, state, override) {\n if (!baseVisitor) baseVisitor = base\n ;(function c(node, st, override) {\n let type = override || node.type, found = visitors[type]\n baseVisitor[type](node, st, c)\n if (found) found(node, st)\n })(node, state, override)\n}\n\n// An ancestor walk keeps an array of ancestor nodes (including the\n// current node) and passes them to the callback as third parameter\n// (and also as state parameter when no other state is present).\nexport function ancestor(node, visitors, baseVisitor, state) {\n let ancestors = []\n if (!baseVisitor) baseVisitor = base\n ;(function c(node, st, override) {\n let type = override || node.type, found = visitors[type]\n let isNew = node !== ancestors[ancestors.length - 1]\n if (isNew) ancestors.push(node)\n baseVisitor[type](node, st, c)\n if (found) found(node, st || ancestors, ancestors)\n if (isNew) ancestors.pop()\n })(node, state)\n}\n\n// A recursive walk is one where your functions override the default\n// walkers. They can modify and replace the state parameter that's\n// threaded through the walk, and can opt how and whether to walk\n// their child nodes (by calling their third argument on these\n// nodes).\nexport function recursive(node, state, funcs, baseVisitor, override) {\n let visitor = funcs ? make(funcs, baseVisitor || undefined) : baseVisitor\n ;(function c(node, st, override) {\n visitor[override || node.type](node, st, c)\n })(node, state, override)\n}\n\nfunction makeTest(test) {\n if (typeof test === \"string\")\n return type => type === test\n else if (!test)\n return () => true\n else\n return test\n}\n\nclass Found {\n constructor(node, state) { this.node = node; this.state = state }\n}\n\n// A full walk triggers the callback on each node\nexport function full(node, callback, baseVisitor, state, override) {\n if (!baseVisitor) baseVisitor = base\n ;(function c(node, st, override) {\n let type = override || node.type\n baseVisitor[type](node, st, c)\n if (!override) callback(node, st, type)\n })(node, state, override)\n}\n\n// An fullAncestor walk is like an ancestor walk, but triggers\n// the callback on each node\nexport function fullAncestor(node, callback, baseVisitor, state) {\n if (!baseVisitor) baseVisitor = base\n let ancestors = []\n ;(function c(node, st, override) {\n let type = override || node.type\n let isNew = node !== ancestors[ancestors.length - 1]\n if (isNew) ancestors.push(node)\n baseVisitor[type](node, st, c)\n if (!override) callback(node, st || ancestors, ancestors, type)\n if (isNew) ancestors.pop()\n })(node, state)\n}\n\n// Find a node with a given start, end, and type (all are optional,\n// null can be used as wildcard). Returns a {node, state} object, or\n// undefined when it doesn't find a matching node.\nexport function findNodeAt(node, start, end, test, baseVisitor, state) {\n if (!baseVisitor) baseVisitor = base\n test = makeTest(test)\n try {\n (function c(node, st, override) {\n let type = override || node.type\n if ((start == null || node.start <= start) &&\n (end == null || node.end >= end))\n baseVisitor[type](node, st, c)\n if ((start == null || node.start === start) &&\n (end == null || node.end === end) &&\n test(type, node))\n throw new Found(node, st)\n })(node, state)\n } catch (e) {\n if (e instanceof Found) return e\n throw e\n }\n}\n\n// Find the innermost node of a given type that contains the given\n// position. Interface similar to findNodeAt.\nexport function findNodeAround(node, pos, test, baseVisitor, state) {\n test = makeTest(test)\n if (!baseVisitor) baseVisitor = base\n try {\n (function c(node, st, override) {\n let type = override || node.type\n if (node.start > pos || node.end < pos) return\n baseVisitor[type](node, st, c)\n if (test(type, node)) throw new Found(node, st)\n })(node, state)\n } catch (e) {\n if (e instanceof Found) return e\n throw e\n }\n}\n\n// Find the outermost matching node after a given position.\nexport function findNodeAfter(node, pos, test, baseVisitor, state) {\n test = makeTest(test)\n if (!baseVisitor) baseVisitor = base\n try {\n (function c(node, st, override) {\n if (node.end < pos) return\n let type = override || node.type\n if (node.start >= pos && test(type, node)) throw new Found(node, st)\n baseVisitor[type](node, st, c)\n })(node, state)\n } catch (e) {\n if (e instanceof Found) return e\n throw e\n }\n}\n\n// Find the outermost matching node before a given position.\nexport function findNodeBefore(node, pos, test, baseVisitor, state) {\n test = makeTest(test)\n if (!baseVisitor) baseVisitor = base\n let max\n ;(function c(node, st, override) {\n if (node.start > pos) return\n let type = override || node.type\n if (node.end <= pos && (!max || max.node.end < node.end) && test(type, node))\n max = new Found(node, st)\n baseVisitor[type](node, st, c)\n })(node, state)\n return max\n}\n\n// Fallback to an Object.create polyfill for older environments.\nconst create = Object.create || function(proto) {\n function Ctor() {}\n Ctor.prototype = proto\n return new Ctor\n}\n\n// Used to create a custom walker. Will fill in all missing node\n// type properties with the defaults.\nexport function make(funcs, baseVisitor) {\n let visitor = create(baseVisitor || base)\n for (let type in funcs) visitor[type] = funcs[type]\n return visitor\n}\n\nfunction skipThrough(node, st, c) { c(node, st) }\nfunction ignore(_node, _st, _c) {}\n\n// Node walkers.\n\nexport const base = {}\n\nbase.Program = base.BlockStatement = (node, st, c) => {\n for (let stmt of node.body)\n c(stmt, st, \"Statement\")\n}\nbase.Statement = skipThrough\nbase.EmptyStatement = ignore\nbase.ExpressionStatement = base.ParenthesizedExpression =\n (node, st, c) => c(node.expression, st, \"Expression\")\nbase.IfStatement = (node, st, c) => {\n c(node.test, st, \"Expression\")\n c(node.consequent, st, \"Statement\")\n if (node.alternate) c(node.alternate, st, \"Statement\")\n}\nbase.LabeledStatement = (node, st, c) => c(node.body, st, \"Statement\")\nbase.BreakStatement = base.ContinueStatement = ignore\nbase.WithStatement = (node, st, c) => {\n c(node.object, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.SwitchStatement = (node, st, c) => {\n c(node.discriminant, st, \"Expression\")\n for (let cs of node.cases) {\n if (cs.test) c(cs.test, st, \"Expression\")\n for (let cons of cs.consequent)\n c(cons, st, \"Statement\")\n }\n}\nbase.SwitchCase = (node, st, c) => {\n if (node.test) c(node.test, st, \"Expression\")\n for (let cons of node.consequent)\n c(cons, st, \"Statement\")\n}\nbase.ReturnStatement = base.YieldExpression = base.AwaitExpression = (node, st, c) => {\n if (node.argument) c(node.argument, st, \"Expression\")\n}\nbase.ThrowStatement = base.SpreadElement =\n (node, st, c) => c(node.argument, st, \"Expression\")\nbase.TryStatement = (node, st, c) => {\n c(node.block, st, \"Statement\")\n if (node.handler) c(node.handler, st)\n if (node.finalizer) c(node.finalizer, st, \"Statement\")\n}\nbase.CatchClause = (node, st, c) => {\n if (node.param) c(node.param, st, \"Pattern\")\n c(node.body, st, \"Statement\")\n}\nbase.WhileStatement = base.DoWhileStatement = (node, st, c) => {\n c(node.test, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.ForStatement = (node, st, c) => {\n if (node.init) c(node.init, st, \"ForInit\")\n if (node.test) c(node.test, st, \"Expression\")\n if (node.update) c(node.update, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.ForInStatement = base.ForOfStatement = (node, st, c) => {\n c(node.left, st, \"ForInit\")\n c(node.right, st, \"Expression\")\n c(node.body, st, \"Statement\")\n}\nbase.ForInit = (node, st, c) => {\n if (node.type === \"VariableDeclaration\") c(node, st)\n else c(node, st, \"Expression\")\n}\nbase.DebuggerStatement = ignore\n\nbase.FunctionDeclaration = (node, st, c) => c(node, st, \"Function\")\nbase.VariableDeclaration = (node, st, c) => {\n for (let decl of node.declarations)\n c(decl, st)\n}\nbase.VariableDeclarator = (node, st, c) => {\n c(node.id, st, \"Pattern\")\n if (node.init) c(node.init, st, \"Expression\")\n}\n\nbase.Function = (node, st, c) => {\n if (node.id) c(node.id, st, \"Pattern\")\n for (let param of node.params)\n c(param, st, \"Pattern\")\n c(node.body, st, node.expression ? \"Expression\" : \"Statement\")\n}\n\nbase.Pattern = (node, st, c) => {\n if (node.type === \"Identifier\")\n c(node, st, \"VariablePattern\")\n else if (node.type === \"MemberExpression\")\n c(node, st, \"MemberPattern\")\n else\n c(node, st)\n}\nbase.VariablePattern = ignore\nbase.MemberPattern = skipThrough\nbase.RestElement = (node, st, c) => c(node.argument, st, \"Pattern\")\nbase.ArrayPattern = (node, st, c) => {\n for (let elt of node.elements) {\n if (elt) c(elt, st, \"Pattern\")\n }\n}\nbase.ObjectPattern = (node, st, c) => {\n for (let prop of node.properties) {\n if (prop.type === \"Property\") {\n if (prop.computed) c(prop.key, st, \"Expression\")\n c(prop.value, st, \"Pattern\")\n } else if (prop.type === \"RestElement\") {\n c(prop.argument, st, \"Pattern\")\n }\n }\n}\n\nbase.Expression = skipThrough\nbase.ThisExpression = base.Super = base.MetaProperty = ignore\nbase.ArrayExpression = (node, st, c) => {\n for (let elt of node.elements) {\n if (elt) c(elt, st, \"Expression\")\n }\n}\nbase.ObjectExpression = (node, st, c) => {\n for (let prop of node.properties)\n c(prop, st)\n}\nbase.FunctionExpression = base.ArrowFunctionExpression = base.FunctionDeclaration\nbase.SequenceExpression = (node, st, c) => {\n for (let expr of node.expressions)\n c(expr, st, \"Expression\")\n}\nbase.TemplateLiteral = (node, st, c) => {\n for (let quasi of node.quasis)\n c(quasi, st)\n\n for (let expr of node.expressions)\n c(expr, st, \"Expression\")\n}\nbase.TemplateElement = ignore\nbase.UnaryExpression = base.UpdateExpression = (node, st, c) => {\n c(node.argument, st, \"Expression\")\n}\nbase.BinaryExpression = base.LogicalExpression = (node, st, c) => {\n c(node.left, st, \"Expression\")\n c(node.right, st, \"Expression\")\n}\nbase.AssignmentExpression = base.AssignmentPattern = (node, st, c) => {\n c(node.left, st, \"Pattern\")\n c(node.right, st, \"Expression\")\n}\nbase.ConditionalExpression = (node, st, c) => {\n c(node.test, st, \"Expression\")\n c(node.consequent, st, \"Expression\")\n c(node.alternate, st, \"Expression\")\n}\nbase.NewExpression = base.CallExpression = (node, st, c) => {\n c(node.callee, st, \"Expression\")\n if (node.arguments)\n for (let arg of node.arguments)\n c(arg, st, \"Expression\")\n}\nbase.MemberExpression = (node, st, c) => {\n c(node.object, st, \"Expression\")\n if (node.computed) c(node.property, st, \"Expression\")\n}\nbase.ExportNamedDeclaration = base.ExportDefaultDeclaration = (node, st, c) => {\n if (node.declaration)\n c(node.declaration, st, node.type === \"ExportNamedDeclaration\" || node.declaration.id ? \"Statement\" : \"Expression\")\n if (node.source) c(node.source, st, \"Expression\")\n}\nbase.ExportAllDeclaration = (node, st, c) => {\n c(node.source, st, \"Expression\")\n}\nbase.ImportDeclaration = (node, st, c) => {\n for (let spec of node.specifiers)\n c(spec, st)\n c(node.source, st, \"Expression\")\n}\nbase.ImportSpecifier = base.ImportDefaultSpecifier = base.ImportNamespaceSpecifier = base.Identifier = base.Literal = ignore\n\nbase.TaggedTemplateExpression = (node, st, c) => {\n c(node.tag, st, \"Expression\")\n c(node.quasi, st, \"Expression\")\n}\nbase.ClassDeclaration = base.ClassExpression = (node, st, c) => c(node, st, \"Class\")\nbase.Class = (node, st, c) => {\n if (node.id) c(node.id, st, \"Pattern\")\n if (node.superClass) c(node.superClass, st, \"Expression\")\n c(node.body, st)\n}\nbase.ClassBody = (node, st, c) => {\n for (let elt of node.body)\n c(elt, st)\n}\nbase.MethodDefinition = base.Property = (node, st, c) => {\n if (node.computed) c(node.key, st, \"Expression\")\n c(node.value, st, \"Expression\")\n}\n"],"names":["let","const"],"mappings":"AAAA;;;;;;;;;;;;;;;;;;AAkBA,AAAO,SAAS,MAAM,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE;EACnE,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,IAAI;GACnC,EAAA,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,GAAG,QAAQ,CAAC,IAAI,EAAC;IACxD,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,KAAK,EAAE,EAAA,KAAK,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;GAC3B,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAC;CAC1B;;;;;AAKD,AAAO,SAAS,QAAQ,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE;EAC3DA,IAAI,SAAS,GAAG,GAAE;EAClB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,IAAI;GACnC,EAAA,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,GAAG,QAAQ,CAAC,IAAI,EAAC;IACxDA,IAAI,KAAK,GAAG,IAAI,KAAK,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,EAAC;IACpD,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,EAAA;IAC/B,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,KAAK,EAAE,EAAA,KAAK,CAAC,IAAI,EAAE,EAAE,IAAI,SAAS,EAAE,SAAS,EAAC,EAAA;IAClD,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,GAAG,GAAE,EAAA;GAC3B,EAAE,IAAI,EAAE,KAAK,EAAC;CAChB;;;;;;;AAOD,AAAO,SAAS,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE;EACnEA,IAAI,OAAO,GAAG,KAAK,GAAG,IAAI,CAAC,KAAK,EAAE,WAAW,IAAI,SAAS,CAAC,GAAG,WAAW,CACxE,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/B,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;GAC5C,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAC;CAC1B;;AAED,SAAS,QAAQ,CAAC,IAAI,EAAE;EACtB,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC1B,EAAA,OAAO,UAAA,IAAI,EAAC,SAAG,IAAI,KAAK,IAAI,GAAA,EAAA;OACzB,IAAI,CAAC,IAAI;IACZ,EAAA,OAAO,YAAG,SAAG,IAAI,GAAA,EAAA;;IAEjB,EAAA,OAAO,IAAI,EAAA;CACd;;AAED,IAAM,KAAK,GAAC,cACC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,MAAK,EAAE,CAAA;;;AAInE,AAAO,SAAS,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE;EACjE,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,IAAI;GACnC,EAAA,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;IAChC,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,CAAC,QAAQ,EAAE,EAAA,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE,IAAI,EAAC,EAAA;GACxC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAC;CAC1B;;;;AAID,AAAO,SAAS,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE;EAC/D,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpCA,IAAI,SAAS,GAAG,EAAE,CACjB,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;IAChCA,IAAI,KAAK,GAAG,IAAI,KAAK,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,EAAC;IACpD,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,EAAA;IAC/B,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;IAC9B,IAAI,CAAC,QAAQ,EAAE,EAAA,QAAQ,CAAC,IAAI,EAAE,EAAE,IAAI,SAAS,EAAE,SAAS,EAAE,IAAI,EAAC,EAAA;IAC/D,IAAI,KAAK,EAAE,EAAA,SAAS,CAAC,GAAG,GAAE,EAAA;GAC3B,EAAE,IAAI,EAAE,KAAK,EAAC;CAChB;;;;;AAKD,AAAO,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EACrE,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpC,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI;IACF,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;MAC9BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;MAChC,IAAI,CAAC,KAAK,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,IAAI,KAAK;WACpC,GAAG,IAAI,IAAI,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC;QAClC,EAAA,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC,EAAA;MAChC,IAAI,CAAC,KAAK,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,KAAK;WACrC,GAAG,IAAI,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,GAAG,CAAC;UACjC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC;QAClB,EAAA,MAAM,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAA;KAC5B,EAAE,IAAI,EAAE,KAAK,EAAC;GAChB,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,YAAY,KAAK,EAAE,EAAA,OAAO,CAAC,EAAA;IAChC,MAAM,CAAC;GACR;CACF;;;;AAID,AAAO,SAAS,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EAClE,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpC,IAAI;IACF,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;MAC9BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;MAChC,IAAI,IAAI,CAAC,KAAK,GAAG,GAAG,IAAI,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,EAAA,MAAM,EAAA;MAC9C,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;MAC9B,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAA,MAAM,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAA;KAChD,EAAE,IAAI,EAAE,KAAK,EAAC;GAChB,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,YAAY,KAAK,EAAE,EAAA,OAAO,CAAC,EAAA;IAChC,MAAM,CAAC;GACR;CACF;;;AAGD,AAAO,SAAS,aAAa,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EACjE,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpC,IAAI;IACF,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;MAC9B,IAAI,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,EAAA,MAAM,EAAA;MAC1BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;MAChC,IAAI,IAAI,CAAC,KAAK,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAA,MAAM,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAA;MACpE,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;KAC/B,EAAE,IAAI,EAAE,KAAK,EAAC;GAChB,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,YAAY,KAAK,EAAE,EAAA,OAAO,CAAC,EAAA;IAChC,MAAM,CAAC;GACR;CACF;;;AAGD,AAAO,SAAS,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE;EAClE,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAC;EACrB,IAAI,CAAC,WAAW,EAAE,EAAA,WAAW,GAAG,KAAI,EAAA;EACpCA,IAAI,GAAG,CACN,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE;IAC/B,IAAI,IAAI,CAAC,KAAK,GAAG,GAAG,EAAE,EAAA,MAAM,EAAA;IAC5BA,IAAI,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,KAAI;IAChC,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC;MAC1E,EAAA,GAAG,GAAG,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;IAC3B,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAC;GAC/B,EAAE,IAAI,EAAE,KAAK,EAAC;EACf,OAAO,GAAG;CACX;;;AAGDC,IAAM,MAAM,GAAG,MAAM,CAAC,MAAM,IAAI,SAAS,KAAK,EAAE;EAC9C,SAAS,IAAI,GAAG,EAAE;EAClB,IAAI,CAAC,SAAS,GAAG,MAAK;EACtB,OAAO,IAAI,IAAI;EAChB;;;;AAID,AAAO,SAAS,IAAI,CAAC,KAAK,EAAE,WAAW,EAAE;EACvCD,IAAI,OAAO,GAAG,MAAM,CAAC,WAAW,IAAI,IAAI,EAAC;EACzC,KAAKA,IAAI,IAAI,IAAI,KAAK,EAAE,EAAA,OAAO,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,IAAI,EAAC,EAAA;EACnD,OAAO,OAAO;CACf;;AAED,SAAS,WAAW,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC,EAAE;AACjD,SAAS,MAAM,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE;;;;AAIlC,AAAOC,IAAM,IAAI,GAAG,GAAE;;AAEtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,cAAc,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjD,KAAa,kBAAI,IAAI,CAAC,IAAI,yBAAA;IAArB;IAAAD,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;GAAA;EAC3B;AACD,IAAI,CAAC,SAAS,GAAG,YAAW;AAC5B,IAAI,CAAC,cAAc,GAAG,OAAM;AAC5B,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,uBAAuB;EACrD,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,CAAC,IAAA;AACvD,IAAI,CAAC,WAAW,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC/B,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,WAAW,EAAC;EACnC,IAAI,IAAI,CAAC,SAAS,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,WAAW,EAAC,EAAA;EACvD;AACD,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,CAAC,IAAA;AACtE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,iBAAiB,GAAG,OAAM;AACrD,IAAI,CAAC,aAAa,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACnC,CAAC,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,EAAE,YAAY,EAAC;EACtC,KAAW,kBAAI,IAAI,CAAC,KAAK,yBAAA,EAAE;IAAtBA,IAAI,EAAE;;IACT,IAAI,EAAE,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;IACzC,KAAa,sBAAI,EAAE,CAAC,UAAU,+BAAA;MAAzB;MAAAA,IAAI,IAAI;;MACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;KAAA;GAC3B;EACF;AACD,IAAI,CAAC,UAAU,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC9B,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC7C,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA;IAA3B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;GAAA;EAC3B;AACD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjF,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACtD;AACD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,aAAa;EACtC,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,CAAC,IAAA;AACrD,IAAI,CAAC,YAAY,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAChC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B,IAAI,IAAI,CAAC,OAAO,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,EAAC,EAAA;EACrC,IAAI,IAAI,CAAC,SAAS,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,WAAW,EAAC,EAAA;EACvD;AACD,IAAI,CAAC,WAAW,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC/B,IAAI,IAAI,CAAC,KAAK,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EAC5C,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC1D,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,YAAY,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAChC,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EAC1C,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC7C,IAAI,IAAI,CAAC,MAAM,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACjD,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,cAAc,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACxD,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,EAAC;EAC3B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAC/B,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,WAAW,EAAC;EAC9B;AACD,IAAI,CAAC,OAAO,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC3B,IAAI,IAAI,CAAC,IAAI,KAAK,qBAAqB,EAAE,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;OAC/C,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC/B;AACD,IAAI,CAAC,iBAAiB,GAAG,OAAM;;AAE/B,IAAI,CAAC,mBAAmB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,IAAA;AACnE,IAAI,CAAC,mBAAmB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACvC,KAAa,kBAAI,IAAI,CAAC,YAAY,yBAAA;IAA7B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC;GAAA;EACd;AACD,IAAI,CAAC,kBAAkB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACtC,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAC;EACzB,IAAI,IAAI,CAAC,IAAI,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAC9C;;AAED,IAAI,CAAC,QAAQ,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC5B,IAAI,IAAI,CAAC,EAAE,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EACtC,KAAc,kBAAI,IAAI,CAAC,MAAM,yBAAA;IAAxB;IAAAA,IAAI,KAAK;;IACZ,CAAC,CAAC,KAAK,EAAE,EAAE,EAAE,SAAS,EAAC;GAAA;EACzB,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,UAAU,GAAG,YAAY,GAAG,WAAW,EAAC;EAC/D;;AAED,IAAI,CAAC,OAAO,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC3B,IAAI,IAAI,CAAC,IAAI,KAAK,YAAY;IAC5B,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,iBAAiB,EAAC,EAAA;OAC3B,IAAI,IAAI,CAAC,IAAI,KAAK,kBAAkB;IACvC,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,eAAe,EAAC,EAAA;;IAE5B,EAAA,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC,EAAA;EACd;AACD,IAAI,CAAC,eAAe,GAAG,OAAM;AAC7B,IAAI,CAAC,aAAa,GAAG,YAAW;AAChC,IAAI,CAAC,WAAW,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,SAAS,CAAC,IAAA;AACnE,IAAI,CAAC,YAAY,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAChC,KAAY,kBAAI,IAAI,CAAC,QAAQ,yBAAA,EAAE;IAA1BA,IAAI,GAAG;;IACV,IAAI,GAAG,EAAE,EAAA,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;GAC/B;EACF;AACD,IAAI,CAAC,aAAa,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjC,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA,EAAE;IAA7BA,IAAI,IAAI;;IACX,IAAI,IAAI,CAAC,IAAI,KAAK,UAAU,EAAE;MAC5B,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;MAChD,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,SAAS,EAAC;KAC7B,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,aAAa,EAAE;MACtC,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,SAAS,EAAC;KAChC;GACF;EACF;;AAED,IAAI,CAAC,UAAU,GAAG,YAAW;AAC7B,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,YAAY,GAAG,OAAM;AAC7D,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACnC,KAAY,kBAAI,IAAI,CAAC,QAAQ,yBAAA,EAAE;IAA1BA,IAAI,GAAG;;IACV,IAAI,GAAG,EAAE,EAAA,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;GAClC;EACF;AACD,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACpC,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA;IAA3B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC;GAAA;EACd;AACD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,uBAAuB,GAAG,IAAI,CAAC,oBAAmB;AACjF,IAAI,CAAC,kBAAkB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACtC,KAAa,kBAAI,IAAI,CAAC,WAAW,yBAAA;IAA5B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;GAAA;EAC5B;AACD,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACnC,KAAc,kBAAI,IAAI,CAAC,MAAM,yBAAA;IAAxB;IAAAA,IAAI,KAAK;;IACZ,CAAC,CAAC,KAAK,EAAE,EAAE,EAAC;GAAA;;EAEd,KAAa,sBAAI,IAAI,CAAC,WAAW,+BAAA;IAA5B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;GAAA;EAC5B;AACD,IAAI,CAAC,eAAe,GAAG,OAAM;AAC7B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC3D,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,EAAC;EACnC;AACD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,iBAAiB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC7D,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC;AACD,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,iBAAiB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACjE,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,EAAC;EAC3B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC;AACD,IAAI,CAAC,qBAAqB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACzC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,YAAY,EAAC;EAC9B,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,EAAC;EACpC,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,YAAY,EAAC;EACpC;AACD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,cAAc,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACvD,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC,IAAI,IAAI,CAAC,SAAS;IAChB,EAAA,KAAY,kBAAI,IAAI,CAAC,SAAS,yBAAA;MAAzB;QAAAA,IAAI,GAAG;;QACV,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC;OAAA,EAAA;EAC7B;AACD,IAAI,CAAC,gBAAgB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACpC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACtD;AACD,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC,wBAAwB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC1E,IAAI,IAAI,CAAC,WAAW;IAClB,EAAA,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,EAAE,IAAI,CAAC,IAAI,KAAK,wBAAwB,IAAI,IAAI,CAAC,WAAW,CAAC,EAAE,GAAG,WAAW,GAAG,YAAY,EAAC,EAAA;EACrH,IAAI,IAAI,CAAC,MAAM,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAClD;AACD,IAAI,CAAC,oBAAoB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACxC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EACjC;AACD,IAAI,CAAC,iBAAiB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACrC,KAAa,kBAAI,IAAI,CAAC,UAAU,yBAAA;IAA3B;IAAAA,IAAI,IAAI;;IACX,CAAC,CAAC,IAAI,EAAE,EAAE,EAAC;GAAA;EACb,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,YAAY,EAAC;EACjC;AACD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC,wBAAwB,GAAG,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,OAAO,GAAG,OAAM;;AAE5H,IAAI,CAAC,wBAAwB,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC5C,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC;EAC7B,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;EAChC;AACD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,eAAe,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,SAAG,CAAC,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,IAAA;AACpF,IAAI,CAAC,KAAK,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACzB,IAAI,IAAI,CAAC,EAAE,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAC,EAAA;EACtC,IAAI,IAAI,CAAC,UAAU,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EACzD,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAC;EACjB;AACD,IAAI,CAAC,SAAS,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EAC7B,KAAY,kBAAI,IAAI,CAAC,IAAI,yBAAA;IAApB;IAAAA,IAAI,GAAG;;IACV,CAAC,CAAC,GAAG,EAAE,EAAE,EAAC;GAAA;EACb;AACD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,QAAQ,GAAG,UAAC,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE;EACpD,IAAI,IAAI,CAAC,QAAQ,EAAE,EAAA,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,EAAE,YAAY,EAAC,EAAA;EAChD,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,YAAY,EAAC;CAChC;;;;"} \ No newline at end of file diff --git a/themes/piratecare/node_modules/acorn-walk/package.json b/themes/piratecare/node_modules/acorn-walk/package.json new file mode 100644 index 0000000..aaf7504 --- /dev/null +++ b/themes/piratecare/node_modules/acorn-walk/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "acorn-walk@7.0.0", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "acorn-walk@7.0.0", + "_id": "acorn-walk@7.0.0", + "_inBundle": false, + "_integrity": "sha512-7Bv1We7ZGuU79zZbb6rRqcpxo3OY+zrdtloZWoyD8fmGX+FeXRjE+iuGkZjSXLVovLzrsvMGMy0EkwA0E0umxg==", + "_location": "/acorn-walk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn-walk@7.0.0", + "name": "acorn-walk", + "escapedName": "acorn-walk", + "rawSpec": "7.0.0", + "saveSpec": null, + "fetchSpec": "7.0.0" + }, + "_requiredBy": [ + "/acorn-node" + ], + "_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.0.0.tgz", + "_spec": "7.0.0", + "_where": "/tmp/tailwind-hugo", + "bugs": { + "url": "https://github.com/acornjs/acorn/issues" + }, + "description": "ECMAScript (ESTree) AST walker", + "engines": { + "node": ">=0.4.0" + }, + "homepage": "https://github.com/acornjs/acorn", + "license": "MIT", + "main": "dist/walk.js", + "maintainers": [ + { + "name": "Marijn Haverbeke", + "email": "marijnh@gmail.com", + "url": "https://marijnhaverbeke.nl" + }, + { + "name": "Ingvar Stepanyan", + "email": "me@rreverser.com", + "url": "https://rreverser.com/" + }, + { + "name": "Adrian Heine", + "url": "http://adrianheine.de" + } + ], + "module": "dist/walk.mjs", + "name": "acorn-walk", + "repository": { + "type": "git", + "url": "git+https://github.com/acornjs/acorn.git" + }, + "scripts": { + "prepare": "cd ..; npm run build:walk" + }, + "version": "7.0.0" +} diff --git a/themes/piratecare/node_modules/acorn/CHANGELOG.md b/themes/piratecare/node_modules/acorn/CHANGELOG.md new file mode 100644 index 0000000..e893c22 --- /dev/null +++ b/themes/piratecare/node_modules/acorn/CHANGELOG.md @@ -0,0 +1,562 @@ +## 7.1.0 (2019-09-24) + +### Bug fixes + +Disallow trailing object literal commas when ecmaVersion is less than 5. + +### New features + +Add a static `acorn` property to the `Parser` class that contains the entire module interface, to allow plugins to access the instance of the library that they are acting on. + +## 7.0.0 (2019-08-13) + +### Breaking changes + +Changes the node format for dynamic imports to use the `ImportExpression` node type, as defined in [ESTree](https://github.com/estree/estree/blob/master/es2020.md#importexpression). + +Makes 10 (ES2019) the default value for the `ecmaVersion` option. + +## 6.3.0 (2019-08-12) + +### New features + +`sourceType: "module"` can now be used even when `ecmaVersion` is less than 6, to parse module-style code that otherwise conforms to an older standard. + +## 6.2.1 (2019-07-21) + +### Bug fixes + +Fix bug causing Acorn to treat some characters as identifier characters that shouldn't be treated as such. + +Fix issue where setting the `allowReserved` option to `"never"` allowed reserved words in some circumstances. + +## 6.2.0 (2019-07-04) + +### Bug fixes + +Improve valid assignment checking in `for`/`in` and `for`/`of` loops. + +Disallow binding `let` in patterns. + +### New features + +Support bigint syntax with `ecmaVersion` >= 11. + +Support dynamic `import` syntax with `ecmaVersion` >= 11. + +Upgrade to Unicode version 12. + +## 6.1.1 (2019-02-27) + +### Bug fixes + +Fix bug that caused parsing default exports of with names to fail. + +## 6.1.0 (2019-02-08) + +### Bug fixes + +Fix scope checking when redefining a `var` as a lexical binding. + +### New features + +Split up `parseSubscripts` to use an internal `parseSubscript` method to make it easier to extend with plugins. + +## 6.0.7 (2019-02-04) + +### Bug fixes + +Check that exported bindings are defined. + +Don't treat `\u180e` as a whitespace character. + +Check for duplicate parameter names in methods. + +Don't allow shorthand properties when they are generators or async methods. + +Forbid binding `await` in async arrow function's parameter list. + +## 6.0.6 (2019-01-30) + +### Bug fixes + +The content of class declarations and expressions is now always parsed in strict mode. + +Don't allow `let` or `const` to bind the variable name `let`. + +Treat class declarations as lexical. + +Don't allow a generator function declaration as the sole body of an `if` or `else`. + +Ignore `"use strict"` when after an empty statement. + +Allow string line continuations with special line terminator characters. + +Treat `for` bodies as part of the `for` scope when checking for conflicting bindings. + +Fix bug with parsing `yield` in a `for` loop initializer. + +Implement special cases around scope checking for functions. + +## 6.0.5 (2019-01-02) + +### Bug fixes + +Fix TypeScript type for `Parser.extend` and add `allowAwaitOutsideFunction` to options type. + +Don't treat `let` as a keyword when the next token is `{` on the next line. + +Fix bug that broke checking for parentheses around an object pattern in a destructuring assignment when `preserveParens` was on. + +## 6.0.4 (2018-11-05) + +### Bug fixes + +Further improvements to tokenizing regular expressions in corner cases. + +## 6.0.3 (2018-11-04) + +### Bug fixes + +Fix bug in tokenizing an expression-less return followed by a function followed by a regular expression. + +Remove stray symlink in the package tarball. + +## 6.0.2 (2018-09-26) + +### Bug fixes + +Fix bug where default expressions could fail to parse inside an object destructuring assignment expression. + +## 6.0.1 (2018-09-14) + +### Bug fixes + +Fix wrong value in `version` export. + +## 6.0.0 (2018-09-14) + +### Bug fixes + +Better handle variable-redefinition checks for catch bindings and functions directly under if statements. + +Forbid `new.target` in top-level arrow functions. + +Fix issue with parsing a regexp after `yield` in some contexts. + +### New features + +The package now comes with TypeScript definitions. + +### Breaking changes + +The default value of the `ecmaVersion` option is now 9 (2018). + +Plugins work differently, and will have to be rewritten to work with this version. + +The loose parser and walker have been moved into separate packages (`acorn-loose` and `acorn-walk`). + +## 5.7.3 (2018-09-10) + +### Bug fixes + +Fix failure to tokenize regexps after expressions like `x.of`. + +Better error message for unterminated template literals. + +## 5.7.2 (2018-08-24) + +### Bug fixes + +Properly handle `allowAwaitOutsideFunction` in for statements. + +Treat function declarations at the top level of modules like let bindings. + +Don't allow async function declarations as the only statement under a label. + +## 5.7.0 (2018-06-15) + +### New features + +Upgraded to Unicode 11. + +## 5.6.0 (2018-05-31) + +### New features + +Allow U+2028 and U+2029 in string when ECMAVersion >= 10. + +Allow binding-less catch statements when ECMAVersion >= 10. + +Add `allowAwaitOutsideFunction` option for parsing top-level `await`. + +## 5.5.3 (2018-03-08) + +### Bug fixes + +A _second_ republish of the code in 5.5.1, this time with yarn, to hopefully get valid timestamps. + +## 5.5.2 (2018-03-08) + +### Bug fixes + +A republish of the code in 5.5.1 in an attempt to solve an issue with the file timestamps in the npm package being 0. + +## 5.5.1 (2018-03-06) + +### Bug fixes + +Fix misleading error message for octal escapes in template strings. + +## 5.5.0 (2018-02-27) + +### New features + +The identifier character categorization is now based on Unicode version 10. + +Acorn will now validate the content of regular expressions, including new ES9 features. + +## 5.4.0 (2018-02-01) + +### Bug fixes + +Disallow duplicate or escaped flags on regular expressions. + +Disallow octal escapes in strings in strict mode. + +### New features + +Add support for async iteration. + +Add support for object spread and rest. + +## 5.3.0 (2017-12-28) + +### Bug fixes + +Fix parsing of floating point literals with leading zeroes in loose mode. + +Allow duplicate property names in object patterns. + +Don't allow static class methods named `prototype`. + +Disallow async functions directly under `if` or `else`. + +Parse right-hand-side of `for`/`of` as an assignment expression. + +Stricter parsing of `for`/`in`. + +Don't allow unicode escapes in contextual keywords. + +### New features + +Parsing class members was factored into smaller methods to allow plugins to hook into it. + +## 5.2.1 (2017-10-30) + +### Bug fixes + +Fix a token context corruption bug. + +## 5.2.0 (2017-10-30) + +### Bug fixes + +Fix token context tracking for `class` and `function` in property-name position. + +Make sure `%*` isn't parsed as a valid operator. + +Allow shorthand properties `get` and `set` to be followed by default values. + +Disallow `super` when not in callee or object position. + +### New features + +Support [`directive` property](https://github.com/estree/estree/compare/b3de58c9997504d6fba04b72f76e6dd1619ee4eb...1da8e603237144f44710360f8feb7a9977e905e0) on directive expression statements. + +## 5.1.2 (2017-09-04) + +### Bug fixes + +Disable parsing of legacy HTML-style comments in modules. + +Fix parsing of async methods whose names are keywords. + +## 5.1.1 (2017-07-06) + +### Bug fixes + +Fix problem with disambiguating regexp and division after a class. + +## 5.1.0 (2017-07-05) + +### Bug fixes + +Fix tokenizing of regexps in an object-desctructuring `for`/`of` loop and after `yield`. + +Parse zero-prefixed numbers with non-octal digits as decimal. + +Allow object/array patterns in rest parameters. + +Don't error when `yield` is used as a property name. + +Allow `async` as a shorthand object property. + +### New features + +Implement the [template literal revision proposal](https://github.com/tc39/proposal-template-literal-revision) for ES9. + +## 5.0.3 (2017-04-01) + +### Bug fixes + +Fix spurious duplicate variable definition errors for named functions. + +## 5.0.2 (2017-03-30) + +### Bug fixes + +A binary operator after a parenthesized arrow expression is no longer incorrectly treated as an error. + +## 5.0.0 (2017-03-28) + +### Bug fixes + +Raise an error for duplicated lexical bindings. + +Fix spurious error when an assignement expression occurred after a spread expression. + +Accept regular expressions after `of` (in `for`/`of`), `yield` (in a generator), and braced arrow functions. + +Allow labels in front or `var` declarations, even in strict mode. + +### Breaking changes + +Parse declarations following `export default` as declaration nodes, not expressions. This means that class and function declarations nodes can now have `null` as their `id`. + +## 4.0.11 (2017-02-07) + +### Bug fixes + +Allow all forms of member expressions to be parenthesized as lvalue. + +## 4.0.10 (2017-02-07) + +### Bug fixes + +Don't expect semicolons after default-exported functions or classes, even when they are expressions. + +Check for use of `'use strict'` directives in non-simple parameter functions, even when already in strict mode. + +## 4.0.9 (2017-02-06) + +### Bug fixes + +Fix incorrect error raised for parenthesized simple assignment targets, so that `(x) = 1` parses again. + +## 4.0.8 (2017-02-03) + +### Bug fixes + +Solve spurious parenthesized pattern errors by temporarily erring on the side of accepting programs that our delayed errors don't handle correctly yet. + +## 4.0.7 (2017-02-02) + +### Bug fixes + +Accept invalidly rejected code like `(x).y = 2` again. + +Don't raise an error when a function _inside_ strict code has a non-simple parameter list. + +## 4.0.6 (2017-02-02) + +### Bug fixes + +Fix exponential behavior (manifesting itself as a complete hang for even relatively small source files) introduced by the new 'use strict' check. + +## 4.0.5 (2017-02-02) + +### Bug fixes + +Disallow parenthesized pattern expressions. + +Allow keywords as export names. + +Don't allow the `async` keyword to be parenthesized. + +Properly raise an error when a keyword contains a character escape. + +Allow `"use strict"` to appear after other string literal expressions. + +Disallow labeled declarations. + +## 4.0.4 (2016-12-19) + +### Bug fixes + +Fix crash when `export` was followed by a keyword that can't be +exported. + +## 4.0.3 (2016-08-16) + +### Bug fixes + +Allow regular function declarations inside single-statement `if` branches in loose mode. Forbid them entirely in strict mode. + +Properly parse properties named `async` in ES2017 mode. + +Fix bug where reserved words were broken in ES2017 mode. + +## 4.0.2 (2016-08-11) + +### Bug fixes + +Don't ignore period or 'e' characters after octal numbers. + +Fix broken parsing for call expressions in default parameter values of arrow functions. + +## 4.0.1 (2016-08-08) + +### Bug fixes + +Fix false positives in duplicated export name errors. + +## 4.0.0 (2016-08-07) + +### Breaking changes + +The default `ecmaVersion` option value is now 7. + +A number of internal method signatures changed, so plugins might need to be updated. + +### Bug fixes + +The parser now raises errors on duplicated export names. + +`arguments` and `eval` can now be used in shorthand properties. + +Duplicate parameter names in non-simple argument lists now always produce an error. + +### New features + +The `ecmaVersion` option now also accepts year-style version numbers +(2015, etc). + +Support for `async`/`await` syntax when `ecmaVersion` is >= 8. + +Support for trailing commas in call expressions when `ecmaVersion` is >= 8. + +## 3.3.0 (2016-07-25) + +### Bug fixes + +Fix bug in tokenizing of regexp operator after a function declaration. + +Fix parser crash when parsing an array pattern with a hole. + +### New features + +Implement check against complex argument lists in functions that enable strict mode in ES7. + +## 3.2.0 (2016-06-07) + +### Bug fixes + +Improve handling of lack of unicode regexp support in host +environment. + +Properly reject shorthand properties whose name is a keyword. + +### New features + +Visitors created with `visit.make` now have their base as _prototype_, rather than copying properties into a fresh object. + +## 3.1.0 (2016-04-18) + +### Bug fixes + +Properly tokenize the division operator directly after a function expression. + +Allow trailing comma in destructuring arrays. + +## 3.0.4 (2016-02-25) + +### Fixes + +Allow update expressions as left-hand-side of the ES7 exponential operator. + +## 3.0.2 (2016-02-10) + +### Fixes + +Fix bug that accidentally made `undefined` a reserved word when parsing ES7. + +## 3.0.0 (2016-02-10) + +### Breaking changes + +The default value of the `ecmaVersion` option is now 6 (used to be 5). + +Support for comprehension syntax (which was dropped from the draft spec) has been removed. + +### Fixes + +`let` and `yield` are now “contextual keywords”, meaning you can mostly use them as identifiers in ES5 non-strict code. + +A parenthesized class or function expression after `export default` is now parsed correctly. + +### New features + +When `ecmaVersion` is set to 7, Acorn will parse the exponentiation operator (`**`). + +The identifier character ranges are now based on Unicode 8.0.0. + +Plugins can now override the `raiseRecoverable` method to override the way non-critical errors are handled. + +## 2.7.0 (2016-01-04) + +### Fixes + +Stop allowing rest parameters in setters. + +Disallow `y` rexexp flag in ES5. + +Disallow `\00` and `\000` escapes in strict mode. + +Raise an error when an import name is a reserved word. + +## 2.6.2 (2015-11-10) + +### Fixes + +Don't crash when no options object is passed. + +## 2.6.0 (2015-11-09) + +### Fixes + +Add `await` as a reserved word in module sources. + +Disallow `yield` in a parameter default value for a generator. + +Forbid using a comma after a rest pattern in an array destructuring. + +### New features + +Support parsing stdin in command-line tool. + +## 2.5.0 (2015-10-27) + +### Fixes + +Fix tokenizer support in the command-line tool. + +Stop allowing `new.target` outside of functions. + +Remove legacy `guard` and `guardedHandler` properties from try nodes. + +Stop allowing multiple `__proto__` properties on an object literal in strict mode. + +Don't allow rest parameters to be non-identifier patterns. + +Check for duplicate paramter names in arrow functions. diff --git a/themes/piratecare/node_modules/acorn/LICENSE b/themes/piratecare/node_modules/acorn/LICENSE new file mode 100644 index 0000000..2c0632b --- /dev/null +++ b/themes/piratecare/node_modules/acorn/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2012-2018 by various contributors (see AUTHORS) + +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. diff --git a/themes/piratecare/node_modules/acorn/README.md b/themes/piratecare/node_modules/acorn/README.md new file mode 100644 index 0000000..585f273 --- /dev/null +++ b/themes/piratecare/node_modules/acorn/README.md @@ -0,0 +1,270 @@ +# Acorn + +A tiny, fast JavaScript parser written in JavaScript. + +## Community + +Acorn is open source software released under an +[MIT license](https://github.com/acornjs/acorn/blob/master/acorn/LICENSE). + +You are welcome to +[report bugs](https://github.com/acornjs/acorn/issues) or create pull +requests on [github](https://github.com/acornjs/acorn). For questions +and discussion, please use the +[Tern discussion forum](https://discuss.ternjs.net). + +## Installation + +The easiest way to install acorn is from [`npm`](https://www.npmjs.com/): + +```sh +npm install acorn +``` + +Alternately, you can download the source and build acorn yourself: + +```sh +git clone https://github.com/acornjs/acorn.git +cd acorn +npm install +``` + +## Interface + +**parse**`(input, options)` is the main interface to the library. The +`input` parameter is a string, `options` can be undefined or an object +setting some of the options listed below. The return value will be an +abstract syntax tree object as specified by the [ESTree +spec](https://github.com/estree/estree). + +```javascript +let acorn = require("acorn"); +console.log(acorn.parse("1 + 1")); +``` + +When encountering a syntax error, the parser will raise a +`SyntaxError` object with a meaningful message. The error object will +have a `pos` property that indicates the string offset at which the +error occurred, and a `loc` object that contains a `{line, column}` +object referring to that same position. + +Options can be provided by passing a second argument, which should be +an object containing any of these fields: + +- **ecmaVersion**: Indicates the ECMAScript version to parse. Must be + either 3, 5, 6 (2015), 7 (2016), 8 (2017), 9 (2018), 10 (2019) or 11 + (2020, partial support). This influences support for strict mode, + the set of reserved words, and support for new syntax features. + Default is 10. + + **NOTE**: Only 'stage 4' (finalized) ECMAScript features are being + implemented by Acorn. Other proposed new features can be implemented + through plugins. + +- **sourceType**: Indicate the mode the code should be parsed in. Can be + either `"script"` or `"module"`. This influences global strict mode + and parsing of `import` and `export` declarations. + + **NOTE**: If set to `"module"`, then static `import` / `export` syntax + will be valid, even if `ecmaVersion` is less than 6. + +- **onInsertedSemicolon**: If given a callback, that callback will be + called whenever a missing semicolon is inserted by the parser. The + callback will be given the character offset of the point where the + semicolon is inserted as argument, and if `locations` is on, also a + `{line, column}` object representing this position. + +- **onTrailingComma**: Like `onInsertedSemicolon`, but for trailing + commas. + +- **allowReserved**: If `false`, using a reserved word will generate + an error. Defaults to `true` for `ecmaVersion` 3, `false` for higher + versions. When given the value `"never"`, reserved words and + keywords can also not be used as property names (as in Internet + Explorer's old parser). + +- **allowReturnOutsideFunction**: By default, a return statement at + the top level raises an error. Set this to `true` to accept such + code. + +- **allowImportExportEverywhere**: By default, `import` and `export` + declarations can only appear at a program's top level. Setting this + option to `true` allows them anywhere where a statement is allowed. + +- **allowAwaitOutsideFunction**: By default, `await` expressions can + only appear inside `async` functions. Setting this option to + `true` allows to have top-level `await` expressions. They are + still not allowed in non-`async` functions, though. + +- **allowHashBang**: When this is enabled (off by default), if the + code starts with the characters `#!` (as in a shellscript), the + first line will be treated as a comment. + +- **locations**: When `true`, each node has a `loc` object attached + with `start` and `end` subobjects, each of which contains the + one-based line and zero-based column numbers in `{line, column}` + form. Default is `false`. + +- **onToken**: If a function is passed for this option, each found + token will be passed in same format as tokens returned from + `tokenizer().getToken()`. + + If array is passed, each found token is pushed to it. + + Note that you are not allowed to call the parser from the + callback—that will corrupt its internal state. + +- **onComment**: If a function is passed for this option, whenever a + comment is encountered the function will be called with the + following parameters: + + - `block`: `true` if the comment is a block comment, false if it + is a line comment. + - `text`: The content of the comment. + - `start`: Character offset of the start of the comment. + - `end`: Character offset of the end of the comment. + + When the `locations` options is on, the `{line, column}` locations + of the comment’s start and end are passed as two additional + parameters. + + If array is passed for this option, each found comment is pushed + to it as object in Esprima format: + + ```javascript + { + "type": "Line" | "Block", + "value": "comment text", + "start": Number, + "end": Number, + // If `locations` option is on: + "loc": { + "start": {line: Number, column: Number} + "end": {line: Number, column: Number} + }, + // If `ranges` option is on: + "range": [Number, Number] + } + ``` + + Note that you are not allowed to call the parser from the + callback—that will corrupt its internal state. + +- **ranges**: Nodes have their start and end characters offsets + recorded in `start` and `end` properties (directly on the node, + rather than the `loc` object, which holds line/column data. To also + add a + [semi-standardized](https://bugzilla.mozilla.org/show_bug.cgi?id=745678) + `range` property holding a `[start, end]` array with the same + numbers, set the `ranges` option to `true`. + +- **program**: It is possible to parse multiple files into a single + AST by passing the tree produced by parsing the first file as the + `program` option in subsequent parses. This will add the toplevel + forms of the parsed file to the "Program" (top) node of an existing + parse tree. + +- **sourceFile**: When the `locations` option is `true`, you can pass + this option to add a `source` attribute in every node’s `loc` + object. Note that the contents of this option are not examined or + processed in any way; you are free to use whatever format you + choose. + +- **directSourceFile**: Like `sourceFile`, but a `sourceFile` property + will be added (regardless of the `location` option) directly to the + nodes, rather than the `loc` object. + +- **preserveParens**: If this option is `true`, parenthesized expressions + are represented by (non-standard) `ParenthesizedExpression` nodes + that have a single `expression` property containing the expression + inside parentheses. + +**parseExpressionAt**`(input, offset, options)` will parse a single +expression in a string, and return its AST. It will not complain if +there is more of the string left after the expression. + +**tokenizer**`(input, options)` returns an object with a `getToken` +method that can be called repeatedly to get the next token, a `{start, +end, type, value}` object (with added `loc` property when the +`locations` option is enabled and `range` property when the `ranges` +option is enabled). When the token's type is `tokTypes.eof`, you +should stop calling the method, since it will keep returning that same +token forever. + +In ES6 environment, returned result can be used as any other +protocol-compliant iterable: + +```javascript +for (let token of acorn.tokenizer(str)) { + // iterate over the tokens +} + +// transform code to array of tokens: +var tokens = [...acorn.tokenizer(str)]; +``` + +**tokTypes** holds an object mapping names to the token type objects +that end up in the `type` properties of tokens. + +**getLineInfo**`(input, offset)` can be used to get a `{line, +column}` object for a given program string and offset. + +### The `Parser` class + +Instances of the **`Parser`** class contain all the state and logic +that drives a parse. It has static methods `parse`, +`parseExpressionAt`, and `tokenizer` that match the top-level +functions by the same name. + +When extending the parser with plugins, you need to call these methods +on the extended version of the class. To extend a parser with plugins, +you can use its static `extend` method. + +```javascript +var acorn = require("acorn"); +var jsx = require("acorn-jsx"); +var JSXParser = acorn.Parser.extend(jsx()); +JSXParser.parse("foo()"); +``` + +The `extend` method takes any number of plugin values, and returns a +new `Parser` class that includes the extra parser logic provided by +the plugins. + +## Command line interface + +The `bin/acorn` utility can be used to parse a file from the command +line. It accepts as arguments its input file and the following +options: + +- `--ecma3|--ecma5|--ecma6|--ecma7|--ecma8|--ecma9|--ecma10`: Sets the ECMAScript version + to parse. Default is version 9. + +- `--module`: Sets the parsing mode to `"module"`. Is set to `"script"` otherwise. + +- `--locations`: Attaches a "loc" object to each node with "start" and + "end" subobjects, each of which contains the one-based line and + zero-based column numbers in `{line, column}` form. + +- `--allow-hash-bang`: If the code starts with the characters #! (as + in a shellscript), the first line will be treated as a comment. + +- `--compact`: No whitespace is used in the AST output. + +- `--silent`: Do not output the AST, just return the exit status. + +- `--help`: Print the usage information and quit. + +The utility spits out the syntax tree as JSON data. + +## Existing plugins + + - [`acorn-jsx`](https://github.com/RReverser/acorn-jsx): Parse [Facebook JSX syntax extensions](https://github.com/facebook/jsx) + +Plugins for ECMAScript proposals: + + - [`acorn-stage3`](https://github.com/acornjs/acorn-stage3): Parse most stage 3 proposals, bundling: + - [`acorn-class-fields`](https://github.com/acornjs/acorn-class-fields): Parse [class fields proposal](https://github.com/tc39/proposal-class-fields) + - [`acorn-import-meta`](https://github.com/acornjs/acorn-import-meta): Parse [import.meta proposal](https://github.com/tc39/proposal-import-meta) + - [`acorn-numeric-separator`](https://github.com/acornjs/acorn-numeric-separator): Parse [numeric separator proposal](https://github.com/tc39/proposal-numeric-separator) + - [`acorn-private-methods`](https://github.com/acornjs/acorn-private-methods): parse [private methods, getters and setters proposal](https://github.com/tc39/proposal-private-methods)n diff --git a/themes/piratecare/node_modules/acorn/bin/acorn b/themes/piratecare/node_modules/acorn/bin/acorn new file mode 100755 index 0000000..cf7df46 --- /dev/null +++ b/themes/piratecare/node_modules/acorn/bin/acorn @@ -0,0 +1,4 @@ +#!/usr/bin/env node +'use strict'; + +require('../dist/bin.js'); diff --git a/themes/piratecare/node_modules/acorn/dist/acorn.d.ts b/themes/piratecare/node_modules/acorn/dist/acorn.d.ts new file mode 100644 index 0000000..bda5f80 --- /dev/null +++ b/themes/piratecare/node_modules/acorn/dist/acorn.d.ts @@ -0,0 +1,209 @@ +export as namespace acorn +export = acorn + +declare namespace acorn { + function parse(input: string, options?: Options): Node + + function parseExpressionAt(input: string, pos?: number, options?: Options): Node + + function tokenizer(input: string, options?: Options): { + getToken(): Token + [Symbol.iterator](): Iterator + } + + interface Options { + ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 + sourceType?: 'script' | 'module' + onInsertedSemicolon?: (lastTokEnd: number, lastTokEndLoc?: Position) => void + onTrailingComma?: (lastTokEnd: number, lastTokEndLoc?: Position) => void + allowReserved?: boolean | 'never' + allowReturnOutsideFunction?: boolean + allowImportExportEverywhere?: boolean + allowAwaitOutsideFunction?: boolean + allowHashBang?: boolean + locations?: boolean + onToken?: ((token: Token) => any) | Token[] + onComment?: (( + isBlock: boolean, text: string, start: number, end: number, startLoc?: Position, + endLoc?: Position + ) => void) | Comment[] + ranges?: boolean + program?: Node + sourceFile?: string + directSourceFile?: string + preserveParens?: boolean + } + + class Parser { + constructor(options: Options, input: string, startPos?: number) + parse(this: Parser): Node + static parse(this: typeof Parser, input: string, options?: Options): Node + static parseExpressionAt(this: typeof Parser, input: string, pos: number, options?: Options): Node + static tokenizer(this: typeof Parser, input: string, options?: Options): { + getToken(): Token + [Symbol.iterator](): Iterator + } + static extend(this: typeof Parser, ...plugins: ((BaseParser: typeof Parser) => typeof Parser)[]): typeof Parser + } + + interface Position { line: number; column: number; offset: number } + + const defaultOptions: Options + + function getLineInfo(input: string, offset: number): Position + + class SourceLocation { + start: Position + end: Position + source?: string | null + constructor(p: Parser, start: Position, end: Position) + } + + class Node { + type: string + start: number + end: number + loc?: SourceLocation + sourceFile?: string + range?: [number, number] + constructor(parser: Parser, pos: number, loc?: SourceLocation) + } + + class TokenType { + label: string + keyword: string + beforeExpr: boolean + startsExpr: boolean + isLoop: boolean + isAssign: boolean + prefix: boolean + postfix: boolean + binop: number + updateContext?: (prevType: TokenType) => void + constructor(label: string, conf?: any) + } + + const tokTypes: { + num: TokenType + regexp: TokenType + string: TokenType + name: TokenType + eof: TokenType + bracketL: TokenType + bracketR: TokenType + braceL: TokenType + braceR: TokenType + parenL: TokenType + parenR: TokenType + comma: TokenType + semi: TokenType + colon: TokenType + dot: TokenType + question: TokenType + arrow: TokenType + template: TokenType + ellipsis: TokenType + backQuote: TokenType + dollarBraceL: TokenType + eq: TokenType + assign: TokenType + incDec: TokenType + prefix: TokenType + logicalOR: TokenType + logicalAND: TokenType + bitwiseOR: TokenType + bitwiseXOR: TokenType + bitwiseAND: TokenType + equality: TokenType + relational: TokenType + bitShift: TokenType + plusMin: TokenType + modulo: TokenType + star: TokenType + slash: TokenType + starstar: TokenType + _break: TokenType + _case: TokenType + _catch: TokenType + _continue: TokenType + _debugger: TokenType + _default: TokenType + _do: TokenType + _else: TokenType + _finally: TokenType + _for: TokenType + _function: TokenType + _if: TokenType + _return: TokenType + _switch: TokenType + _throw: TokenType + _try: TokenType + _var: TokenType + _const: TokenType + _while: TokenType + _with: TokenType + _new: TokenType + _this: TokenType + _super: TokenType + _class: TokenType + _extends: TokenType + _export: TokenType + _import: TokenType + _null: TokenType + _true: TokenType + _false: TokenType + _in: TokenType + _instanceof: TokenType + _typeof: TokenType + _void: TokenType + _delete: TokenType + } + + class TokContext { + constructor(token: string, isExpr: boolean, preserveSpace: boolean, override?: (p: Parser) => void) + } + + const tokContexts: { + b_stat: TokContext + b_expr: TokContext + b_tmpl: TokContext + p_stat: TokContext + p_expr: TokContext + q_tmpl: TokContext + f_expr: TokContext + } + + function isIdentifierStart(code: number, astral?: boolean): boolean + + function isIdentifierChar(code: number, astral?: boolean): boolean + + interface AbstractToken { + } + + interface Comment extends AbstractToken { + type: string + value: string + start: number + end: number + loc?: SourceLocation + range?: [number, number] + } + + class Token { + type: TokenType + value: any + start: number + end: number + loc?: SourceLocation + range?: [number, number] + constructor(p: Parser) + } + + function isNewLine(code: number): boolean + + const lineBreak: RegExp + + const lineBreakG: RegExp + + const version: string +} diff --git a/themes/piratecare/node_modules/acorn/dist/acorn.js b/themes/piratecare/node_modules/acorn/dist/acorn.js new file mode 100644 index 0000000..c9209c0 --- /dev/null +++ b/themes/piratecare/node_modules/acorn/dist/acorn.js @@ -0,0 +1,5001 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (global = global || self, factory(global.acorn = {})); +}(this, function (exports) { 'use strict'; + + // Reserved word lists for various dialects of the language + + var reservedWords = { + 3: "abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile", + 5: "class enum extends super const export import", + 6: "enum", + strict: "implements interface let package private protected public static yield", + strictBind: "eval arguments" + }; + + // And the keywords + + var ecma5AndLessKeywords = "break case catch continue debugger default do else finally for function if return switch throw try var while with null true false instanceof typeof void delete new in this"; + + var keywords = { + 5: ecma5AndLessKeywords, + "5module": ecma5AndLessKeywords + " export import", + 6: ecma5AndLessKeywords + " const class extends export import super" + }; + + var keywordRelationalOperator = /^in(stanceof)?$/; + + // ## Character categories + + // Big ugly regular expressions that match characters in the + // whitespace, identifier, and identifier-start categories. These + // are only applied when a character is found to actually have a + // code point above 128. + // Generated by `bin/generate-identifier-regex.js`. + var nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u08a0-\u08b4\u08b6-\u08bd\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fef\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7bf\ua7c2-\ua7c6\ua7f7-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab67\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; + var nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08d3-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1df9\u1dfb-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; + + var nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]"); + var nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + "]"); + + nonASCIIidentifierStartChars = nonASCIIidentifierChars = null; + + // These are a run-length and offset encoded representation of the + // >0xffff code points that are a valid part of identifiers. The + // offset starts at 0x10000, and each pair of numbers represents an + // offset to the next range, and then a size of the range. They were + // generated by bin/generate-identifier-regex.js + + // eslint-disable-next-line comma-spacing + var astralIdentifierStartCodes = [0,11,2,25,2,18,2,1,2,14,3,13,35,122,70,52,268,28,4,48,48,31,14,29,6,37,11,29,3,35,5,7,2,4,43,157,19,35,5,35,5,39,9,51,157,310,10,21,11,7,153,5,3,0,2,43,2,1,4,0,3,22,11,22,10,30,66,18,2,1,11,21,11,25,71,55,7,1,65,0,16,3,2,2,2,28,43,28,4,28,36,7,2,27,28,53,11,21,11,18,14,17,111,72,56,50,14,50,14,35,477,28,11,0,9,21,155,22,13,52,76,44,33,24,27,35,30,0,12,34,4,0,13,47,15,3,22,0,2,0,36,17,2,24,85,6,2,0,2,3,2,14,2,9,8,46,39,7,3,1,3,21,2,6,2,1,2,4,4,0,19,0,13,4,159,52,19,3,21,0,33,47,21,1,2,0,185,46,42,3,37,47,21,0,60,42,14,0,72,26,230,43,117,63,32,0,161,7,3,38,17,0,2,0,29,0,11,39,8,0,22,0,12,45,20,0,35,56,264,8,2,36,18,0,50,29,113,6,2,1,2,37,22,0,26,5,2,1,2,31,15,0,328,18,270,921,103,110,18,195,2749,1070,4050,582,8634,568,8,30,114,29,19,47,17,3,32,20,6,18,689,63,129,74,6,0,67,12,65,1,2,0,29,6135,9,754,9486,286,50,2,18,3,9,395,2309,106,6,12,4,8,8,9,5991,84,2,70,2,1,3,0,3,1,3,3,2,11,2,0,2,6,2,64,2,3,3,7,2,6,2,27,2,3,2,4,2,0,4,6,2,339,3,24,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,7,2357,44,11,6,17,0,370,43,1301,196,60,67,8,0,1205,3,2,26,2,1,2,0,3,0,2,9,2,3,2,0,2,0,7,0,5,0,2,0,2,0,2,2,2,1,2,0,3,0,2,0,2,0,2,0,2,0,2,1,2,0,3,3,2,6,2,3,2,3,2,0,2,9,2,16,6,2,2,4,2,16,4421,42710,42,4148,12,221,3,5761,15,7472,3104,541]; + + // eslint-disable-next-line comma-spacing + var astralIdentifierCodes = [509,0,227,0,150,4,294,9,1368,2,2,1,6,3,41,2,5,0,166,1,574,3,9,9,525,10,176,2,54,14,32,9,16,3,46,10,54,9,7,2,37,13,2,9,6,1,45,0,13,2,49,13,9,3,4,9,83,11,7,0,161,11,6,9,7,3,56,1,2,6,3,1,3,2,10,0,11,1,3,6,4,4,193,17,10,9,5,0,82,19,13,9,214,6,3,8,28,1,83,16,16,9,82,12,9,9,84,14,5,9,243,14,166,9,232,6,3,6,4,0,29,9,41,6,2,3,9,0,10,10,47,15,406,7,2,7,17,9,57,21,2,13,123,5,4,0,2,1,2,6,2,0,9,9,49,4,2,1,2,4,9,9,330,3,19306,9,135,4,60,6,26,9,1014,0,2,54,8,3,19723,1,5319,4,4,5,9,7,3,6,31,3,149,2,1418,49,513,54,5,49,9,0,15,0,23,4,2,14,1361,6,2,16,3,6,2,1,2,4,262,6,10,9,419,13,1495,6,110,6,6,9,792487,239]; + + // This has a complexity linear to the value of the code. The + // assumption is that looking up astral identifier characters is + // rare. + function isInAstralSet(code, set) { + var pos = 0x10000; + for (var i = 0; i < set.length; i += 2) { + pos += set[i]; + if (pos > code) { return false } + pos += set[i + 1]; + if (pos >= code) { return true } + } + } + + // Test whether a given character code starts an identifier. + + function isIdentifierStart(code, astral) { + if (code < 65) { return code === 36 } + if (code < 91) { return true } + if (code < 97) { return code === 95 } + if (code < 123) { return true } + if (code <= 0xffff) { return code >= 0xaa && nonASCIIidentifierStart.test(String.fromCharCode(code)) } + if (astral === false) { return false } + return isInAstralSet(code, astralIdentifierStartCodes) + } + + // Test whether a given character is part of an identifier. + + function isIdentifierChar(code, astral) { + if (code < 48) { return code === 36 } + if (code < 58) { return true } + if (code < 65) { return false } + if (code < 91) { return true } + if (code < 97) { return code === 95 } + if (code < 123) { return true } + if (code <= 0xffff) { return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code)) } + if (astral === false) { return false } + return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes) + } + + // ## Token types + + // The assignment of fine-grained, information-carrying type objects + // allows the tokenizer to store the information it has about a + // token in a way that is very cheap for the parser to look up. + + // All token type variables start with an underscore, to make them + // easy to recognize. + + // The `beforeExpr` property is used to disambiguate between regular + // expressions and divisions. It is set on all token types that can + // be followed by an expression (thus, a slash after them would be a + // regular expression). + // + // The `startsExpr` property is used to check if the token ends a + // `yield` expression. It is set on all token types that either can + // directly start an expression (like a quotation mark) or can + // continue an expression (like the body of a string). + // + // `isLoop` marks a keyword as starting a loop, which is important + // to know when parsing a label, in order to allow or disallow + // continue jumps to that label. + + var TokenType = function TokenType(label, conf) { + if ( conf === void 0 ) conf = {}; + + this.label = label; + this.keyword = conf.keyword; + this.beforeExpr = !!conf.beforeExpr; + this.startsExpr = !!conf.startsExpr; + this.isLoop = !!conf.isLoop; + this.isAssign = !!conf.isAssign; + this.prefix = !!conf.prefix; + this.postfix = !!conf.postfix; + this.binop = conf.binop || null; + this.updateContext = null; + }; + + function binop(name, prec) { + return new TokenType(name, {beforeExpr: true, binop: prec}) + } + var beforeExpr = {beforeExpr: true}, startsExpr = {startsExpr: true}; + + // Map keyword names to token types. + + var keywords$1 = {}; + + // Succinct definitions of keyword token types + function kw(name, options) { + if ( options === void 0 ) options = {}; + + options.keyword = name; + return keywords$1[name] = new TokenType(name, options) + } + + var types = { + num: new TokenType("num", startsExpr), + regexp: new TokenType("regexp", startsExpr), + string: new TokenType("string", startsExpr), + name: new TokenType("name", startsExpr), + eof: new TokenType("eof"), + + // Punctuation token types. + bracketL: new TokenType("[", {beforeExpr: true, startsExpr: true}), + bracketR: new TokenType("]"), + braceL: new TokenType("{", {beforeExpr: true, startsExpr: true}), + braceR: new TokenType("}"), + parenL: new TokenType("(", {beforeExpr: true, startsExpr: true}), + parenR: new TokenType(")"), + comma: new TokenType(",", beforeExpr), + semi: new TokenType(";", beforeExpr), + colon: new TokenType(":", beforeExpr), + dot: new TokenType("."), + question: new TokenType("?", beforeExpr), + arrow: new TokenType("=>", beforeExpr), + template: new TokenType("template"), + invalidTemplate: new TokenType("invalidTemplate"), + ellipsis: new TokenType("...", beforeExpr), + backQuote: new TokenType("`", startsExpr), + dollarBraceL: new TokenType("${", {beforeExpr: true, startsExpr: true}), + + // Operators. These carry several kinds of properties to help the + // parser use them properly (the presence of these properties is + // what categorizes them as operators). + // + // `binop`, when present, specifies that this operator is a binary + // operator, and will refer to its precedence. + // + // `prefix` and `postfix` mark the operator as a prefix or postfix + // unary operator. + // + // `isAssign` marks all of `=`, `+=`, `-=` etcetera, which act as + // binary operators with a very low precedence, that should result + // in AssignmentExpression nodes. + + eq: new TokenType("=", {beforeExpr: true, isAssign: true}), + assign: new TokenType("_=", {beforeExpr: true, isAssign: true}), + incDec: new TokenType("++/--", {prefix: true, postfix: true, startsExpr: true}), + prefix: new TokenType("!/~", {beforeExpr: true, prefix: true, startsExpr: true}), + logicalOR: binop("||", 1), + logicalAND: binop("&&", 2), + bitwiseOR: binop("|", 3), + bitwiseXOR: binop("^", 4), + bitwiseAND: binop("&", 5), + equality: binop("==/!=/===/!==", 6), + relational: binop("/<=/>=", 7), + bitShift: binop("<>/>>>", 8), + plusMin: new TokenType("+/-", {beforeExpr: true, binop: 9, prefix: true, startsExpr: true}), + modulo: binop("%", 10), + star: binop("*", 10), + slash: binop("/", 10), + starstar: new TokenType("**", {beforeExpr: true}), + + // Keyword token types. + _break: kw("break"), + _case: kw("case", beforeExpr), + _catch: kw("catch"), + _continue: kw("continue"), + _debugger: kw("debugger"), + _default: kw("default", beforeExpr), + _do: kw("do", {isLoop: true, beforeExpr: true}), + _else: kw("else", beforeExpr), + _finally: kw("finally"), + _for: kw("for", {isLoop: true}), + _function: kw("function", startsExpr), + _if: kw("if"), + _return: kw("return", beforeExpr), + _switch: kw("switch"), + _throw: kw("throw", beforeExpr), + _try: kw("try"), + _var: kw("var"), + _const: kw("const"), + _while: kw("while", {isLoop: true}), + _with: kw("with"), + _new: kw("new", {beforeExpr: true, startsExpr: true}), + _this: kw("this", startsExpr), + _super: kw("super", startsExpr), + _class: kw("class", startsExpr), + _extends: kw("extends", beforeExpr), + _export: kw("export"), + _import: kw("import", startsExpr), + _null: kw("null", startsExpr), + _true: kw("true", startsExpr), + _false: kw("false", startsExpr), + _in: kw("in", {beforeExpr: true, binop: 7}), + _instanceof: kw("instanceof", {beforeExpr: true, binop: 7}), + _typeof: kw("typeof", {beforeExpr: true, prefix: true, startsExpr: true}), + _void: kw("void", {beforeExpr: true, prefix: true, startsExpr: true}), + _delete: kw("delete", {beforeExpr: true, prefix: true, startsExpr: true}) + }; + + // Matches a whole line break (where CRLF is considered a single + // line break). Used to count lines. + + var lineBreak = /\r\n?|\n|\u2028|\u2029/; + var lineBreakG = new RegExp(lineBreak.source, "g"); + + function isNewLine(code, ecma2019String) { + return code === 10 || code === 13 || (!ecma2019String && (code === 0x2028 || code === 0x2029)) + } + + var nonASCIIwhitespace = /[\u1680\u2000-\u200a\u202f\u205f\u3000\ufeff]/; + + var skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g; + + var ref = Object.prototype; + var hasOwnProperty = ref.hasOwnProperty; + var toString = ref.toString; + + // Checks if an object has a property. + + function has(obj, propName) { + return hasOwnProperty.call(obj, propName) + } + + var isArray = Array.isArray || (function (obj) { return ( + toString.call(obj) === "[object Array]" + ); }); + + function wordsRegexp(words) { + return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$") + } + + // These are used when `options.locations` is on, for the + // `startLoc` and `endLoc` properties. + + var Position = function Position(line, col) { + this.line = line; + this.column = col; + }; + + Position.prototype.offset = function offset (n) { + return new Position(this.line, this.column + n) + }; + + var SourceLocation = function SourceLocation(p, start, end) { + this.start = start; + this.end = end; + if (p.sourceFile !== null) { this.source = p.sourceFile; } + }; + + // The `getLineInfo` function is mostly useful when the + // `locations` option is off (for performance reasons) and you + // want to find the line/column position for a given character + // offset. `input` should be the code string that the offset refers + // into. + + function getLineInfo(input, offset) { + for (var line = 1, cur = 0;;) { + lineBreakG.lastIndex = cur; + var match = lineBreakG.exec(input); + if (match && match.index < offset) { + ++line; + cur = match.index + match[0].length; + } else { + return new Position(line, offset - cur) + } + } + } + + // A second optional argument can be given to further configure + // the parser process. These options are recognized: + + var defaultOptions = { + // `ecmaVersion` indicates the ECMAScript version to parse. Must be + // either 3, 5, 6 (2015), 7 (2016), 8 (2017), 9 (2018), or 10 + // (2019). This influences support for strict mode, the set of + // reserved words, and support for new syntax features. The default + // is 10. + ecmaVersion: 10, + // `sourceType` indicates the mode the code should be parsed in. + // Can be either `"script"` or `"module"`. This influences global + // strict mode and parsing of `import` and `export` declarations. + sourceType: "script", + // `onInsertedSemicolon` can be a callback that will be called + // when a semicolon is automatically inserted. It will be passed + // the position of the comma as an offset, and if `locations` is + // enabled, it is given the location as a `{line, column}` object + // as second argument. + onInsertedSemicolon: null, + // `onTrailingComma` is similar to `onInsertedSemicolon`, but for + // trailing commas. + onTrailingComma: null, + // By default, reserved words are only enforced if ecmaVersion >= 5. + // Set `allowReserved` to a boolean value to explicitly turn this on + // an off. When this option has the value "never", reserved words + // and keywords can also not be used as property names. + allowReserved: null, + // When enabled, a return at the top level is not considered an + // error. + allowReturnOutsideFunction: false, + // When enabled, import/export statements are not constrained to + // appearing at the top of the program. + allowImportExportEverywhere: false, + // When enabled, await identifiers are allowed to appear at the top-level scope, + // but they are still not allowed in non-async functions. + allowAwaitOutsideFunction: false, + // When enabled, hashbang directive in the beginning of file + // is allowed and treated as a line comment. + allowHashBang: false, + // When `locations` is on, `loc` properties holding objects with + // `start` and `end` properties in `{line, column}` form (with + // line being 1-based and column 0-based) will be attached to the + // nodes. + locations: false, + // A function can be passed as `onToken` option, which will + // cause Acorn to call that function with object in the same + // format as tokens returned from `tokenizer().getToken()`. Note + // that you are not allowed to call the parser from the + // callback—that will corrupt its internal state. + onToken: null, + // A function can be passed as `onComment` option, which will + // cause Acorn to call that function with `(block, text, start, + // end)` parameters whenever a comment is skipped. `block` is a + // boolean indicating whether this is a block (`/* */`) comment, + // `text` is the content of the comment, and `start` and `end` are + // character offsets that denote the start and end of the comment. + // When the `locations` option is on, two more parameters are + // passed, the full `{line, column}` locations of the start and + // end of the comments. Note that you are not allowed to call the + // parser from the callback—that will corrupt its internal state. + onComment: null, + // Nodes have their start and end characters offsets recorded in + // `start` and `end` properties (directly on the node, rather than + // the `loc` object, which holds line/column data. To also add a + // [semi-standardized][range] `range` property holding a `[start, + // end]` array with the same numbers, set the `ranges` option to + // `true`. + // + // [range]: https://bugzilla.mozilla.org/show_bug.cgi?id=745678 + ranges: false, + // It is possible to parse multiple files into a single AST by + // passing the tree produced by parsing the first file as + // `program` option in subsequent parses. This will add the + // toplevel forms of the parsed file to the `Program` (top) node + // of an existing parse tree. + program: null, + // When `locations` is on, you can pass this to record the source + // file in every node's `loc` object. + sourceFile: null, + // This value, if given, is stored in every node, whether + // `locations` is on or off. + directSourceFile: null, + // When enabled, parenthesized expressions are represented by + // (non-standard) ParenthesizedExpression nodes + preserveParens: false + }; + + // Interpret and default an options object + + function getOptions(opts) { + var options = {}; + + for (var opt in defaultOptions) + { options[opt] = opts && has(opts, opt) ? opts[opt] : defaultOptions[opt]; } + + if (options.ecmaVersion >= 2015) + { options.ecmaVersion -= 2009; } + + if (options.allowReserved == null) + { options.allowReserved = options.ecmaVersion < 5; } + + if (isArray(options.onToken)) { + var tokens = options.onToken; + options.onToken = function (token) { return tokens.push(token); }; + } + if (isArray(options.onComment)) + { options.onComment = pushComment(options, options.onComment); } + + return options + } + + function pushComment(options, array) { + return function(block, text, start, end, startLoc, endLoc) { + var comment = { + type: block ? "Block" : "Line", + value: text, + start: start, + end: end + }; + if (options.locations) + { comment.loc = new SourceLocation(this, startLoc, endLoc); } + if (options.ranges) + { comment.range = [start, end]; } + array.push(comment); + } + } + + // Each scope gets a bitset that may contain these flags + var + SCOPE_TOP = 1, + SCOPE_FUNCTION = 2, + SCOPE_VAR = SCOPE_TOP | SCOPE_FUNCTION, + SCOPE_ASYNC = 4, + SCOPE_GENERATOR = 8, + SCOPE_ARROW = 16, + SCOPE_SIMPLE_CATCH = 32, + SCOPE_SUPER = 64, + SCOPE_DIRECT_SUPER = 128; + + function functionFlags(async, generator) { + return SCOPE_FUNCTION | (async ? SCOPE_ASYNC : 0) | (generator ? SCOPE_GENERATOR : 0) + } + + // Used in checkLVal and declareName to determine the type of a binding + var + BIND_NONE = 0, // Not a binding + BIND_VAR = 1, // Var-style binding + BIND_LEXICAL = 2, // Let- or const-style binding + BIND_FUNCTION = 3, // Function declaration + BIND_SIMPLE_CATCH = 4, // Simple (identifier pattern) catch binding + BIND_OUTSIDE = 5; // Special case for function names as bound inside the function + + var Parser = function Parser(options, input, startPos) { + this.options = options = getOptions(options); + this.sourceFile = options.sourceFile; + this.keywords = wordsRegexp(keywords[options.ecmaVersion >= 6 ? 6 : options.sourceType === "module" ? "5module" : 5]); + var reserved = ""; + if (options.allowReserved !== true) { + for (var v = options.ecmaVersion;; v--) + { if (reserved = reservedWords[v]) { break } } + if (options.sourceType === "module") { reserved += " await"; } + } + this.reservedWords = wordsRegexp(reserved); + var reservedStrict = (reserved ? reserved + " " : "") + reservedWords.strict; + this.reservedWordsStrict = wordsRegexp(reservedStrict); + this.reservedWordsStrictBind = wordsRegexp(reservedStrict + " " + reservedWords.strictBind); + this.input = String(input); + + // Used to signal to callers of `readWord1` whether the word + // contained any escape sequences. This is needed because words with + // escape sequences must not be interpreted as keywords. + this.containsEsc = false; + + // Set up token state + + // The current position of the tokenizer in the input. + if (startPos) { + this.pos = startPos; + this.lineStart = this.input.lastIndexOf("\n", startPos - 1) + 1; + this.curLine = this.input.slice(0, this.lineStart).split(lineBreak).length; + } else { + this.pos = this.lineStart = 0; + this.curLine = 1; + } + + // Properties of the current token: + // Its type + this.type = types.eof; + // For tokens that include more information than their type, the value + this.value = null; + // Its start and end offset + this.start = this.end = this.pos; + // And, if locations are used, the {line, column} object + // corresponding to those offsets + this.startLoc = this.endLoc = this.curPosition(); + + // Position information for the previous token + this.lastTokEndLoc = this.lastTokStartLoc = null; + this.lastTokStart = this.lastTokEnd = this.pos; + + // The context stack is used to superficially track syntactic + // context to predict whether a regular expression is allowed in a + // given position. + this.context = this.initialContext(); + this.exprAllowed = true; + + // Figure out if it's a module code. + this.inModule = options.sourceType === "module"; + this.strict = this.inModule || this.strictDirective(this.pos); + + // Used to signify the start of a potential arrow function + this.potentialArrowAt = -1; + + // Positions to delayed-check that yield/await does not exist in default parameters. + this.yieldPos = this.awaitPos = this.awaitIdentPos = 0; + // Labels in scope. + this.labels = []; + // Thus-far undefined exports. + this.undefinedExports = {}; + + // If enabled, skip leading hashbang line. + if (this.pos === 0 && options.allowHashBang && this.input.slice(0, 2) === "#!") + { this.skipLineComment(2); } + + // Scope tracking for duplicate variable names (see scope.js) + this.scopeStack = []; + this.enterScope(SCOPE_TOP); + + // For RegExp validation + this.regexpState = null; + }; + + var prototypeAccessors = { inFunction: { configurable: true },inGenerator: { configurable: true },inAsync: { configurable: true },allowSuper: { configurable: true },allowDirectSuper: { configurable: true },treatFunctionsAsVar: { configurable: true } }; + + Parser.prototype.parse = function parse () { + var node = this.options.program || this.startNode(); + this.nextToken(); + return this.parseTopLevel(node) + }; + + prototypeAccessors.inFunction.get = function () { return (this.currentVarScope().flags & SCOPE_FUNCTION) > 0 }; + prototypeAccessors.inGenerator.get = function () { return (this.currentVarScope().flags & SCOPE_GENERATOR) > 0 }; + prototypeAccessors.inAsync.get = function () { return (this.currentVarScope().flags & SCOPE_ASYNC) > 0 }; + prototypeAccessors.allowSuper.get = function () { return (this.currentThisScope().flags & SCOPE_SUPER) > 0 }; + prototypeAccessors.allowDirectSuper.get = function () { return (this.currentThisScope().flags & SCOPE_DIRECT_SUPER) > 0 }; + prototypeAccessors.treatFunctionsAsVar.get = function () { return this.treatFunctionsAsVarInScope(this.currentScope()) }; + + // Switch to a getter for 7.0.0. + Parser.prototype.inNonArrowFunction = function inNonArrowFunction () { return (this.currentThisScope().flags & SCOPE_FUNCTION) > 0 }; + + Parser.extend = function extend () { + var plugins = [], len = arguments.length; + while ( len-- ) plugins[ len ] = arguments[ len ]; + + var cls = this; + for (var i = 0; i < plugins.length; i++) { cls = plugins[i](cls); } + return cls + }; + + Parser.parse = function parse (input, options) { + return new this(options, input).parse() + }; + + Parser.parseExpressionAt = function parseExpressionAt (input, pos, options) { + var parser = new this(options, input, pos); + parser.nextToken(); + return parser.parseExpression() + }; + + Parser.tokenizer = function tokenizer (input, options) { + return new this(options, input) + }; + + Object.defineProperties( Parser.prototype, prototypeAccessors ); + + var pp = Parser.prototype; + + // ## Parser utilities + + var literal = /^(?:'((?:\\.|[^'])*?)'|"((?:\\.|[^"])*?)")/; + pp.strictDirective = function(start) { + for (;;) { + // Try to find string literal. + skipWhiteSpace.lastIndex = start; + start += skipWhiteSpace.exec(this.input)[0].length; + var match = literal.exec(this.input.slice(start)); + if (!match) { return false } + if ((match[1] || match[2]) === "use strict") { return true } + start += match[0].length; + + // Skip semicolon, if any. + skipWhiteSpace.lastIndex = start; + start += skipWhiteSpace.exec(this.input)[0].length; + if (this.input[start] === ";") + { start++; } + } + }; + + // Predicate that tests whether the next token is of the given + // type, and if yes, consumes it as a side effect. + + pp.eat = function(type) { + if (this.type === type) { + this.next(); + return true + } else { + return false + } + }; + + // Tests whether parsed token is a contextual keyword. + + pp.isContextual = function(name) { + return this.type === types.name && this.value === name && !this.containsEsc + }; + + // Consumes contextual keyword if possible. + + pp.eatContextual = function(name) { + if (!this.isContextual(name)) { return false } + this.next(); + return true + }; + + // Asserts that following token is given contextual keyword. + + pp.expectContextual = function(name) { + if (!this.eatContextual(name)) { this.unexpected(); } + }; + + // Test whether a semicolon can be inserted at the current position. + + pp.canInsertSemicolon = function() { + return this.type === types.eof || + this.type === types.braceR || + lineBreak.test(this.input.slice(this.lastTokEnd, this.start)) + }; + + pp.insertSemicolon = function() { + if (this.canInsertSemicolon()) { + if (this.options.onInsertedSemicolon) + { this.options.onInsertedSemicolon(this.lastTokEnd, this.lastTokEndLoc); } + return true + } + }; + + // Consume a semicolon, or, failing that, see if we are allowed to + // pretend that there is a semicolon at this position. + + pp.semicolon = function() { + if (!this.eat(types.semi) && !this.insertSemicolon()) { this.unexpected(); } + }; + + pp.afterTrailingComma = function(tokType, notNext) { + if (this.type === tokType) { + if (this.options.onTrailingComma) + { this.options.onTrailingComma(this.lastTokStart, this.lastTokStartLoc); } + if (!notNext) + { this.next(); } + return true + } + }; + + // Expect a token of a given type. If found, consume it, otherwise, + // raise an unexpected token error. + + pp.expect = function(type) { + this.eat(type) || this.unexpected(); + }; + + // Raise an unexpected token error. + + pp.unexpected = function(pos) { + this.raise(pos != null ? pos : this.start, "Unexpected token"); + }; + + function DestructuringErrors() { + this.shorthandAssign = + this.trailingComma = + this.parenthesizedAssign = + this.parenthesizedBind = + this.doubleProto = + -1; + } + + pp.checkPatternErrors = function(refDestructuringErrors, isAssign) { + if (!refDestructuringErrors) { return } + if (refDestructuringErrors.trailingComma > -1) + { this.raiseRecoverable(refDestructuringErrors.trailingComma, "Comma is not permitted after the rest element"); } + var parens = isAssign ? refDestructuringErrors.parenthesizedAssign : refDestructuringErrors.parenthesizedBind; + if (parens > -1) { this.raiseRecoverable(parens, "Parenthesized pattern"); } + }; + + pp.checkExpressionErrors = function(refDestructuringErrors, andThrow) { + if (!refDestructuringErrors) { return false } + var shorthandAssign = refDestructuringErrors.shorthandAssign; + var doubleProto = refDestructuringErrors.doubleProto; + if (!andThrow) { return shorthandAssign >= 0 || doubleProto >= 0 } + if (shorthandAssign >= 0) + { this.raise(shorthandAssign, "Shorthand property assignments are valid only in destructuring patterns"); } + if (doubleProto >= 0) + { this.raiseRecoverable(doubleProto, "Redefinition of __proto__ property"); } + }; + + pp.checkYieldAwaitInDefaultParams = function() { + if (this.yieldPos && (!this.awaitPos || this.yieldPos < this.awaitPos)) + { this.raise(this.yieldPos, "Yield expression cannot be a default value"); } + if (this.awaitPos) + { this.raise(this.awaitPos, "Await expression cannot be a default value"); } + }; + + pp.isSimpleAssignTarget = function(expr) { + if (expr.type === "ParenthesizedExpression") + { return this.isSimpleAssignTarget(expr.expression) } + return expr.type === "Identifier" || expr.type === "MemberExpression" + }; + + var pp$1 = Parser.prototype; + + // ### Statement parsing + + // Parse a program. Initializes the parser, reads any number of + // statements, and wraps them in a Program node. Optionally takes a + // `program` argument. If present, the statements will be appended + // to its body instead of creating a new node. + + pp$1.parseTopLevel = function(node) { + var exports = {}; + if (!node.body) { node.body = []; } + while (this.type !== types.eof) { + var stmt = this.parseStatement(null, true, exports); + node.body.push(stmt); + } + if (this.inModule) + { for (var i = 0, list = Object.keys(this.undefinedExports); i < list.length; i += 1) + { + var name = list[i]; + + this.raiseRecoverable(this.undefinedExports[name].start, ("Export '" + name + "' is not defined")); + } } + this.adaptDirectivePrologue(node.body); + this.next(); + node.sourceType = this.options.sourceType; + return this.finishNode(node, "Program") + }; + + var loopLabel = {kind: "loop"}, switchLabel = {kind: "switch"}; + + pp$1.isLet = function(context) { + if (this.options.ecmaVersion < 6 || !this.isContextual("let")) { return false } + skipWhiteSpace.lastIndex = this.pos; + var skip = skipWhiteSpace.exec(this.input); + var next = this.pos + skip[0].length, nextCh = this.input.charCodeAt(next); + // For ambiguous cases, determine if a LexicalDeclaration (or only a + // Statement) is allowed here. If context is not empty then only a Statement + // is allowed. However, `let [` is an explicit negative lookahead for + // ExpressionStatement, so special-case it first. + if (nextCh === 91) { return true } // '[' + if (context) { return false } + + if (nextCh === 123) { return true } // '{' + if (isIdentifierStart(nextCh, true)) { + var pos = next + 1; + while (isIdentifierChar(this.input.charCodeAt(pos), true)) { ++pos; } + var ident = this.input.slice(next, pos); + if (!keywordRelationalOperator.test(ident)) { return true } + } + return false + }; + + // check 'async [no LineTerminator here] function' + // - 'async /*foo*/ function' is OK. + // - 'async /*\n*/ function' is invalid. + pp$1.isAsyncFunction = function() { + if (this.options.ecmaVersion < 8 || !this.isContextual("async")) + { return false } + + skipWhiteSpace.lastIndex = this.pos; + var skip = skipWhiteSpace.exec(this.input); + var next = this.pos + skip[0].length; + return !lineBreak.test(this.input.slice(this.pos, next)) && + this.input.slice(next, next + 8) === "function" && + (next + 8 === this.input.length || !isIdentifierChar(this.input.charAt(next + 8))) + }; + + // Parse a single statement. + // + // If expecting a statement and finding a slash operator, parse a + // regular expression literal. This is to handle cases like + // `if (foo) /blah/.exec(foo)`, where looking at the previous token + // does not help. + + pp$1.parseStatement = function(context, topLevel, exports) { + var starttype = this.type, node = this.startNode(), kind; + + if (this.isLet(context)) { + starttype = types._var; + kind = "let"; + } + + // Most types of statements are recognized by the keyword they + // start with. Many are trivial to parse, some require a bit of + // complexity. + + switch (starttype) { + case types._break: case types._continue: return this.parseBreakContinueStatement(node, starttype.keyword) + case types._debugger: return this.parseDebuggerStatement(node) + case types._do: return this.parseDoStatement(node) + case types._for: return this.parseForStatement(node) + case types._function: + // Function as sole body of either an if statement or a labeled statement + // works, but not when it is part of a labeled statement that is the sole + // body of an if statement. + if ((context && (this.strict || context !== "if" && context !== "label")) && this.options.ecmaVersion >= 6) { this.unexpected(); } + return this.parseFunctionStatement(node, false, !context) + case types._class: + if (context) { this.unexpected(); } + return this.parseClass(node, true) + case types._if: return this.parseIfStatement(node) + case types._return: return this.parseReturnStatement(node) + case types._switch: return this.parseSwitchStatement(node) + case types._throw: return this.parseThrowStatement(node) + case types._try: return this.parseTryStatement(node) + case types._const: case types._var: + kind = kind || this.value; + if (context && kind !== "var") { this.unexpected(); } + return this.parseVarStatement(node, kind) + case types._while: return this.parseWhileStatement(node) + case types._with: return this.parseWithStatement(node) + case types.braceL: return this.parseBlock(true, node) + case types.semi: return this.parseEmptyStatement(node) + case types._export: + case types._import: + if (this.options.ecmaVersion > 10 && starttype === types._import) { + skipWhiteSpace.lastIndex = this.pos; + var skip = skipWhiteSpace.exec(this.input); + var next = this.pos + skip[0].length, nextCh = this.input.charCodeAt(next); + if (nextCh === 40) // '(' + { return this.parseExpressionStatement(node, this.parseExpression()) } + } + + if (!this.options.allowImportExportEverywhere) { + if (!topLevel) + { this.raise(this.start, "'import' and 'export' may only appear at the top level"); } + if (!this.inModule) + { this.raise(this.start, "'import' and 'export' may appear only with 'sourceType: module'"); } + } + return starttype === types._import ? this.parseImport(node) : this.parseExport(node, exports) + + // If the statement does not start with a statement keyword or a + // brace, it's an ExpressionStatement or LabeledStatement. We + // simply start parsing an expression, and afterwards, if the + // next token is a colon and the expression was a simple + // Identifier node, we switch to interpreting it as a label. + default: + if (this.isAsyncFunction()) { + if (context) { this.unexpected(); } + this.next(); + return this.parseFunctionStatement(node, true, !context) + } + + var maybeName = this.value, expr = this.parseExpression(); + if (starttype === types.name && expr.type === "Identifier" && this.eat(types.colon)) + { return this.parseLabeledStatement(node, maybeName, expr, context) } + else { return this.parseExpressionStatement(node, expr) } + } + }; + + pp$1.parseBreakContinueStatement = function(node, keyword) { + var isBreak = keyword === "break"; + this.next(); + if (this.eat(types.semi) || this.insertSemicolon()) { node.label = null; } + else if (this.type !== types.name) { this.unexpected(); } + else { + node.label = this.parseIdent(); + this.semicolon(); + } + + // Verify that there is an actual destination to break or + // continue to. + var i = 0; + for (; i < this.labels.length; ++i) { + var lab = this.labels[i]; + if (node.label == null || lab.name === node.label.name) { + if (lab.kind != null && (isBreak || lab.kind === "loop")) { break } + if (node.label && isBreak) { break } + } + } + if (i === this.labels.length) { this.raise(node.start, "Unsyntactic " + keyword); } + return this.finishNode(node, isBreak ? "BreakStatement" : "ContinueStatement") + }; + + pp$1.parseDebuggerStatement = function(node) { + this.next(); + this.semicolon(); + return this.finishNode(node, "DebuggerStatement") + }; + + pp$1.parseDoStatement = function(node) { + this.next(); + this.labels.push(loopLabel); + node.body = this.parseStatement("do"); + this.labels.pop(); + this.expect(types._while); + node.test = this.parseParenExpression(); + if (this.options.ecmaVersion >= 6) + { this.eat(types.semi); } + else + { this.semicolon(); } + return this.finishNode(node, "DoWhileStatement") + }; + + // Disambiguating between a `for` and a `for`/`in` or `for`/`of` + // loop is non-trivial. Basically, we have to parse the init `var` + // statement or expression, disallowing the `in` operator (see + // the second parameter to `parseExpression`), and then check + // whether the next token is `in` or `of`. When there is no init + // part (semicolon immediately after the opening parenthesis), it + // is a regular `for` loop. + + pp$1.parseForStatement = function(node) { + this.next(); + var awaitAt = (this.options.ecmaVersion >= 9 && (this.inAsync || (!this.inFunction && this.options.allowAwaitOutsideFunction)) && this.eatContextual("await")) ? this.lastTokStart : -1; + this.labels.push(loopLabel); + this.enterScope(0); + this.expect(types.parenL); + if (this.type === types.semi) { + if (awaitAt > -1) { this.unexpected(awaitAt); } + return this.parseFor(node, null) + } + var isLet = this.isLet(); + if (this.type === types._var || this.type === types._const || isLet) { + var init$1 = this.startNode(), kind = isLet ? "let" : this.value; + this.next(); + this.parseVar(init$1, true, kind); + this.finishNode(init$1, "VariableDeclaration"); + if ((this.type === types._in || (this.options.ecmaVersion >= 6 && this.isContextual("of"))) && init$1.declarations.length === 1) { + if (this.options.ecmaVersion >= 9) { + if (this.type === types._in) { + if (awaitAt > -1) { this.unexpected(awaitAt); } + } else { node.await = awaitAt > -1; } + } + return this.parseForIn(node, init$1) + } + if (awaitAt > -1) { this.unexpected(awaitAt); } + return this.parseFor(node, init$1) + } + var refDestructuringErrors = new DestructuringErrors; + var init = this.parseExpression(true, refDestructuringErrors); + if (this.type === types._in || (this.options.ecmaVersion >= 6 && this.isContextual("of"))) { + if (this.options.ecmaVersion >= 9) { + if (this.type === types._in) { + if (awaitAt > -1) { this.unexpected(awaitAt); } + } else { node.await = awaitAt > -1; } + } + this.toAssignable(init, false, refDestructuringErrors); + this.checkLVal(init); + return this.parseForIn(node, init) + } else { + this.checkExpressionErrors(refDestructuringErrors, true); + } + if (awaitAt > -1) { this.unexpected(awaitAt); } + return this.parseFor(node, init) + }; + + pp$1.parseFunctionStatement = function(node, isAsync, declarationPosition) { + this.next(); + return this.parseFunction(node, FUNC_STATEMENT | (declarationPosition ? 0 : FUNC_HANGING_STATEMENT), false, isAsync) + }; + + pp$1.parseIfStatement = function(node) { + this.next(); + node.test = this.parseParenExpression(); + // allow function declarations in branches, but only in non-strict mode + node.consequent = this.parseStatement("if"); + node.alternate = this.eat(types._else) ? this.parseStatement("if") : null; + return this.finishNode(node, "IfStatement") + }; + + pp$1.parseReturnStatement = function(node) { + if (!this.inFunction && !this.options.allowReturnOutsideFunction) + { this.raise(this.start, "'return' outside of function"); } + this.next(); + + // In `return` (and `break`/`continue`), the keywords with + // optional arguments, we eagerly look for a semicolon or the + // possibility to insert one. + + if (this.eat(types.semi) || this.insertSemicolon()) { node.argument = null; } + else { node.argument = this.parseExpression(); this.semicolon(); } + return this.finishNode(node, "ReturnStatement") + }; + + pp$1.parseSwitchStatement = function(node) { + this.next(); + node.discriminant = this.parseParenExpression(); + node.cases = []; + this.expect(types.braceL); + this.labels.push(switchLabel); + this.enterScope(0); + + // Statements under must be grouped (by label) in SwitchCase + // nodes. `cur` is used to keep the node that we are currently + // adding statements to. + + var cur; + for (var sawDefault = false; this.type !== types.braceR;) { + if (this.type === types._case || this.type === types._default) { + var isCase = this.type === types._case; + if (cur) { this.finishNode(cur, "SwitchCase"); } + node.cases.push(cur = this.startNode()); + cur.consequent = []; + this.next(); + if (isCase) { + cur.test = this.parseExpression(); + } else { + if (sawDefault) { this.raiseRecoverable(this.lastTokStart, "Multiple default clauses"); } + sawDefault = true; + cur.test = null; + } + this.expect(types.colon); + } else { + if (!cur) { this.unexpected(); } + cur.consequent.push(this.parseStatement(null)); + } + } + this.exitScope(); + if (cur) { this.finishNode(cur, "SwitchCase"); } + this.next(); // Closing brace + this.labels.pop(); + return this.finishNode(node, "SwitchStatement") + }; + + pp$1.parseThrowStatement = function(node) { + this.next(); + if (lineBreak.test(this.input.slice(this.lastTokEnd, this.start))) + { this.raise(this.lastTokEnd, "Illegal newline after throw"); } + node.argument = this.parseExpression(); + this.semicolon(); + return this.finishNode(node, "ThrowStatement") + }; + + // Reused empty array added for node fields that are always empty. + + var empty = []; + + pp$1.parseTryStatement = function(node) { + this.next(); + node.block = this.parseBlock(); + node.handler = null; + if (this.type === types._catch) { + var clause = this.startNode(); + this.next(); + if (this.eat(types.parenL)) { + clause.param = this.parseBindingAtom(); + var simple = clause.param.type === "Identifier"; + this.enterScope(simple ? SCOPE_SIMPLE_CATCH : 0); + this.checkLVal(clause.param, simple ? BIND_SIMPLE_CATCH : BIND_LEXICAL); + this.expect(types.parenR); + } else { + if (this.options.ecmaVersion < 10) { this.unexpected(); } + clause.param = null; + this.enterScope(0); + } + clause.body = this.parseBlock(false); + this.exitScope(); + node.handler = this.finishNode(clause, "CatchClause"); + } + node.finalizer = this.eat(types._finally) ? this.parseBlock() : null; + if (!node.handler && !node.finalizer) + { this.raise(node.start, "Missing catch or finally clause"); } + return this.finishNode(node, "TryStatement") + }; + + pp$1.parseVarStatement = function(node, kind) { + this.next(); + this.parseVar(node, false, kind); + this.semicolon(); + return this.finishNode(node, "VariableDeclaration") + }; + + pp$1.parseWhileStatement = function(node) { + this.next(); + node.test = this.parseParenExpression(); + this.labels.push(loopLabel); + node.body = this.parseStatement("while"); + this.labels.pop(); + return this.finishNode(node, "WhileStatement") + }; + + pp$1.parseWithStatement = function(node) { + if (this.strict) { this.raise(this.start, "'with' in strict mode"); } + this.next(); + node.object = this.parseParenExpression(); + node.body = this.parseStatement("with"); + return this.finishNode(node, "WithStatement") + }; + + pp$1.parseEmptyStatement = function(node) { + this.next(); + return this.finishNode(node, "EmptyStatement") + }; + + pp$1.parseLabeledStatement = function(node, maybeName, expr, context) { + for (var i$1 = 0, list = this.labels; i$1 < list.length; i$1 += 1) + { + var label = list[i$1]; + + if (label.name === maybeName) + { this.raise(expr.start, "Label '" + maybeName + "' is already declared"); + } } + var kind = this.type.isLoop ? "loop" : this.type === types._switch ? "switch" : null; + for (var i = this.labels.length - 1; i >= 0; i--) { + var label$1 = this.labels[i]; + if (label$1.statementStart === node.start) { + // Update information about previous labels on this node + label$1.statementStart = this.start; + label$1.kind = kind; + } else { break } + } + this.labels.push({name: maybeName, kind: kind, statementStart: this.start}); + node.body = this.parseStatement(context ? context.indexOf("label") === -1 ? context + "label" : context : "label"); + this.labels.pop(); + node.label = expr; + return this.finishNode(node, "LabeledStatement") + }; + + pp$1.parseExpressionStatement = function(node, expr) { + node.expression = expr; + this.semicolon(); + return this.finishNode(node, "ExpressionStatement") + }; + + // Parse a semicolon-enclosed block of statements, handling `"use + // strict"` declarations when `allowStrict` is true (used for + // function bodies). + + pp$1.parseBlock = function(createNewLexicalScope, node) { + if ( createNewLexicalScope === void 0 ) createNewLexicalScope = true; + if ( node === void 0 ) node = this.startNode(); + + node.body = []; + this.expect(types.braceL); + if (createNewLexicalScope) { this.enterScope(0); } + while (!this.eat(types.braceR)) { + var stmt = this.parseStatement(null); + node.body.push(stmt); + } + if (createNewLexicalScope) { this.exitScope(); } + return this.finishNode(node, "BlockStatement") + }; + + // Parse a regular `for` loop. The disambiguation code in + // `parseStatement` will already have parsed the init statement or + // expression. + + pp$1.parseFor = function(node, init) { + node.init = init; + this.expect(types.semi); + node.test = this.type === types.semi ? null : this.parseExpression(); + this.expect(types.semi); + node.update = this.type === types.parenR ? null : this.parseExpression(); + this.expect(types.parenR); + node.body = this.parseStatement("for"); + this.exitScope(); + this.labels.pop(); + return this.finishNode(node, "ForStatement") + }; + + // Parse a `for`/`in` and `for`/`of` loop, which are almost + // same from parser's perspective. + + pp$1.parseForIn = function(node, init) { + var isForIn = this.type === types._in; + this.next(); + + if ( + init.type === "VariableDeclaration" && + init.declarations[0].init != null && + ( + !isForIn || + this.options.ecmaVersion < 8 || + this.strict || + init.kind !== "var" || + init.declarations[0].id.type !== "Identifier" + ) + ) { + this.raise( + init.start, + ((isForIn ? "for-in" : "for-of") + " loop variable declaration may not have an initializer") + ); + } else if (init.type === "AssignmentPattern") { + this.raise(init.start, "Invalid left-hand side in for-loop"); + } + node.left = init; + node.right = isForIn ? this.parseExpression() : this.parseMaybeAssign(); + this.expect(types.parenR); + node.body = this.parseStatement("for"); + this.exitScope(); + this.labels.pop(); + return this.finishNode(node, isForIn ? "ForInStatement" : "ForOfStatement") + }; + + // Parse a list of variable declarations. + + pp$1.parseVar = function(node, isFor, kind) { + node.declarations = []; + node.kind = kind; + for (;;) { + var decl = this.startNode(); + this.parseVarId(decl, kind); + if (this.eat(types.eq)) { + decl.init = this.parseMaybeAssign(isFor); + } else if (kind === "const" && !(this.type === types._in || (this.options.ecmaVersion >= 6 && this.isContextual("of")))) { + this.unexpected(); + } else if (decl.id.type !== "Identifier" && !(isFor && (this.type === types._in || this.isContextual("of")))) { + this.raise(this.lastTokEnd, "Complex binding patterns require an initialization value"); + } else { + decl.init = null; + } + node.declarations.push(this.finishNode(decl, "VariableDeclarator")); + if (!this.eat(types.comma)) { break } + } + return node + }; + + pp$1.parseVarId = function(decl, kind) { + decl.id = this.parseBindingAtom(); + this.checkLVal(decl.id, kind === "var" ? BIND_VAR : BIND_LEXICAL, false); + }; + + var FUNC_STATEMENT = 1, FUNC_HANGING_STATEMENT = 2, FUNC_NULLABLE_ID = 4; + + // Parse a function declaration or literal (depending on the + // `statement & FUNC_STATEMENT`). + + // Remove `allowExpressionBody` for 7.0.0, as it is only called with false + pp$1.parseFunction = function(node, statement, allowExpressionBody, isAsync) { + this.initFunction(node); + if (this.options.ecmaVersion >= 9 || this.options.ecmaVersion >= 6 && !isAsync) { + if (this.type === types.star && (statement & FUNC_HANGING_STATEMENT)) + { this.unexpected(); } + node.generator = this.eat(types.star); + } + if (this.options.ecmaVersion >= 8) + { node.async = !!isAsync; } + + if (statement & FUNC_STATEMENT) { + node.id = (statement & FUNC_NULLABLE_ID) && this.type !== types.name ? null : this.parseIdent(); + if (node.id && !(statement & FUNC_HANGING_STATEMENT)) + // If it is a regular function declaration in sloppy mode, then it is + // subject to Annex B semantics (BIND_FUNCTION). Otherwise, the binding + // mode depends on properties of the current scope (see + // treatFunctionsAsVar). + { this.checkLVal(node.id, (this.strict || node.generator || node.async) ? this.treatFunctionsAsVar ? BIND_VAR : BIND_LEXICAL : BIND_FUNCTION); } + } + + var oldYieldPos = this.yieldPos, oldAwaitPos = this.awaitPos, oldAwaitIdentPos = this.awaitIdentPos; + this.yieldPos = 0; + this.awaitPos = 0; + this.awaitIdentPos = 0; + this.enterScope(functionFlags(node.async, node.generator)); + + if (!(statement & FUNC_STATEMENT)) + { node.id = this.type === types.name ? this.parseIdent() : null; } + + this.parseFunctionParams(node); + this.parseFunctionBody(node, allowExpressionBody, false); + + this.yieldPos = oldYieldPos; + this.awaitPos = oldAwaitPos; + this.awaitIdentPos = oldAwaitIdentPos; + return this.finishNode(node, (statement & FUNC_STATEMENT) ? "FunctionDeclaration" : "FunctionExpression") + }; + + pp$1.parseFunctionParams = function(node) { + this.expect(types.parenL); + node.params = this.parseBindingList(types.parenR, false, this.options.ecmaVersion >= 8); + this.checkYieldAwaitInDefaultParams(); + }; + + // Parse a class declaration or literal (depending on the + // `isStatement` parameter). + + pp$1.parseClass = function(node, isStatement) { + this.next(); + + // ecma-262 14.6 Class Definitions + // A class definition is always strict mode code. + var oldStrict = this.strict; + this.strict = true; + + this.parseClassId(node, isStatement); + this.parseClassSuper(node); + var classBody = this.startNode(); + var hadConstructor = false; + classBody.body = []; + this.expect(types.braceL); + while (!this.eat(types.braceR)) { + var element = this.parseClassElement(node.superClass !== null); + if (element) { + classBody.body.push(element); + if (element.type === "MethodDefinition" && element.kind === "constructor") { + if (hadConstructor) { this.raise(element.start, "Duplicate constructor in the same class"); } + hadConstructor = true; + } + } + } + node.body = this.finishNode(classBody, "ClassBody"); + this.strict = oldStrict; + return this.finishNode(node, isStatement ? "ClassDeclaration" : "ClassExpression") + }; + + pp$1.parseClassElement = function(constructorAllowsSuper) { + var this$1 = this; + + if (this.eat(types.semi)) { return null } + + var method = this.startNode(); + var tryContextual = function (k, noLineBreak) { + if ( noLineBreak === void 0 ) noLineBreak = false; + + var start = this$1.start, startLoc = this$1.startLoc; + if (!this$1.eatContextual(k)) { return false } + if (this$1.type !== types.parenL && (!noLineBreak || !this$1.canInsertSemicolon())) { return true } + if (method.key) { this$1.unexpected(); } + method.computed = false; + method.key = this$1.startNodeAt(start, startLoc); + method.key.name = k; + this$1.finishNode(method.key, "Identifier"); + return false + }; + + method.kind = "method"; + method.static = tryContextual("static"); + var isGenerator = this.eat(types.star); + var isAsync = false; + if (!isGenerator) { + if (this.options.ecmaVersion >= 8 && tryContextual("async", true)) { + isAsync = true; + isGenerator = this.options.ecmaVersion >= 9 && this.eat(types.star); + } else if (tryContextual("get")) { + method.kind = "get"; + } else if (tryContextual("set")) { + method.kind = "set"; + } + } + if (!method.key) { this.parsePropertyName(method); } + var key = method.key; + var allowsDirectSuper = false; + if (!method.computed && !method.static && (key.type === "Identifier" && key.name === "constructor" || + key.type === "Literal" && key.value === "constructor")) { + if (method.kind !== "method") { this.raise(key.start, "Constructor can't have get/set modifier"); } + if (isGenerator) { this.raise(key.start, "Constructor can't be a generator"); } + if (isAsync) { this.raise(key.start, "Constructor can't be an async method"); } + method.kind = "constructor"; + allowsDirectSuper = constructorAllowsSuper; + } else if (method.static && key.type === "Identifier" && key.name === "prototype") { + this.raise(key.start, "Classes may not have a static property named prototype"); + } + this.parseClassMethod(method, isGenerator, isAsync, allowsDirectSuper); + if (method.kind === "get" && method.value.params.length !== 0) + { this.raiseRecoverable(method.value.start, "getter should have no params"); } + if (method.kind === "set" && method.value.params.length !== 1) + { this.raiseRecoverable(method.value.start, "setter should have exactly one param"); } + if (method.kind === "set" && method.value.params[0].type === "RestElement") + { this.raiseRecoverable(method.value.params[0].start, "Setter cannot use rest params"); } + return method + }; + + pp$1.parseClassMethod = function(method, isGenerator, isAsync, allowsDirectSuper) { + method.value = this.parseMethod(isGenerator, isAsync, allowsDirectSuper); + return this.finishNode(method, "MethodDefinition") + }; + + pp$1.parseClassId = function(node, isStatement) { + if (this.type === types.name) { + node.id = this.parseIdent(); + if (isStatement) + { this.checkLVal(node.id, BIND_LEXICAL, false); } + } else { + if (isStatement === true) + { this.unexpected(); } + node.id = null; + } + }; + + pp$1.parseClassSuper = function(node) { + node.superClass = this.eat(types._extends) ? this.parseExprSubscripts() : null; + }; + + // Parses module export declaration. + + pp$1.parseExport = function(node, exports) { + this.next(); + // export * from '...' + if (this.eat(types.star)) { + this.expectContextual("from"); + if (this.type !== types.string) { this.unexpected(); } + node.source = this.parseExprAtom(); + this.semicolon(); + return this.finishNode(node, "ExportAllDeclaration") + } + if (this.eat(types._default)) { // export default ... + this.checkExport(exports, "default", this.lastTokStart); + var isAsync; + if (this.type === types._function || (isAsync = this.isAsyncFunction())) { + var fNode = this.startNode(); + this.next(); + if (isAsync) { this.next(); } + node.declaration = this.parseFunction(fNode, FUNC_STATEMENT | FUNC_NULLABLE_ID, false, isAsync); + } else if (this.type === types._class) { + var cNode = this.startNode(); + node.declaration = this.parseClass(cNode, "nullableID"); + } else { + node.declaration = this.parseMaybeAssign(); + this.semicolon(); + } + return this.finishNode(node, "ExportDefaultDeclaration") + } + // export var|const|let|function|class ... + if (this.shouldParseExportStatement()) { + node.declaration = this.parseStatement(null); + if (node.declaration.type === "VariableDeclaration") + { this.checkVariableExport(exports, node.declaration.declarations); } + else + { this.checkExport(exports, node.declaration.id.name, node.declaration.id.start); } + node.specifiers = []; + node.source = null; + } else { // export { x, y as z } [from '...'] + node.declaration = null; + node.specifiers = this.parseExportSpecifiers(exports); + if (this.eatContextual("from")) { + if (this.type !== types.string) { this.unexpected(); } + node.source = this.parseExprAtom(); + } else { + for (var i = 0, list = node.specifiers; i < list.length; i += 1) { + // check for keywords used as local names + var spec = list[i]; + + this.checkUnreserved(spec.local); + // check if export is defined + this.checkLocalExport(spec.local); + } + + node.source = null; + } + this.semicolon(); + } + return this.finishNode(node, "ExportNamedDeclaration") + }; + + pp$1.checkExport = function(exports, name, pos) { + if (!exports) { return } + if (has(exports, name)) + { this.raiseRecoverable(pos, "Duplicate export '" + name + "'"); } + exports[name] = true; + }; + + pp$1.checkPatternExport = function(exports, pat) { + var type = pat.type; + if (type === "Identifier") + { this.checkExport(exports, pat.name, pat.start); } + else if (type === "ObjectPattern") + { for (var i = 0, list = pat.properties; i < list.length; i += 1) + { + var prop = list[i]; + + this.checkPatternExport(exports, prop); + } } + else if (type === "ArrayPattern") + { for (var i$1 = 0, list$1 = pat.elements; i$1 < list$1.length; i$1 += 1) { + var elt = list$1[i$1]; + + if (elt) { this.checkPatternExport(exports, elt); } + } } + else if (type === "Property") + { this.checkPatternExport(exports, pat.value); } + else if (type === "AssignmentPattern") + { this.checkPatternExport(exports, pat.left); } + else if (type === "RestElement") + { this.checkPatternExport(exports, pat.argument); } + else if (type === "ParenthesizedExpression") + { this.checkPatternExport(exports, pat.expression); } + }; + + pp$1.checkVariableExport = function(exports, decls) { + if (!exports) { return } + for (var i = 0, list = decls; i < list.length; i += 1) + { + var decl = list[i]; + + this.checkPatternExport(exports, decl.id); + } + }; + + pp$1.shouldParseExportStatement = function() { + return this.type.keyword === "var" || + this.type.keyword === "const" || + this.type.keyword === "class" || + this.type.keyword === "function" || + this.isLet() || + this.isAsyncFunction() + }; + + // Parses a comma-separated list of module exports. + + pp$1.parseExportSpecifiers = function(exports) { + var nodes = [], first = true; + // export { x, y as z } [from '...'] + this.expect(types.braceL); + while (!this.eat(types.braceR)) { + if (!first) { + this.expect(types.comma); + if (this.afterTrailingComma(types.braceR)) { break } + } else { first = false; } + + var node = this.startNode(); + node.local = this.parseIdent(true); + node.exported = this.eatContextual("as") ? this.parseIdent(true) : node.local; + this.checkExport(exports, node.exported.name, node.exported.start); + nodes.push(this.finishNode(node, "ExportSpecifier")); + } + return nodes + }; + + // Parses import declaration. + + pp$1.parseImport = function(node) { + this.next(); + // import '...' + if (this.type === types.string) { + node.specifiers = empty; + node.source = this.parseExprAtom(); + } else { + node.specifiers = this.parseImportSpecifiers(); + this.expectContextual("from"); + node.source = this.type === types.string ? this.parseExprAtom() : this.unexpected(); + } + this.semicolon(); + return this.finishNode(node, "ImportDeclaration") + }; + + // Parses a comma-separated list of module imports. + + pp$1.parseImportSpecifiers = function() { + var nodes = [], first = true; + if (this.type === types.name) { + // import defaultObj, { x, y as z } from '...' + var node = this.startNode(); + node.local = this.parseIdent(); + this.checkLVal(node.local, BIND_LEXICAL); + nodes.push(this.finishNode(node, "ImportDefaultSpecifier")); + if (!this.eat(types.comma)) { return nodes } + } + if (this.type === types.star) { + var node$1 = this.startNode(); + this.next(); + this.expectContextual("as"); + node$1.local = this.parseIdent(); + this.checkLVal(node$1.local, BIND_LEXICAL); + nodes.push(this.finishNode(node$1, "ImportNamespaceSpecifier")); + return nodes + } + this.expect(types.braceL); + while (!this.eat(types.braceR)) { + if (!first) { + this.expect(types.comma); + if (this.afterTrailingComma(types.braceR)) { break } + } else { first = false; } + + var node$2 = this.startNode(); + node$2.imported = this.parseIdent(true); + if (this.eatContextual("as")) { + node$2.local = this.parseIdent(); + } else { + this.checkUnreserved(node$2.imported); + node$2.local = node$2.imported; + } + this.checkLVal(node$2.local, BIND_LEXICAL); + nodes.push(this.finishNode(node$2, "ImportSpecifier")); + } + return nodes + }; + + // Set `ExpressionStatement#directive` property for directive prologues. + pp$1.adaptDirectivePrologue = function(statements) { + for (var i = 0; i < statements.length && this.isDirectiveCandidate(statements[i]); ++i) { + statements[i].directive = statements[i].expression.raw.slice(1, -1); + } + }; + pp$1.isDirectiveCandidate = function(statement) { + return ( + statement.type === "ExpressionStatement" && + statement.expression.type === "Literal" && + typeof statement.expression.value === "string" && + // Reject parenthesized strings. + (this.input[statement.start] === "\"" || this.input[statement.start] === "'") + ) + }; + + var pp$2 = Parser.prototype; + + // Convert existing expression atom to assignable pattern + // if possible. + + pp$2.toAssignable = function(node, isBinding, refDestructuringErrors) { + if (this.options.ecmaVersion >= 6 && node) { + switch (node.type) { + case "Identifier": + if (this.inAsync && node.name === "await") + { this.raise(node.start, "Cannot use 'await' as identifier inside an async function"); } + break + + case "ObjectPattern": + case "ArrayPattern": + case "RestElement": + break + + case "ObjectExpression": + node.type = "ObjectPattern"; + if (refDestructuringErrors) { this.checkPatternErrors(refDestructuringErrors, true); } + for (var i = 0, list = node.properties; i < list.length; i += 1) { + var prop = list[i]; + + this.toAssignable(prop, isBinding); + // Early error: + // AssignmentRestProperty[Yield, Await] : + // `...` DestructuringAssignmentTarget[Yield, Await] + // + // It is a Syntax Error if |DestructuringAssignmentTarget| is an |ArrayLiteral| or an |ObjectLiteral|. + if ( + prop.type === "RestElement" && + (prop.argument.type === "ArrayPattern" || prop.argument.type === "ObjectPattern") + ) { + this.raise(prop.argument.start, "Unexpected token"); + } + } + break + + case "Property": + // AssignmentProperty has type === "Property" + if (node.kind !== "init") { this.raise(node.key.start, "Object pattern can't contain getter or setter"); } + this.toAssignable(node.value, isBinding); + break + + case "ArrayExpression": + node.type = "ArrayPattern"; + if (refDestructuringErrors) { this.checkPatternErrors(refDestructuringErrors, true); } + this.toAssignableList(node.elements, isBinding); + break + + case "SpreadElement": + node.type = "RestElement"; + this.toAssignable(node.argument, isBinding); + if (node.argument.type === "AssignmentPattern") + { this.raise(node.argument.start, "Rest elements cannot have a default value"); } + break + + case "AssignmentExpression": + if (node.operator !== "=") { this.raise(node.left.end, "Only '=' operator can be used for specifying default value."); } + node.type = "AssignmentPattern"; + delete node.operator; + this.toAssignable(node.left, isBinding); + // falls through to AssignmentPattern + + case "AssignmentPattern": + break + + case "ParenthesizedExpression": + this.toAssignable(node.expression, isBinding, refDestructuringErrors); + break + + case "MemberExpression": + if (!isBinding) { break } + + default: + this.raise(node.start, "Assigning to rvalue"); + } + } else if (refDestructuringErrors) { this.checkPatternErrors(refDestructuringErrors, true); } + return node + }; + + // Convert list of expression atoms to binding list. + + pp$2.toAssignableList = function(exprList, isBinding) { + var end = exprList.length; + for (var i = 0; i < end; i++) { + var elt = exprList[i]; + if (elt) { this.toAssignable(elt, isBinding); } + } + if (end) { + var last = exprList[end - 1]; + if (this.options.ecmaVersion === 6 && isBinding && last && last.type === "RestElement" && last.argument.type !== "Identifier") + { this.unexpected(last.argument.start); } + } + return exprList + }; + + // Parses spread element. + + pp$2.parseSpread = function(refDestructuringErrors) { + var node = this.startNode(); + this.next(); + node.argument = this.parseMaybeAssign(false, refDestructuringErrors); + return this.finishNode(node, "SpreadElement") + }; + + pp$2.parseRestBinding = function() { + var node = this.startNode(); + this.next(); + + // RestElement inside of a function parameter must be an identifier + if (this.options.ecmaVersion === 6 && this.type !== types.name) + { this.unexpected(); } + + node.argument = this.parseBindingAtom(); + + return this.finishNode(node, "RestElement") + }; + + // Parses lvalue (assignable) atom. + + pp$2.parseBindingAtom = function() { + if (this.options.ecmaVersion >= 6) { + switch (this.type) { + case types.bracketL: + var node = this.startNode(); + this.next(); + node.elements = this.parseBindingList(types.bracketR, true, true); + return this.finishNode(node, "ArrayPattern") + + case types.braceL: + return this.parseObj(true) + } + } + return this.parseIdent() + }; + + pp$2.parseBindingList = function(close, allowEmpty, allowTrailingComma) { + var elts = [], first = true; + while (!this.eat(close)) { + if (first) { first = false; } + else { this.expect(types.comma); } + if (allowEmpty && this.type === types.comma) { + elts.push(null); + } else if (allowTrailingComma && this.afterTrailingComma(close)) { + break + } else if (this.type === types.ellipsis) { + var rest = this.parseRestBinding(); + this.parseBindingListItem(rest); + elts.push(rest); + if (this.type === types.comma) { this.raise(this.start, "Comma is not permitted after the rest element"); } + this.expect(close); + break + } else { + var elem = this.parseMaybeDefault(this.start, this.startLoc); + this.parseBindingListItem(elem); + elts.push(elem); + } + } + return elts + }; + + pp$2.parseBindingListItem = function(param) { + return param + }; + + // Parses assignment pattern around given atom if possible. + + pp$2.parseMaybeDefault = function(startPos, startLoc, left) { + left = left || this.parseBindingAtom(); + if (this.options.ecmaVersion < 6 || !this.eat(types.eq)) { return left } + var node = this.startNodeAt(startPos, startLoc); + node.left = left; + node.right = this.parseMaybeAssign(); + return this.finishNode(node, "AssignmentPattern") + }; + + // Verify that a node is an lval — something that can be assigned + // to. + // bindingType can be either: + // 'var' indicating that the lval creates a 'var' binding + // 'let' indicating that the lval creates a lexical ('let' or 'const') binding + // 'none' indicating that the binding should be checked for illegal identifiers, but not for duplicate references + + pp$2.checkLVal = function(expr, bindingType, checkClashes) { + if ( bindingType === void 0 ) bindingType = BIND_NONE; + + switch (expr.type) { + case "Identifier": + if (bindingType === BIND_LEXICAL && expr.name === "let") + { this.raiseRecoverable(expr.start, "let is disallowed as a lexically bound name"); } + if (this.strict && this.reservedWordsStrictBind.test(expr.name)) + { this.raiseRecoverable(expr.start, (bindingType ? "Binding " : "Assigning to ") + expr.name + " in strict mode"); } + if (checkClashes) { + if (has(checkClashes, expr.name)) + { this.raiseRecoverable(expr.start, "Argument name clash"); } + checkClashes[expr.name] = true; + } + if (bindingType !== BIND_NONE && bindingType !== BIND_OUTSIDE) { this.declareName(expr.name, bindingType, expr.start); } + break + + case "MemberExpression": + if (bindingType) { this.raiseRecoverable(expr.start, "Binding member expression"); } + break + + case "ObjectPattern": + for (var i = 0, list = expr.properties; i < list.length; i += 1) + { + var prop = list[i]; + + this.checkLVal(prop, bindingType, checkClashes); + } + break + + case "Property": + // AssignmentProperty has type === "Property" + this.checkLVal(expr.value, bindingType, checkClashes); + break + + case "ArrayPattern": + for (var i$1 = 0, list$1 = expr.elements; i$1 < list$1.length; i$1 += 1) { + var elem = list$1[i$1]; + + if (elem) { this.checkLVal(elem, bindingType, checkClashes); } + } + break + + case "AssignmentPattern": + this.checkLVal(expr.left, bindingType, checkClashes); + break + + case "RestElement": + this.checkLVal(expr.argument, bindingType, checkClashes); + break + + case "ParenthesizedExpression": + this.checkLVal(expr.expression, bindingType, checkClashes); + break + + default: + this.raise(expr.start, (bindingType ? "Binding" : "Assigning to") + " rvalue"); + } + }; + + // A recursive descent parser operates by defining functions for all + + var pp$3 = Parser.prototype; + + // Check if property name clashes with already added. + // Object/class getters and setters are not allowed to clash — + // either with each other or with an init property — and in + // strict mode, init properties are also not allowed to be repeated. + + pp$3.checkPropClash = function(prop, propHash, refDestructuringErrors) { + if (this.options.ecmaVersion >= 9 && prop.type === "SpreadElement") + { return } + if (this.options.ecmaVersion >= 6 && (prop.computed || prop.method || prop.shorthand)) + { return } + var key = prop.key; + var name; + switch (key.type) { + case "Identifier": name = key.name; break + case "Literal": name = String(key.value); break + default: return + } + var kind = prop.kind; + if (this.options.ecmaVersion >= 6) { + if (name === "__proto__" && kind === "init") { + if (propHash.proto) { + if (refDestructuringErrors && refDestructuringErrors.doubleProto < 0) { refDestructuringErrors.doubleProto = key.start; } + // Backwards-compat kludge. Can be removed in version 6.0 + else { this.raiseRecoverable(key.start, "Redefinition of __proto__ property"); } + } + propHash.proto = true; + } + return + } + name = "$" + name; + var other = propHash[name]; + if (other) { + var redefinition; + if (kind === "init") { + redefinition = this.strict && other.init || other.get || other.set; + } else { + redefinition = other.init || other[kind]; + } + if (redefinition) + { this.raiseRecoverable(key.start, "Redefinition of property"); } + } else { + other = propHash[name] = { + init: false, + get: false, + set: false + }; + } + other[kind] = true; + }; + + // ### Expression parsing + + // These nest, from the most general expression type at the top to + // 'atomic', nondivisible expression types at the bottom. Most of + // the functions will simply let the function(s) below them parse, + // and, *if* the syntactic construct they handle is present, wrap + // the AST node that the inner parser gave them in another node. + + // Parse a full expression. The optional arguments are used to + // forbid the `in` operator (in for loops initalization expressions) + // and provide reference for storing '=' operator inside shorthand + // property assignment in contexts where both object expression + // and object pattern might appear (so it's possible to raise + // delayed syntax error at correct position). + + pp$3.parseExpression = function(noIn, refDestructuringErrors) { + var startPos = this.start, startLoc = this.startLoc; + var expr = this.parseMaybeAssign(noIn, refDestructuringErrors); + if (this.type === types.comma) { + var node = this.startNodeAt(startPos, startLoc); + node.expressions = [expr]; + while (this.eat(types.comma)) { node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringErrors)); } + return this.finishNode(node, "SequenceExpression") + } + return expr + }; + + // Parse an assignment expression. This includes applications of + // operators like `+=`. + + pp$3.parseMaybeAssign = function(noIn, refDestructuringErrors, afterLeftParse) { + if (this.isContextual("yield")) { + if (this.inGenerator) { return this.parseYield(noIn) } + // The tokenizer will assume an expression is allowed after + // `yield`, but this isn't that kind of yield + else { this.exprAllowed = false; } + } + + var ownDestructuringErrors = false, oldParenAssign = -1, oldTrailingComma = -1, oldShorthandAssign = -1; + if (refDestructuringErrors) { + oldParenAssign = refDestructuringErrors.parenthesizedAssign; + oldTrailingComma = refDestructuringErrors.trailingComma; + oldShorthandAssign = refDestructuringErrors.shorthandAssign; + refDestructuringErrors.parenthesizedAssign = refDestructuringErrors.trailingComma = refDestructuringErrors.shorthandAssign = -1; + } else { + refDestructuringErrors = new DestructuringErrors; + ownDestructuringErrors = true; + } + + var startPos = this.start, startLoc = this.startLoc; + if (this.type === types.parenL || this.type === types.name) + { this.potentialArrowAt = this.start; } + var left = this.parseMaybeConditional(noIn, refDestructuringErrors); + if (afterLeftParse) { left = afterLeftParse.call(this, left, startPos, startLoc); } + if (this.type.isAssign) { + var node = this.startNodeAt(startPos, startLoc); + node.operator = this.value; + node.left = this.type === types.eq ? this.toAssignable(left, false, refDestructuringErrors) : left; + if (!ownDestructuringErrors) { DestructuringErrors.call(refDestructuringErrors); } + refDestructuringErrors.shorthandAssign = -1; // reset because shorthand default was used correctly + this.checkLVal(left); + this.next(); + node.right = this.parseMaybeAssign(noIn); + return this.finishNode(node, "AssignmentExpression") + } else { + if (ownDestructuringErrors) { this.checkExpressionErrors(refDestructuringErrors, true); } + } + if (oldParenAssign > -1) { refDestructuringErrors.parenthesizedAssign = oldParenAssign; } + if (oldTrailingComma > -1) { refDestructuringErrors.trailingComma = oldTrailingComma; } + if (oldShorthandAssign > -1) { refDestructuringErrors.shorthandAssign = oldShorthandAssign; } + return left + }; + + // Parse a ternary conditional (`?:`) operator. + + pp$3.parseMaybeConditional = function(noIn, refDestructuringErrors) { + var startPos = this.start, startLoc = this.startLoc; + var expr = this.parseExprOps(noIn, refDestructuringErrors); + if (this.checkExpressionErrors(refDestructuringErrors)) { return expr } + if (this.eat(types.question)) { + var node = this.startNodeAt(startPos, startLoc); + node.test = expr; + node.consequent = this.parseMaybeAssign(); + this.expect(types.colon); + node.alternate = this.parseMaybeAssign(noIn); + return this.finishNode(node, "ConditionalExpression") + } + return expr + }; + + // Start the precedence parser. + + pp$3.parseExprOps = function(noIn, refDestructuringErrors) { + var startPos = this.start, startLoc = this.startLoc; + var expr = this.parseMaybeUnary(refDestructuringErrors, false); + if (this.checkExpressionErrors(refDestructuringErrors)) { return expr } + return expr.start === startPos && expr.type === "ArrowFunctionExpression" ? expr : this.parseExprOp(expr, startPos, startLoc, -1, noIn) + }; + + // Parse binary operators with the operator precedence parsing + // algorithm. `left` is the left-hand side of the operator. + // `minPrec` provides context that allows the function to stop and + // defer further parser to one of its callers when it encounters an + // operator that has a lower precedence than the set it is parsing. + + pp$3.parseExprOp = function(left, leftStartPos, leftStartLoc, minPrec, noIn) { + var prec = this.type.binop; + if (prec != null && (!noIn || this.type !== types._in)) { + if (prec > minPrec) { + var logical = this.type === types.logicalOR || this.type === types.logicalAND; + var op = this.value; + this.next(); + var startPos = this.start, startLoc = this.startLoc; + var right = this.parseExprOp(this.parseMaybeUnary(null, false), startPos, startLoc, prec, noIn); + var node = this.buildBinary(leftStartPos, leftStartLoc, left, right, op, logical); + return this.parseExprOp(node, leftStartPos, leftStartLoc, minPrec, noIn) + } + } + return left + }; + + pp$3.buildBinary = function(startPos, startLoc, left, right, op, logical) { + var node = this.startNodeAt(startPos, startLoc); + node.left = left; + node.operator = op; + node.right = right; + return this.finishNode(node, logical ? "LogicalExpression" : "BinaryExpression") + }; + + // Parse unary operators, both prefix and postfix. + + pp$3.parseMaybeUnary = function(refDestructuringErrors, sawUnary) { + var startPos = this.start, startLoc = this.startLoc, expr; + if (this.isContextual("await") && (this.inAsync || (!this.inFunction && this.options.allowAwaitOutsideFunction))) { + expr = this.parseAwait(); + sawUnary = true; + } else if (this.type.prefix) { + var node = this.startNode(), update = this.type === types.incDec; + node.operator = this.value; + node.prefix = true; + this.next(); + node.argument = this.parseMaybeUnary(null, true); + this.checkExpressionErrors(refDestructuringErrors, true); + if (update) { this.checkLVal(node.argument); } + else if (this.strict && node.operator === "delete" && + node.argument.type === "Identifier") + { this.raiseRecoverable(node.start, "Deleting local variable in strict mode"); } + else { sawUnary = true; } + expr = this.finishNode(node, update ? "UpdateExpression" : "UnaryExpression"); + } else { + expr = this.parseExprSubscripts(refDestructuringErrors); + if (this.checkExpressionErrors(refDestructuringErrors)) { return expr } + while (this.type.postfix && !this.canInsertSemicolon()) { + var node$1 = this.startNodeAt(startPos, startLoc); + node$1.operator = this.value; + node$1.prefix = false; + node$1.argument = expr; + this.checkLVal(expr); + this.next(); + expr = this.finishNode(node$1, "UpdateExpression"); + } + } + + if (!sawUnary && this.eat(types.starstar)) + { return this.buildBinary(startPos, startLoc, expr, this.parseMaybeUnary(null, false), "**", false) } + else + { return expr } + }; + + // Parse call, dot, and `[]`-subscript expressions. + + pp$3.parseExprSubscripts = function(refDestructuringErrors) { + var startPos = this.start, startLoc = this.startLoc; + var expr = this.parseExprAtom(refDestructuringErrors); + var skipArrowSubscripts = expr.type === "ArrowFunctionExpression" && this.input.slice(this.lastTokStart, this.lastTokEnd) !== ")"; + if (this.checkExpressionErrors(refDestructuringErrors) || skipArrowSubscripts) { return expr } + var result = this.parseSubscripts(expr, startPos, startLoc); + if (refDestructuringErrors && result.type === "MemberExpression") { + if (refDestructuringErrors.parenthesizedAssign >= result.start) { refDestructuringErrors.parenthesizedAssign = -1; } + if (refDestructuringErrors.parenthesizedBind >= result.start) { refDestructuringErrors.parenthesizedBind = -1; } + } + return result + }; + + pp$3.parseSubscripts = function(base, startPos, startLoc, noCalls) { + var maybeAsyncArrow = this.options.ecmaVersion >= 8 && base.type === "Identifier" && base.name === "async" && + this.lastTokEnd === base.end && !this.canInsertSemicolon() && this.input.slice(base.start, base.end) === "async"; + while (true) { + var element = this.parseSubscript(base, startPos, startLoc, noCalls, maybeAsyncArrow); + if (element === base || element.type === "ArrowFunctionExpression") { return element } + base = element; + } + }; + + pp$3.parseSubscript = function(base, startPos, startLoc, noCalls, maybeAsyncArrow) { + var computed = this.eat(types.bracketL); + if (computed || this.eat(types.dot)) { + var node = this.startNodeAt(startPos, startLoc); + node.object = base; + node.property = computed ? this.parseExpression() : this.parseIdent(this.options.allowReserved !== "never"); + node.computed = !!computed; + if (computed) { this.expect(types.bracketR); } + base = this.finishNode(node, "MemberExpression"); + } else if (!noCalls && this.eat(types.parenL)) { + var refDestructuringErrors = new DestructuringErrors, oldYieldPos = this.yieldPos, oldAwaitPos = this.awaitPos, oldAwaitIdentPos = this.awaitIdentPos; + this.yieldPos = 0; + this.awaitPos = 0; + this.awaitIdentPos = 0; + var exprList = this.parseExprList(types.parenR, this.options.ecmaVersion >= 8, false, refDestructuringErrors); + if (maybeAsyncArrow && !this.canInsertSemicolon() && this.eat(types.arrow)) { + this.checkPatternErrors(refDestructuringErrors, false); + this.checkYieldAwaitInDefaultParams(); + if (this.awaitIdentPos > 0) + { this.raise(this.awaitIdentPos, "Cannot use 'await' as identifier inside an async function"); } + this.yieldPos = oldYieldPos; + this.awaitPos = oldAwaitPos; + this.awaitIdentPos = oldAwaitIdentPos; + return this.parseArrowExpression(this.startNodeAt(startPos, startLoc), exprList, true) + } + this.checkExpressionErrors(refDestructuringErrors, true); + this.yieldPos = oldYieldPos || this.yieldPos; + this.awaitPos = oldAwaitPos || this.awaitPos; + this.awaitIdentPos = oldAwaitIdentPos || this.awaitIdentPos; + var node$1 = this.startNodeAt(startPos, startLoc); + node$1.callee = base; + node$1.arguments = exprList; + base = this.finishNode(node$1, "CallExpression"); + } else if (this.type === types.backQuote) { + var node$2 = this.startNodeAt(startPos, startLoc); + node$2.tag = base; + node$2.quasi = this.parseTemplate({isTagged: true}); + base = this.finishNode(node$2, "TaggedTemplateExpression"); + } + return base + }; + + // Parse an atomic expression — either a single token that is an + // expression, an expression started by a keyword like `function` or + // `new`, or an expression wrapped in punctuation like `()`, `[]`, + // or `{}`. + + pp$3.parseExprAtom = function(refDestructuringErrors) { + // If a division operator appears in an expression position, the + // tokenizer got confused, and we force it to read a regexp instead. + if (this.type === types.slash) { this.readRegexp(); } + + var node, canBeArrow = this.potentialArrowAt === this.start; + switch (this.type) { + case types._super: + if (!this.allowSuper) + { this.raise(this.start, "'super' keyword outside a method"); } + node = this.startNode(); + this.next(); + if (this.type === types.parenL && !this.allowDirectSuper) + { this.raise(node.start, "super() call outside constructor of a subclass"); } + // The `super` keyword can appear at below: + // SuperProperty: + // super [ Expression ] + // super . IdentifierName + // SuperCall: + // super ( Arguments ) + if (this.type !== types.dot && this.type !== types.bracketL && this.type !== types.parenL) + { this.unexpected(); } + return this.finishNode(node, "Super") + + case types._this: + node = this.startNode(); + this.next(); + return this.finishNode(node, "ThisExpression") + + case types.name: + var startPos = this.start, startLoc = this.startLoc, containsEsc = this.containsEsc; + var id = this.parseIdent(false); + if (this.options.ecmaVersion >= 8 && !containsEsc && id.name === "async" && !this.canInsertSemicolon() && this.eat(types._function)) + { return this.parseFunction(this.startNodeAt(startPos, startLoc), 0, false, true) } + if (canBeArrow && !this.canInsertSemicolon()) { + if (this.eat(types.arrow)) + { return this.parseArrowExpression(this.startNodeAt(startPos, startLoc), [id], false) } + if (this.options.ecmaVersion >= 8 && id.name === "async" && this.type === types.name && !containsEsc) { + id = this.parseIdent(false); + if (this.canInsertSemicolon() || !this.eat(types.arrow)) + { this.unexpected(); } + return this.parseArrowExpression(this.startNodeAt(startPos, startLoc), [id], true) + } + } + return id + + case types.regexp: + var value = this.value; + node = this.parseLiteral(value.value); + node.regex = {pattern: value.pattern, flags: value.flags}; + return node + + case types.num: case types.string: + return this.parseLiteral(this.value) + + case types._null: case types._true: case types._false: + node = this.startNode(); + node.value = this.type === types._null ? null : this.type === types._true; + node.raw = this.type.keyword; + this.next(); + return this.finishNode(node, "Literal") + + case types.parenL: + var start = this.start, expr = this.parseParenAndDistinguishExpression(canBeArrow); + if (refDestructuringErrors) { + if (refDestructuringErrors.parenthesizedAssign < 0 && !this.isSimpleAssignTarget(expr)) + { refDestructuringErrors.parenthesizedAssign = start; } + if (refDestructuringErrors.parenthesizedBind < 0) + { refDestructuringErrors.parenthesizedBind = start; } + } + return expr + + case types.bracketL: + node = this.startNode(); + this.next(); + node.elements = this.parseExprList(types.bracketR, true, true, refDestructuringErrors); + return this.finishNode(node, "ArrayExpression") + + case types.braceL: + return this.parseObj(false, refDestructuringErrors) + + case types._function: + node = this.startNode(); + this.next(); + return this.parseFunction(node, 0) + + case types._class: + return this.parseClass(this.startNode(), false) + + case types._new: + return this.parseNew() + + case types.backQuote: + return this.parseTemplate() + + case types._import: + if (this.options.ecmaVersion >= 11) { + return this.parseExprImport() + } else { + return this.unexpected() + } + + default: + this.unexpected(); + } + }; + + pp$3.parseExprImport = function() { + var node = this.startNode(); + this.next(); // skip `import` + switch (this.type) { + case types.parenL: + return this.parseDynamicImport(node) + default: + this.unexpected(); + } + }; + + pp$3.parseDynamicImport = function(node) { + this.next(); // skip `(` + + // Parse node.source. + node.source = this.parseMaybeAssign(); + + // Verify ending. + if (!this.eat(types.parenR)) { + var errorPos = this.start; + if (this.eat(types.comma) && this.eat(types.parenR)) { + this.raiseRecoverable(errorPos, "Trailing comma is not allowed in import()"); + } else { + this.unexpected(errorPos); + } + } + + return this.finishNode(node, "ImportExpression") + }; + + pp$3.parseLiteral = function(value) { + var node = this.startNode(); + node.value = value; + node.raw = this.input.slice(this.start, this.end); + if (node.raw.charCodeAt(node.raw.length - 1) === 110) { node.bigint = node.raw.slice(0, -1); } + this.next(); + return this.finishNode(node, "Literal") + }; + + pp$3.parseParenExpression = function() { + this.expect(types.parenL); + var val = this.parseExpression(); + this.expect(types.parenR); + return val + }; + + pp$3.parseParenAndDistinguishExpression = function(canBeArrow) { + var startPos = this.start, startLoc = this.startLoc, val, allowTrailingComma = this.options.ecmaVersion >= 8; + if (this.options.ecmaVersion >= 6) { + this.next(); + + var innerStartPos = this.start, innerStartLoc = this.startLoc; + var exprList = [], first = true, lastIsComma = false; + var refDestructuringErrors = new DestructuringErrors, oldYieldPos = this.yieldPos, oldAwaitPos = this.awaitPos, spreadStart; + this.yieldPos = 0; + this.awaitPos = 0; + // Do not save awaitIdentPos to allow checking awaits nested in parameters + while (this.type !== types.parenR) { + first ? first = false : this.expect(types.comma); + if (allowTrailingComma && this.afterTrailingComma(types.parenR, true)) { + lastIsComma = true; + break + } else if (this.type === types.ellipsis) { + spreadStart = this.start; + exprList.push(this.parseParenItem(this.parseRestBinding())); + if (this.type === types.comma) { this.raise(this.start, "Comma is not permitted after the rest element"); } + break + } else { + exprList.push(this.parseMaybeAssign(false, refDestructuringErrors, this.parseParenItem)); + } + } + var innerEndPos = this.start, innerEndLoc = this.startLoc; + this.expect(types.parenR); + + if (canBeArrow && !this.canInsertSemicolon() && this.eat(types.arrow)) { + this.checkPatternErrors(refDestructuringErrors, false); + this.checkYieldAwaitInDefaultParams(); + this.yieldPos = oldYieldPos; + this.awaitPos = oldAwaitPos; + return this.parseParenArrowList(startPos, startLoc, exprList) + } + + if (!exprList.length || lastIsComma) { this.unexpected(this.lastTokStart); } + if (spreadStart) { this.unexpected(spreadStart); } + this.checkExpressionErrors(refDestructuringErrors, true); + this.yieldPos = oldYieldPos || this.yieldPos; + this.awaitPos = oldAwaitPos || this.awaitPos; + + if (exprList.length > 1) { + val = this.startNodeAt(innerStartPos, innerStartLoc); + val.expressions = exprList; + this.finishNodeAt(val, "SequenceExpression", innerEndPos, innerEndLoc); + } else { + val = exprList[0]; + } + } else { + val = this.parseParenExpression(); + } + + if (this.options.preserveParens) { + var par = this.startNodeAt(startPos, startLoc); + par.expression = val; + return this.finishNode(par, "ParenthesizedExpression") + } else { + return val + } + }; + + pp$3.parseParenItem = function(item) { + return item + }; + + pp$3.parseParenArrowList = function(startPos, startLoc, exprList) { + return this.parseArrowExpression(this.startNodeAt(startPos, startLoc), exprList) + }; + + // New's precedence is slightly tricky. It must allow its argument to + // be a `[]` or dot subscript expression, but not a call — at least, + // not without wrapping it in parentheses. Thus, it uses the noCalls + // argument to parseSubscripts to prevent it from consuming the + // argument list. + + var empty$1 = []; + + pp$3.parseNew = function() { + var node = this.startNode(); + var meta = this.parseIdent(true); + if (this.options.ecmaVersion >= 6 && this.eat(types.dot)) { + node.meta = meta; + var containsEsc = this.containsEsc; + node.property = this.parseIdent(true); + if (node.property.name !== "target" || containsEsc) + { this.raiseRecoverable(node.property.start, "The only valid meta property for new is new.target"); } + if (!this.inNonArrowFunction()) + { this.raiseRecoverable(node.start, "new.target can only be used in functions"); } + return this.finishNode(node, "MetaProperty") + } + var startPos = this.start, startLoc = this.startLoc, isImport = this.type === types._import; + node.callee = this.parseSubscripts(this.parseExprAtom(), startPos, startLoc, true); + if (isImport && node.callee.type === "ImportExpression") { + this.raise(startPos, "Cannot use new with import()"); + } + if (this.eat(types.parenL)) { node.arguments = this.parseExprList(types.parenR, this.options.ecmaVersion >= 8, false); } + else { node.arguments = empty$1; } + return this.finishNode(node, "NewExpression") + }; + + // Parse template expression. + + pp$3.parseTemplateElement = function(ref) { + var isTagged = ref.isTagged; + + var elem = this.startNode(); + if (this.type === types.invalidTemplate) { + if (!isTagged) { + this.raiseRecoverable(this.start, "Bad escape sequence in untagged template literal"); + } + elem.value = { + raw: this.value, + cooked: null + }; + } else { + elem.value = { + raw: this.input.slice(this.start, this.end).replace(/\r\n?/g, "\n"), + cooked: this.value + }; + } + this.next(); + elem.tail = this.type === types.backQuote; + return this.finishNode(elem, "TemplateElement") + }; + + pp$3.parseTemplate = function(ref) { + if ( ref === void 0 ) ref = {}; + var isTagged = ref.isTagged; if ( isTagged === void 0 ) isTagged = false; + + var node = this.startNode(); + this.next(); + node.expressions = []; + var curElt = this.parseTemplateElement({isTagged: isTagged}); + node.quasis = [curElt]; + while (!curElt.tail) { + if (this.type === types.eof) { this.raise(this.pos, "Unterminated template literal"); } + this.expect(types.dollarBraceL); + node.expressions.push(this.parseExpression()); + this.expect(types.braceR); + node.quasis.push(curElt = this.parseTemplateElement({isTagged: isTagged})); + } + this.next(); + return this.finishNode(node, "TemplateLiteral") + }; + + pp$3.isAsyncProp = function(prop) { + return !prop.computed && prop.key.type === "Identifier" && prop.key.name === "async" && + (this.type === types.name || this.type === types.num || this.type === types.string || this.type === types.bracketL || this.type.keyword || (this.options.ecmaVersion >= 9 && this.type === types.star)) && + !lineBreak.test(this.input.slice(this.lastTokEnd, this.start)) + }; + + // Parse an object literal or binding pattern. + + pp$3.parseObj = function(isPattern, refDestructuringErrors) { + var node = this.startNode(), first = true, propHash = {}; + node.properties = []; + this.next(); + while (!this.eat(types.braceR)) { + if (!first) { + this.expect(types.comma); + if (this.options.ecmaVersion >= 5 && this.afterTrailingComma(types.braceR)) { break } + } else { first = false; } + + var prop = this.parseProperty(isPattern, refDestructuringErrors); + if (!isPattern) { this.checkPropClash(prop, propHash, refDestructuringErrors); } + node.properties.push(prop); + } + return this.finishNode(node, isPattern ? "ObjectPattern" : "ObjectExpression") + }; + + pp$3.parseProperty = function(isPattern, refDestructuringErrors) { + var prop = this.startNode(), isGenerator, isAsync, startPos, startLoc; + if (this.options.ecmaVersion >= 9 && this.eat(types.ellipsis)) { + if (isPattern) { + prop.argument = this.parseIdent(false); + if (this.type === types.comma) { + this.raise(this.start, "Comma is not permitted after the rest element"); + } + return this.finishNode(prop, "RestElement") + } + // To disallow parenthesized identifier via `this.toAssignable()`. + if (this.type === types.parenL && refDestructuringErrors) { + if (refDestructuringErrors.parenthesizedAssign < 0) { + refDestructuringErrors.parenthesizedAssign = this.start; + } + if (refDestructuringErrors.parenthesizedBind < 0) { + refDestructuringErrors.parenthesizedBind = this.start; + } + } + // Parse argument. + prop.argument = this.parseMaybeAssign(false, refDestructuringErrors); + // To disallow trailing comma via `this.toAssignable()`. + if (this.type === types.comma && refDestructuringErrors && refDestructuringErrors.trailingComma < 0) { + refDestructuringErrors.trailingComma = this.start; + } + // Finish + return this.finishNode(prop, "SpreadElement") + } + if (this.options.ecmaVersion >= 6) { + prop.method = false; + prop.shorthand = false; + if (isPattern || refDestructuringErrors) { + startPos = this.start; + startLoc = this.startLoc; + } + if (!isPattern) + { isGenerator = this.eat(types.star); } + } + var containsEsc = this.containsEsc; + this.parsePropertyName(prop); + if (!isPattern && !containsEsc && this.options.ecmaVersion >= 8 && !isGenerator && this.isAsyncProp(prop)) { + isAsync = true; + isGenerator = this.options.ecmaVersion >= 9 && this.eat(types.star); + this.parsePropertyName(prop, refDestructuringErrors); + } else { + isAsync = false; + } + this.parsePropertyValue(prop, isPattern, isGenerator, isAsync, startPos, startLoc, refDestructuringErrors, containsEsc); + return this.finishNode(prop, "Property") + }; + + pp$3.parsePropertyValue = function(prop, isPattern, isGenerator, isAsync, startPos, startLoc, refDestructuringErrors, containsEsc) { + if ((isGenerator || isAsync) && this.type === types.colon) + { this.unexpected(); } + + if (this.eat(types.colon)) { + prop.value = isPattern ? this.parseMaybeDefault(this.start, this.startLoc) : this.parseMaybeAssign(false, refDestructuringErrors); + prop.kind = "init"; + } else if (this.options.ecmaVersion >= 6 && this.type === types.parenL) { + if (isPattern) { this.unexpected(); } + prop.kind = "init"; + prop.method = true; + prop.value = this.parseMethod(isGenerator, isAsync); + } else if (!isPattern && !containsEsc && + this.options.ecmaVersion >= 5 && !prop.computed && prop.key.type === "Identifier" && + (prop.key.name === "get" || prop.key.name === "set") && + (this.type !== types.comma && this.type !== types.braceR)) { + if (isGenerator || isAsync) { this.unexpected(); } + prop.kind = prop.key.name; + this.parsePropertyName(prop); + prop.value = this.parseMethod(false); + var paramCount = prop.kind === "get" ? 0 : 1; + if (prop.value.params.length !== paramCount) { + var start = prop.value.start; + if (prop.kind === "get") + { this.raiseRecoverable(start, "getter should have no params"); } + else + { this.raiseRecoverable(start, "setter should have exactly one param"); } + } else { + if (prop.kind === "set" && prop.value.params[0].type === "RestElement") + { this.raiseRecoverable(prop.value.params[0].start, "Setter cannot use rest params"); } + } + } else if (this.options.ecmaVersion >= 6 && !prop.computed && prop.key.type === "Identifier") { + if (isGenerator || isAsync) { this.unexpected(); } + this.checkUnreserved(prop.key); + if (prop.key.name === "await" && !this.awaitIdentPos) + { this.awaitIdentPos = startPos; } + prop.kind = "init"; + if (isPattern) { + prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key); + } else if (this.type === types.eq && refDestructuringErrors) { + if (refDestructuringErrors.shorthandAssign < 0) + { refDestructuringErrors.shorthandAssign = this.start; } + prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key); + } else { + prop.value = prop.key; + } + prop.shorthand = true; + } else { this.unexpected(); } + }; + + pp$3.parsePropertyName = function(prop) { + if (this.options.ecmaVersion >= 6) { + if (this.eat(types.bracketL)) { + prop.computed = true; + prop.key = this.parseMaybeAssign(); + this.expect(types.bracketR); + return prop.key + } else { + prop.computed = false; + } + } + return prop.key = this.type === types.num || this.type === types.string ? this.parseExprAtom() : this.parseIdent(this.options.allowReserved !== "never") + }; + + // Initialize empty function node. + + pp$3.initFunction = function(node) { + node.id = null; + if (this.options.ecmaVersion >= 6) { node.generator = node.expression = false; } + if (this.options.ecmaVersion >= 8) { node.async = false; } + }; + + // Parse object or class method. + + pp$3.parseMethod = function(isGenerator, isAsync, allowDirectSuper) { + var node = this.startNode(), oldYieldPos = this.yieldPos, oldAwaitPos = this.awaitPos, oldAwaitIdentPos = this.awaitIdentPos; + + this.initFunction(node); + if (this.options.ecmaVersion >= 6) + { node.generator = isGenerator; } + if (this.options.ecmaVersion >= 8) + { node.async = !!isAsync; } + + this.yieldPos = 0; + this.awaitPos = 0; + this.awaitIdentPos = 0; + this.enterScope(functionFlags(isAsync, node.generator) | SCOPE_SUPER | (allowDirectSuper ? SCOPE_DIRECT_SUPER : 0)); + + this.expect(types.parenL); + node.params = this.parseBindingList(types.parenR, false, this.options.ecmaVersion >= 8); + this.checkYieldAwaitInDefaultParams(); + this.parseFunctionBody(node, false, true); + + this.yieldPos = oldYieldPos; + this.awaitPos = oldAwaitPos; + this.awaitIdentPos = oldAwaitIdentPos; + return this.finishNode(node, "FunctionExpression") + }; + + // Parse arrow function expression with given parameters. + + pp$3.parseArrowExpression = function(node, params, isAsync) { + var oldYieldPos = this.yieldPos, oldAwaitPos = this.awaitPos, oldAwaitIdentPos = this.awaitIdentPos; + + this.enterScope(functionFlags(isAsync, false) | SCOPE_ARROW); + this.initFunction(node); + if (this.options.ecmaVersion >= 8) { node.async = !!isAsync; } + + this.yieldPos = 0; + this.awaitPos = 0; + this.awaitIdentPos = 0; + + node.params = this.toAssignableList(params, true); + this.parseFunctionBody(node, true, false); + + this.yieldPos = oldYieldPos; + this.awaitPos = oldAwaitPos; + this.awaitIdentPos = oldAwaitIdentPos; + return this.finishNode(node, "ArrowFunctionExpression") + }; + + // Parse function body and check parameters. + + pp$3.parseFunctionBody = function(node, isArrowFunction, isMethod) { + var isExpression = isArrowFunction && this.type !== types.braceL; + var oldStrict = this.strict, useStrict = false; + + if (isExpression) { + node.body = this.parseMaybeAssign(); + node.expression = true; + this.checkParams(node, false); + } else { + var nonSimple = this.options.ecmaVersion >= 7 && !this.isSimpleParamList(node.params); + if (!oldStrict || nonSimple) { + useStrict = this.strictDirective(this.end); + // If this is a strict mode function, verify that argument names + // are not repeated, and it does not try to bind the words `eval` + // or `arguments`. + if (useStrict && nonSimple) + { this.raiseRecoverable(node.start, "Illegal 'use strict' directive in function with non-simple parameter list"); } + } + // Start a new scope with regard to labels and the `inFunction` + // flag (restore them to their old value afterwards). + var oldLabels = this.labels; + this.labels = []; + if (useStrict) { this.strict = true; } + + // Add the params to varDeclaredNames to ensure that an error is thrown + // if a let/const declaration in the function clashes with one of the params. + this.checkParams(node, !oldStrict && !useStrict && !isArrowFunction && !isMethod && this.isSimpleParamList(node.params)); + node.body = this.parseBlock(false); + node.expression = false; + this.adaptDirectivePrologue(node.body.body); + this.labels = oldLabels; + } + this.exitScope(); + + // Ensure the function name isn't a forbidden identifier in strict mode, e.g. 'eval' + if (this.strict && node.id) { this.checkLVal(node.id, BIND_OUTSIDE); } + this.strict = oldStrict; + }; + + pp$3.isSimpleParamList = function(params) { + for (var i = 0, list = params; i < list.length; i += 1) + { + var param = list[i]; + + if (param.type !== "Identifier") { return false + } } + return true + }; + + // Checks function params for various disallowed patterns such as using "eval" + // or "arguments" and duplicate parameters. + + pp$3.checkParams = function(node, allowDuplicates) { + var nameHash = {}; + for (var i = 0, list = node.params; i < list.length; i += 1) + { + var param = list[i]; + + this.checkLVal(param, BIND_VAR, allowDuplicates ? null : nameHash); + } + }; + + // Parses a comma-separated list of expressions, and returns them as + // an array. `close` is the token type that ends the list, and + // `allowEmpty` can be turned on to allow subsequent commas with + // nothing in between them to be parsed as `null` (which is needed + // for array literals). + + pp$3.parseExprList = function(close, allowTrailingComma, allowEmpty, refDestructuringErrors) { + var elts = [], first = true; + while (!this.eat(close)) { + if (!first) { + this.expect(types.comma); + if (allowTrailingComma && this.afterTrailingComma(close)) { break } + } else { first = false; } + + var elt = (void 0); + if (allowEmpty && this.type === types.comma) + { elt = null; } + else if (this.type === types.ellipsis) { + elt = this.parseSpread(refDestructuringErrors); + if (refDestructuringErrors && this.type === types.comma && refDestructuringErrors.trailingComma < 0) + { refDestructuringErrors.trailingComma = this.start; } + } else { + elt = this.parseMaybeAssign(false, refDestructuringErrors); + } + elts.push(elt); + } + return elts + }; + + pp$3.checkUnreserved = function(ref) { + var start = ref.start; + var end = ref.end; + var name = ref.name; + + if (this.inGenerator && name === "yield") + { this.raiseRecoverable(start, "Cannot use 'yield' as identifier inside a generator"); } + if (this.inAsync && name === "await") + { this.raiseRecoverable(start, "Cannot use 'await' as identifier inside an async function"); } + if (this.keywords.test(name)) + { this.raise(start, ("Unexpected keyword '" + name + "'")); } + if (this.options.ecmaVersion < 6 && + this.input.slice(start, end).indexOf("\\") !== -1) { return } + var re = this.strict ? this.reservedWordsStrict : this.reservedWords; + if (re.test(name)) { + if (!this.inAsync && name === "await") + { this.raiseRecoverable(start, "Cannot use keyword 'await' outside an async function"); } + this.raiseRecoverable(start, ("The keyword '" + name + "' is reserved")); + } + }; + + // Parse the next token as an identifier. If `liberal` is true (used + // when parsing properties), it will also convert keywords into + // identifiers. + + pp$3.parseIdent = function(liberal, isBinding) { + var node = this.startNode(); + if (this.type === types.name) { + node.name = this.value; + } else if (this.type.keyword) { + node.name = this.type.keyword; + + // To fix https://github.com/acornjs/acorn/issues/575 + // `class` and `function` keywords push new context into this.context. + // But there is no chance to pop the context if the keyword is consumed as an identifier such as a property name. + // If the previous token is a dot, this does not apply because the context-managing code already ignored the keyword + if ((node.name === "class" || node.name === "function") && + (this.lastTokEnd !== this.lastTokStart + 1 || this.input.charCodeAt(this.lastTokStart) !== 46)) { + this.context.pop(); + } + } else { + this.unexpected(); + } + this.next(); + this.finishNode(node, "Identifier"); + if (!liberal) { + this.checkUnreserved(node); + if (node.name === "await" && !this.awaitIdentPos) + { this.awaitIdentPos = node.start; } + } + return node + }; + + // Parses yield expression inside generator. + + pp$3.parseYield = function(noIn) { + if (!this.yieldPos) { this.yieldPos = this.start; } + + var node = this.startNode(); + this.next(); + if (this.type === types.semi || this.canInsertSemicolon() || (this.type !== types.star && !this.type.startsExpr)) { + node.delegate = false; + node.argument = null; + } else { + node.delegate = this.eat(types.star); + node.argument = this.parseMaybeAssign(noIn); + } + return this.finishNode(node, "YieldExpression") + }; + + pp$3.parseAwait = function() { + if (!this.awaitPos) { this.awaitPos = this.start; } + + var node = this.startNode(); + this.next(); + node.argument = this.parseMaybeUnary(null, true); + return this.finishNode(node, "AwaitExpression") + }; + + var pp$4 = Parser.prototype; + + // This function is used to raise exceptions on parse errors. It + // takes an offset integer (into the current `input`) to indicate + // the location of the error, attaches the position to the end + // of the error message, and then raises a `SyntaxError` with that + // message. + + pp$4.raise = function(pos, message) { + var loc = getLineInfo(this.input, pos); + message += " (" + loc.line + ":" + loc.column + ")"; + var err = new SyntaxError(message); + err.pos = pos; err.loc = loc; err.raisedAt = this.pos; + throw err + }; + + pp$4.raiseRecoverable = pp$4.raise; + + pp$4.curPosition = function() { + if (this.options.locations) { + return new Position(this.curLine, this.pos - this.lineStart) + } + }; + + var pp$5 = Parser.prototype; + + var Scope = function Scope(flags) { + this.flags = flags; + // A list of var-declared names in the current lexical scope + this.var = []; + // A list of lexically-declared names in the current lexical scope + this.lexical = []; + // A list of lexically-declared FunctionDeclaration names in the current lexical scope + this.functions = []; + }; + + // The functions in this module keep track of declared variables in the current scope in order to detect duplicate variable names. + + pp$5.enterScope = function(flags) { + this.scopeStack.push(new Scope(flags)); + }; + + pp$5.exitScope = function() { + this.scopeStack.pop(); + }; + + // The spec says: + // > At the top level of a function, or script, function declarations are + // > treated like var declarations rather than like lexical declarations. + pp$5.treatFunctionsAsVarInScope = function(scope) { + return (scope.flags & SCOPE_FUNCTION) || !this.inModule && (scope.flags & SCOPE_TOP) + }; + + pp$5.declareName = function(name, bindingType, pos) { + var redeclared = false; + if (bindingType === BIND_LEXICAL) { + var scope = this.currentScope(); + redeclared = scope.lexical.indexOf(name) > -1 || scope.functions.indexOf(name) > -1 || scope.var.indexOf(name) > -1; + scope.lexical.push(name); + if (this.inModule && (scope.flags & SCOPE_TOP)) + { delete this.undefinedExports[name]; } + } else if (bindingType === BIND_SIMPLE_CATCH) { + var scope$1 = this.currentScope(); + scope$1.lexical.push(name); + } else if (bindingType === BIND_FUNCTION) { + var scope$2 = this.currentScope(); + if (this.treatFunctionsAsVar) + { redeclared = scope$2.lexical.indexOf(name) > -1; } + else + { redeclared = scope$2.lexical.indexOf(name) > -1 || scope$2.var.indexOf(name) > -1; } + scope$2.functions.push(name); + } else { + for (var i = this.scopeStack.length - 1; i >= 0; --i) { + var scope$3 = this.scopeStack[i]; + if (scope$3.lexical.indexOf(name) > -1 && !((scope$3.flags & SCOPE_SIMPLE_CATCH) && scope$3.lexical[0] === name) || + !this.treatFunctionsAsVarInScope(scope$3) && scope$3.functions.indexOf(name) > -1) { + redeclared = true; + break + } + scope$3.var.push(name); + if (this.inModule && (scope$3.flags & SCOPE_TOP)) + { delete this.undefinedExports[name]; } + if (scope$3.flags & SCOPE_VAR) { break } + } + } + if (redeclared) { this.raiseRecoverable(pos, ("Identifier '" + name + "' has already been declared")); } + }; + + pp$5.checkLocalExport = function(id) { + // scope.functions must be empty as Module code is always strict. + if (this.scopeStack[0].lexical.indexOf(id.name) === -1 && + this.scopeStack[0].var.indexOf(id.name) === -1) { + this.undefinedExports[id.name] = id; + } + }; + + pp$5.currentScope = function() { + return this.scopeStack[this.scopeStack.length - 1] + }; + + pp$5.currentVarScope = function() { + for (var i = this.scopeStack.length - 1;; i--) { + var scope = this.scopeStack[i]; + if (scope.flags & SCOPE_VAR) { return scope } + } + }; + + // Could be useful for `this`, `new.target`, `super()`, `super.property`, and `super[property]`. + pp$5.currentThisScope = function() { + for (var i = this.scopeStack.length - 1;; i--) { + var scope = this.scopeStack[i]; + if (scope.flags & SCOPE_VAR && !(scope.flags & SCOPE_ARROW)) { return scope } + } + }; + + var Node = function Node(parser, pos, loc) { + this.type = ""; + this.start = pos; + this.end = 0; + if (parser.options.locations) + { this.loc = new SourceLocation(parser, loc); } + if (parser.options.directSourceFile) + { this.sourceFile = parser.options.directSourceFile; } + if (parser.options.ranges) + { this.range = [pos, 0]; } + }; + + // Start an AST node, attaching a start offset. + + var pp$6 = Parser.prototype; + + pp$6.startNode = function() { + return new Node(this, this.start, this.startLoc) + }; + + pp$6.startNodeAt = function(pos, loc) { + return new Node(this, pos, loc) + }; + + // Finish an AST node, adding `type` and `end` properties. + + function finishNodeAt(node, type, pos, loc) { + node.type = type; + node.end = pos; + if (this.options.locations) + { node.loc.end = loc; } + if (this.options.ranges) + { node.range[1] = pos; } + return node + } + + pp$6.finishNode = function(node, type) { + return finishNodeAt.call(this, node, type, this.lastTokEnd, this.lastTokEndLoc) + }; + + // Finish node at given position + + pp$6.finishNodeAt = function(node, type, pos, loc) { + return finishNodeAt.call(this, node, type, pos, loc) + }; + + // The algorithm used to determine whether a regexp can appear at a + + var TokContext = function TokContext(token, isExpr, preserveSpace, override, generator) { + this.token = token; + this.isExpr = !!isExpr; + this.preserveSpace = !!preserveSpace; + this.override = override; + this.generator = !!generator; + }; + + var types$1 = { + b_stat: new TokContext("{", false), + b_expr: new TokContext("{", true), + b_tmpl: new TokContext("${", false), + p_stat: new TokContext("(", false), + p_expr: new TokContext("(", true), + q_tmpl: new TokContext("`", true, true, function (p) { return p.tryReadTemplateToken(); }), + f_stat: new TokContext("function", false), + f_expr: new TokContext("function", true), + f_expr_gen: new TokContext("function", true, false, null, true), + f_gen: new TokContext("function", false, false, null, true) + }; + + var pp$7 = Parser.prototype; + + pp$7.initialContext = function() { + return [types$1.b_stat] + }; + + pp$7.braceIsBlock = function(prevType) { + var parent = this.curContext(); + if (parent === types$1.f_expr || parent === types$1.f_stat) + { return true } + if (prevType === types.colon && (parent === types$1.b_stat || parent === types$1.b_expr)) + { return !parent.isExpr } + + // The check for `tt.name && exprAllowed` detects whether we are + // after a `yield` or `of` construct. See the `updateContext` for + // `tt.name`. + if (prevType === types._return || prevType === types.name && this.exprAllowed) + { return lineBreak.test(this.input.slice(this.lastTokEnd, this.start)) } + if (prevType === types._else || prevType === types.semi || prevType === types.eof || prevType === types.parenR || prevType === types.arrow) + { return true } + if (prevType === types.braceL) + { return parent === types$1.b_stat } + if (prevType === types._var || prevType === types._const || prevType === types.name) + { return false } + return !this.exprAllowed + }; + + pp$7.inGeneratorContext = function() { + for (var i = this.context.length - 1; i >= 1; i--) { + var context = this.context[i]; + if (context.token === "function") + { return context.generator } + } + return false + }; + + pp$7.updateContext = function(prevType) { + var update, type = this.type; + if (type.keyword && prevType === types.dot) + { this.exprAllowed = false; } + else if (update = type.updateContext) + { update.call(this, prevType); } + else + { this.exprAllowed = type.beforeExpr; } + }; + + // Token-specific context update code + + types.parenR.updateContext = types.braceR.updateContext = function() { + if (this.context.length === 1) { + this.exprAllowed = true; + return + } + var out = this.context.pop(); + if (out === types$1.b_stat && this.curContext().token === "function") { + out = this.context.pop(); + } + this.exprAllowed = !out.isExpr; + }; + + types.braceL.updateContext = function(prevType) { + this.context.push(this.braceIsBlock(prevType) ? types$1.b_stat : types$1.b_expr); + this.exprAllowed = true; + }; + + types.dollarBraceL.updateContext = function() { + this.context.push(types$1.b_tmpl); + this.exprAllowed = true; + }; + + types.parenL.updateContext = function(prevType) { + var statementParens = prevType === types._if || prevType === types._for || prevType === types._with || prevType === types._while; + this.context.push(statementParens ? types$1.p_stat : types$1.p_expr); + this.exprAllowed = true; + }; + + types.incDec.updateContext = function() { + // tokExprAllowed stays unchanged + }; + + types._function.updateContext = types._class.updateContext = function(prevType) { + if (prevType.beforeExpr && prevType !== types.semi && prevType !== types._else && + !(prevType === types._return && lineBreak.test(this.input.slice(this.lastTokEnd, this.start))) && + !((prevType === types.colon || prevType === types.braceL) && this.curContext() === types$1.b_stat)) + { this.context.push(types$1.f_expr); } + else + { this.context.push(types$1.f_stat); } + this.exprAllowed = false; + }; + + types.backQuote.updateContext = function() { + if (this.curContext() === types$1.q_tmpl) + { this.context.pop(); } + else + { this.context.push(types$1.q_tmpl); } + this.exprAllowed = false; + }; + + types.star.updateContext = function(prevType) { + if (prevType === types._function) { + var index = this.context.length - 1; + if (this.context[index] === types$1.f_expr) + { this.context[index] = types$1.f_expr_gen; } + else + { this.context[index] = types$1.f_gen; } + } + this.exprAllowed = true; + }; + + types.name.updateContext = function(prevType) { + var allowed = false; + if (this.options.ecmaVersion >= 6 && prevType !== types.dot) { + if (this.value === "of" && !this.exprAllowed || + this.value === "yield" && this.inGeneratorContext()) + { allowed = true; } + } + this.exprAllowed = allowed; + }; + + // This file contains Unicode properties extracted from the ECMAScript + // specification. The lists are extracted like so: + // $$('#table-binary-unicode-properties > figure > table > tbody > tr > td:nth-child(1) code').map(el => el.innerText) + + // #table-binary-unicode-properties + var ecma9BinaryProperties = "ASCII ASCII_Hex_Digit AHex Alphabetic Alpha Any Assigned Bidi_Control Bidi_C Bidi_Mirrored Bidi_M Case_Ignorable CI Cased Changes_When_Casefolded CWCF Changes_When_Casemapped CWCM Changes_When_Lowercased CWL Changes_When_NFKC_Casefolded CWKCF Changes_When_Titlecased CWT Changes_When_Uppercased CWU Dash Default_Ignorable_Code_Point DI Deprecated Dep Diacritic Dia Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Extender Ext Grapheme_Base Gr_Base Grapheme_Extend Gr_Ext Hex_Digit Hex IDS_Binary_Operator IDSB IDS_Trinary_Operator IDST ID_Continue IDC ID_Start IDS Ideographic Ideo Join_Control Join_C Logical_Order_Exception LOE Lowercase Lower Math Noncharacter_Code_Point NChar Pattern_Syntax Pat_Syn Pattern_White_Space Pat_WS Quotation_Mark QMark Radical Regional_Indicator RI Sentence_Terminal STerm Soft_Dotted SD Terminal_Punctuation Term Unified_Ideograph UIdeo Uppercase Upper Variation_Selector VS White_Space space XID_Continue XIDC XID_Start XIDS"; + var ecma10BinaryProperties = ecma9BinaryProperties + " Extended_Pictographic"; + var ecma11BinaryProperties = ecma10BinaryProperties; + var unicodeBinaryProperties = { + 9: ecma9BinaryProperties, + 10: ecma10BinaryProperties, + 11: ecma11BinaryProperties + }; + + // #table-unicode-general-category-values + var unicodeGeneralCategoryValues = "Cased_Letter LC Close_Punctuation Pe Connector_Punctuation Pc Control Cc cntrl Currency_Symbol Sc Dash_Punctuation Pd Decimal_Number Nd digit Enclosing_Mark Me Final_Punctuation Pf Format Cf Initial_Punctuation Pi Letter L Letter_Number Nl Line_Separator Zl Lowercase_Letter Ll Mark M Combining_Mark Math_Symbol Sm Modifier_Letter Lm Modifier_Symbol Sk Nonspacing_Mark Mn Number N Open_Punctuation Ps Other C Other_Letter Lo Other_Number No Other_Punctuation Po Other_Symbol So Paragraph_Separator Zp Private_Use Co Punctuation P punct Separator Z Space_Separator Zs Spacing_Mark Mc Surrogate Cs Symbol S Titlecase_Letter Lt Unassigned Cn Uppercase_Letter Lu"; + + // #table-unicode-script-values + var ecma9ScriptValues = "Adlam Adlm Ahom Ahom Anatolian_Hieroglyphs Hluw Arabic Arab Armenian Armn Avestan Avst Balinese Bali Bamum Bamu Bassa_Vah Bass Batak Batk Bengali Beng Bhaiksuki Bhks Bopomofo Bopo Brahmi Brah Braille Brai Buginese Bugi Buhid Buhd Canadian_Aboriginal Cans Carian Cari Caucasian_Albanian Aghb Chakma Cakm Cham Cham Cherokee Cher Common Zyyy Coptic Copt Qaac Cuneiform Xsux Cypriot Cprt Cyrillic Cyrl Deseret Dsrt Devanagari Deva Duployan Dupl Egyptian_Hieroglyphs Egyp Elbasan Elba Ethiopic Ethi Georgian Geor Glagolitic Glag Gothic Goth Grantha Gran Greek Grek Gujarati Gujr Gurmukhi Guru Han Hani Hangul Hang Hanunoo Hano Hatran Hatr Hebrew Hebr Hiragana Hira Imperial_Aramaic Armi Inherited Zinh Qaai Inscriptional_Pahlavi Phli Inscriptional_Parthian Prti Javanese Java Kaithi Kthi Kannada Knda Katakana Kana Kayah_Li Kali Kharoshthi Khar Khmer Khmr Khojki Khoj Khudawadi Sind Lao Laoo Latin Latn Lepcha Lepc Limbu Limb Linear_A Lina Linear_B Linb Lisu Lisu Lycian Lyci Lydian Lydi Mahajani Mahj Malayalam Mlym Mandaic Mand Manichaean Mani Marchen Marc Masaram_Gondi Gonm Meetei_Mayek Mtei Mende_Kikakui Mend Meroitic_Cursive Merc Meroitic_Hieroglyphs Mero Miao Plrd Modi Modi Mongolian Mong Mro Mroo Multani Mult Myanmar Mymr Nabataean Nbat New_Tai_Lue Talu Newa Newa Nko Nkoo Nushu Nshu Ogham Ogam Ol_Chiki Olck Old_Hungarian Hung Old_Italic Ital Old_North_Arabian Narb Old_Permic Perm Old_Persian Xpeo Old_South_Arabian Sarb Old_Turkic Orkh Oriya Orya Osage Osge Osmanya Osma Pahawh_Hmong Hmng Palmyrene Palm Pau_Cin_Hau Pauc Phags_Pa Phag Phoenician Phnx Psalter_Pahlavi Phlp Rejang Rjng Runic Runr Samaritan Samr Saurashtra Saur Sharada Shrd Shavian Shaw Siddham Sidd SignWriting Sgnw Sinhala Sinh Sora_Sompeng Sora Soyombo Soyo Sundanese Sund Syloti_Nagri Sylo Syriac Syrc Tagalog Tglg Tagbanwa Tagb Tai_Le Tale Tai_Tham Lana Tai_Viet Tavt Takri Takr Tamil Taml Tangut Tang Telugu Telu Thaana Thaa Thai Thai Tibetan Tibt Tifinagh Tfng Tirhuta Tirh Ugaritic Ugar Vai Vaii Warang_Citi Wara Yi Yiii Zanabazar_Square Zanb"; + var ecma10ScriptValues = ecma9ScriptValues + " Dogra Dogr Gunjala_Gondi Gong Hanifi_Rohingya Rohg Makasar Maka Medefaidrin Medf Old_Sogdian Sogo Sogdian Sogd"; + var ecma11ScriptValues = ecma10ScriptValues + " Elymaic Elym Nandinagari Nand Nyiakeng_Puachue_Hmong Hmnp Wancho Wcho"; + var unicodeScriptValues = { + 9: ecma9ScriptValues, + 10: ecma10ScriptValues, + 11: ecma11ScriptValues + }; + + var data = {}; + function buildUnicodeData(ecmaVersion) { + var d = data[ecmaVersion] = { + binary: wordsRegexp(unicodeBinaryProperties[ecmaVersion] + " " + unicodeGeneralCategoryValues), + nonBinary: { + General_Category: wordsRegexp(unicodeGeneralCategoryValues), + Script: wordsRegexp(unicodeScriptValues[ecmaVersion]) + } + }; + d.nonBinary.Script_Extensions = d.nonBinary.Script; + + d.nonBinary.gc = d.nonBinary.General_Category; + d.nonBinary.sc = d.nonBinary.Script; + d.nonBinary.scx = d.nonBinary.Script_Extensions; + } + buildUnicodeData(9); + buildUnicodeData(10); + buildUnicodeData(11); + + var pp$8 = Parser.prototype; + + var RegExpValidationState = function RegExpValidationState(parser) { + this.parser = parser; + this.validFlags = "gim" + (parser.options.ecmaVersion >= 6 ? "uy" : "") + (parser.options.ecmaVersion >= 9 ? "s" : ""); + this.unicodeProperties = data[parser.options.ecmaVersion >= 11 ? 11 : parser.options.ecmaVersion]; + this.source = ""; + this.flags = ""; + this.start = 0; + this.switchU = false; + this.switchN = false; + this.pos = 0; + this.lastIntValue = 0; + this.lastStringValue = ""; + this.lastAssertionIsQuantifiable = false; + this.numCapturingParens = 0; + this.maxBackReference = 0; + this.groupNames = []; + this.backReferenceNames = []; + }; + + RegExpValidationState.prototype.reset = function reset (start, pattern, flags) { + var unicode = flags.indexOf("u") !== -1; + this.start = start | 0; + this.source = pattern + ""; + this.flags = flags; + this.switchU = unicode && this.parser.options.ecmaVersion >= 6; + this.switchN = unicode && this.parser.options.ecmaVersion >= 9; + }; + + RegExpValidationState.prototype.raise = function raise (message) { + this.parser.raiseRecoverable(this.start, ("Invalid regular expression: /" + (this.source) + "/: " + message)); + }; + + // If u flag is given, this returns the code point at the index (it combines a surrogate pair). + // Otherwise, this returns the code unit of the index (can be a part of a surrogate pair). + RegExpValidationState.prototype.at = function at (i) { + var s = this.source; + var l = s.length; + if (i >= l) { + return -1 + } + var c = s.charCodeAt(i); + if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) { + return c + } + return (c << 10) + s.charCodeAt(i + 1) - 0x35FDC00 + }; + + RegExpValidationState.prototype.nextIndex = function nextIndex (i) { + var s = this.source; + var l = s.length; + if (i >= l) { + return l + } + var c = s.charCodeAt(i); + if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) { + return i + 1 + } + return i + 2 + }; + + RegExpValidationState.prototype.current = function current () { + return this.at(this.pos) + }; + + RegExpValidationState.prototype.lookahead = function lookahead () { + return this.at(this.nextIndex(this.pos)) + }; + + RegExpValidationState.prototype.advance = function advance () { + this.pos = this.nextIndex(this.pos); + }; + + RegExpValidationState.prototype.eat = function eat (ch) { + if (this.current() === ch) { + this.advance(); + return true + } + return false + }; + + function codePointToString(ch) { + if (ch <= 0xFFFF) { return String.fromCharCode(ch) } + ch -= 0x10000; + return String.fromCharCode((ch >> 10) + 0xD800, (ch & 0x03FF) + 0xDC00) + } + + /** + * Validate the flags part of a given RegExpLiteral. + * + * @param {RegExpValidationState} state The state to validate RegExp. + * @returns {void} + */ + pp$8.validateRegExpFlags = function(state) { + var validFlags = state.validFlags; + var flags = state.flags; + + for (var i = 0; i < flags.length; i++) { + var flag = flags.charAt(i); + if (validFlags.indexOf(flag) === -1) { + this.raise(state.start, "Invalid regular expression flag"); + } + if (flags.indexOf(flag, i + 1) > -1) { + this.raise(state.start, "Duplicate regular expression flag"); + } + } + }; + + /** + * Validate the pattern part of a given RegExpLiteral. + * + * @param {RegExpValidationState} state The state to validate RegExp. + * @returns {void} + */ + pp$8.validateRegExpPattern = function(state) { + this.regexp_pattern(state); + + // The goal symbol for the parse is |Pattern[~U, ~N]|. If the result of + // parsing contains a |GroupName|, reparse with the goal symbol + // |Pattern[~U, +N]| and use this result instead. Throw a *SyntaxError* + // exception if _P_ did not conform to the grammar, if any elements of _P_ + // were not matched by the parse, or if any Early Error conditions exist. + if (!state.switchN && this.options.ecmaVersion >= 9 && state.groupNames.length > 0) { + state.switchN = true; + this.regexp_pattern(state); + } + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-Pattern + pp$8.regexp_pattern = function(state) { + state.pos = 0; + state.lastIntValue = 0; + state.lastStringValue = ""; + state.lastAssertionIsQuantifiable = false; + state.numCapturingParens = 0; + state.maxBackReference = 0; + state.groupNames.length = 0; + state.backReferenceNames.length = 0; + + this.regexp_disjunction(state); + + if (state.pos !== state.source.length) { + // Make the same messages as V8. + if (state.eat(0x29 /* ) */)) { + state.raise("Unmatched ')'"); + } + if (state.eat(0x5D /* [ */) || state.eat(0x7D /* } */)) { + state.raise("Lone quantifier brackets"); + } + } + if (state.maxBackReference > state.numCapturingParens) { + state.raise("Invalid escape"); + } + for (var i = 0, list = state.backReferenceNames; i < list.length; i += 1) { + var name = list[i]; + + if (state.groupNames.indexOf(name) === -1) { + state.raise("Invalid named capture referenced"); + } + } + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-Disjunction + pp$8.regexp_disjunction = function(state) { + this.regexp_alternative(state); + while (state.eat(0x7C /* | */)) { + this.regexp_alternative(state); + } + + // Make the same message as V8. + if (this.regexp_eatQuantifier(state, true)) { + state.raise("Nothing to repeat"); + } + if (state.eat(0x7B /* { */)) { + state.raise("Lone quantifier brackets"); + } + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-Alternative + pp$8.regexp_alternative = function(state) { + while (state.pos < state.source.length && this.regexp_eatTerm(state)) + { } + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-Term + pp$8.regexp_eatTerm = function(state) { + if (this.regexp_eatAssertion(state)) { + // Handle `QuantifiableAssertion Quantifier` alternative. + // `state.lastAssertionIsQuantifiable` is true if the last eaten Assertion + // is a QuantifiableAssertion. + if (state.lastAssertionIsQuantifiable && this.regexp_eatQuantifier(state)) { + // Make the same message as V8. + if (state.switchU) { + state.raise("Invalid quantifier"); + } + } + return true + } + + if (state.switchU ? this.regexp_eatAtom(state) : this.regexp_eatExtendedAtom(state)) { + this.regexp_eatQuantifier(state); + return true + } + + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-Assertion + pp$8.regexp_eatAssertion = function(state) { + var start = state.pos; + state.lastAssertionIsQuantifiable = false; + + // ^, $ + if (state.eat(0x5E /* ^ */) || state.eat(0x24 /* $ */)) { + return true + } + + // \b \B + if (state.eat(0x5C /* \ */)) { + if (state.eat(0x42 /* B */) || state.eat(0x62 /* b */)) { + return true + } + state.pos = start; + } + + // Lookahead / Lookbehind + if (state.eat(0x28 /* ( */) && state.eat(0x3F /* ? */)) { + var lookbehind = false; + if (this.options.ecmaVersion >= 9) { + lookbehind = state.eat(0x3C /* < */); + } + if (state.eat(0x3D /* = */) || state.eat(0x21 /* ! */)) { + this.regexp_disjunction(state); + if (!state.eat(0x29 /* ) */)) { + state.raise("Unterminated group"); + } + state.lastAssertionIsQuantifiable = !lookbehind; + return true + } + } + + state.pos = start; + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-Quantifier + pp$8.regexp_eatQuantifier = function(state, noError) { + if ( noError === void 0 ) noError = false; + + if (this.regexp_eatQuantifierPrefix(state, noError)) { + state.eat(0x3F /* ? */); + return true + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-QuantifierPrefix + pp$8.regexp_eatQuantifierPrefix = function(state, noError) { + return ( + state.eat(0x2A /* * */) || + state.eat(0x2B /* + */) || + state.eat(0x3F /* ? */) || + this.regexp_eatBracedQuantifier(state, noError) + ) + }; + pp$8.regexp_eatBracedQuantifier = function(state, noError) { + var start = state.pos; + if (state.eat(0x7B /* { */)) { + var min = 0, max = -1; + if (this.regexp_eatDecimalDigits(state)) { + min = state.lastIntValue; + if (state.eat(0x2C /* , */) && this.regexp_eatDecimalDigits(state)) { + max = state.lastIntValue; + } + if (state.eat(0x7D /* } */)) { + // SyntaxError in https://www.ecma-international.org/ecma-262/8.0/#sec-term + if (max !== -1 && max < min && !noError) { + state.raise("numbers out of order in {} quantifier"); + } + return true + } + } + if (state.switchU && !noError) { + state.raise("Incomplete quantifier"); + } + state.pos = start; + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-Atom + pp$8.regexp_eatAtom = function(state) { + return ( + this.regexp_eatPatternCharacters(state) || + state.eat(0x2E /* . */) || + this.regexp_eatReverseSolidusAtomEscape(state) || + this.regexp_eatCharacterClass(state) || + this.regexp_eatUncapturingGroup(state) || + this.regexp_eatCapturingGroup(state) + ) + }; + pp$8.regexp_eatReverseSolidusAtomEscape = function(state) { + var start = state.pos; + if (state.eat(0x5C /* \ */)) { + if (this.regexp_eatAtomEscape(state)) { + return true + } + state.pos = start; + } + return false + }; + pp$8.regexp_eatUncapturingGroup = function(state) { + var start = state.pos; + if (state.eat(0x28 /* ( */)) { + if (state.eat(0x3F /* ? */) && state.eat(0x3A /* : */)) { + this.regexp_disjunction(state); + if (state.eat(0x29 /* ) */)) { + return true + } + state.raise("Unterminated group"); + } + state.pos = start; + } + return false + }; + pp$8.regexp_eatCapturingGroup = function(state) { + if (state.eat(0x28 /* ( */)) { + if (this.options.ecmaVersion >= 9) { + this.regexp_groupSpecifier(state); + } else if (state.current() === 0x3F /* ? */) { + state.raise("Invalid group"); + } + this.regexp_disjunction(state); + if (state.eat(0x29 /* ) */)) { + state.numCapturingParens += 1; + return true + } + state.raise("Unterminated group"); + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-ExtendedAtom + pp$8.regexp_eatExtendedAtom = function(state) { + return ( + state.eat(0x2E /* . */) || + this.regexp_eatReverseSolidusAtomEscape(state) || + this.regexp_eatCharacterClass(state) || + this.regexp_eatUncapturingGroup(state) || + this.regexp_eatCapturingGroup(state) || + this.regexp_eatInvalidBracedQuantifier(state) || + this.regexp_eatExtendedPatternCharacter(state) + ) + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-InvalidBracedQuantifier + pp$8.regexp_eatInvalidBracedQuantifier = function(state) { + if (this.regexp_eatBracedQuantifier(state, true)) { + state.raise("Nothing to repeat"); + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-SyntaxCharacter + pp$8.regexp_eatSyntaxCharacter = function(state) { + var ch = state.current(); + if (isSyntaxCharacter(ch)) { + state.lastIntValue = ch; + state.advance(); + return true + } + return false + }; + function isSyntaxCharacter(ch) { + return ( + ch === 0x24 /* $ */ || + ch >= 0x28 /* ( */ && ch <= 0x2B /* + */ || + ch === 0x2E /* . */ || + ch === 0x3F /* ? */ || + ch >= 0x5B /* [ */ && ch <= 0x5E /* ^ */ || + ch >= 0x7B /* { */ && ch <= 0x7D /* } */ + ) + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-PatternCharacter + // But eat eager. + pp$8.regexp_eatPatternCharacters = function(state) { + var start = state.pos; + var ch = 0; + while ((ch = state.current()) !== -1 && !isSyntaxCharacter(ch)) { + state.advance(); + } + return state.pos !== start + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-ExtendedPatternCharacter + pp$8.regexp_eatExtendedPatternCharacter = function(state) { + var ch = state.current(); + if ( + ch !== -1 && + ch !== 0x24 /* $ */ && + !(ch >= 0x28 /* ( */ && ch <= 0x2B /* + */) && + ch !== 0x2E /* . */ && + ch !== 0x3F /* ? */ && + ch !== 0x5B /* [ */ && + ch !== 0x5E /* ^ */ && + ch !== 0x7C /* | */ + ) { + state.advance(); + return true + } + return false + }; + + // GroupSpecifier[U] :: + // [empty] + // `?` GroupName[?U] + pp$8.regexp_groupSpecifier = function(state) { + if (state.eat(0x3F /* ? */)) { + if (this.regexp_eatGroupName(state)) { + if (state.groupNames.indexOf(state.lastStringValue) !== -1) { + state.raise("Duplicate capture group name"); + } + state.groupNames.push(state.lastStringValue); + return + } + state.raise("Invalid group"); + } + }; + + // GroupName[U] :: + // `<` RegExpIdentifierName[?U] `>` + // Note: this updates `state.lastStringValue` property with the eaten name. + pp$8.regexp_eatGroupName = function(state) { + state.lastStringValue = ""; + if (state.eat(0x3C /* < */)) { + if (this.regexp_eatRegExpIdentifierName(state) && state.eat(0x3E /* > */)) { + return true + } + state.raise("Invalid capture group name"); + } + return false + }; + + // RegExpIdentifierName[U] :: + // RegExpIdentifierStart[?U] + // RegExpIdentifierName[?U] RegExpIdentifierPart[?U] + // Note: this updates `state.lastStringValue` property with the eaten name. + pp$8.regexp_eatRegExpIdentifierName = function(state) { + state.lastStringValue = ""; + if (this.regexp_eatRegExpIdentifierStart(state)) { + state.lastStringValue += codePointToString(state.lastIntValue); + while (this.regexp_eatRegExpIdentifierPart(state)) { + state.lastStringValue += codePointToString(state.lastIntValue); + } + return true + } + return false + }; + + // RegExpIdentifierStart[U] :: + // UnicodeIDStart + // `$` + // `_` + // `\` RegExpUnicodeEscapeSequence[?U] + pp$8.regexp_eatRegExpIdentifierStart = function(state) { + var start = state.pos; + var ch = state.current(); + state.advance(); + + if (ch === 0x5C /* \ */ && this.regexp_eatRegExpUnicodeEscapeSequence(state)) { + ch = state.lastIntValue; + } + if (isRegExpIdentifierStart(ch)) { + state.lastIntValue = ch; + return true + } + + state.pos = start; + return false + }; + function isRegExpIdentifierStart(ch) { + return isIdentifierStart(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ + } + + // RegExpIdentifierPart[U] :: + // UnicodeIDContinue + // `$` + // `_` + // `\` RegExpUnicodeEscapeSequence[?U] + // + // + pp$8.regexp_eatRegExpIdentifierPart = function(state) { + var start = state.pos; + var ch = state.current(); + state.advance(); + + if (ch === 0x5C /* \ */ && this.regexp_eatRegExpUnicodeEscapeSequence(state)) { + ch = state.lastIntValue; + } + if (isRegExpIdentifierPart(ch)) { + state.lastIntValue = ch; + return true + } + + state.pos = start; + return false + }; + function isRegExpIdentifierPart(ch) { + return isIdentifierChar(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ || ch === 0x200C /* */ || ch === 0x200D /* */ + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-AtomEscape + pp$8.regexp_eatAtomEscape = function(state) { + if ( + this.regexp_eatBackReference(state) || + this.regexp_eatCharacterClassEscape(state) || + this.regexp_eatCharacterEscape(state) || + (state.switchN && this.regexp_eatKGroupName(state)) + ) { + return true + } + if (state.switchU) { + // Make the same message as V8. + if (state.current() === 0x63 /* c */) { + state.raise("Invalid unicode escape"); + } + state.raise("Invalid escape"); + } + return false + }; + pp$8.regexp_eatBackReference = function(state) { + var start = state.pos; + if (this.regexp_eatDecimalEscape(state)) { + var n = state.lastIntValue; + if (state.switchU) { + // For SyntaxError in https://www.ecma-international.org/ecma-262/8.0/#sec-atomescape + if (n > state.maxBackReference) { + state.maxBackReference = n; + } + return true + } + if (n <= state.numCapturingParens) { + return true + } + state.pos = start; + } + return false + }; + pp$8.regexp_eatKGroupName = function(state) { + if (state.eat(0x6B /* k */)) { + if (this.regexp_eatGroupName(state)) { + state.backReferenceNames.push(state.lastStringValue); + return true + } + state.raise("Invalid named reference"); + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-CharacterEscape + pp$8.regexp_eatCharacterEscape = function(state) { + return ( + this.regexp_eatControlEscape(state) || + this.regexp_eatCControlLetter(state) || + this.regexp_eatZero(state) || + this.regexp_eatHexEscapeSequence(state) || + this.regexp_eatRegExpUnicodeEscapeSequence(state) || + (!state.switchU && this.regexp_eatLegacyOctalEscapeSequence(state)) || + this.regexp_eatIdentityEscape(state) + ) + }; + pp$8.regexp_eatCControlLetter = function(state) { + var start = state.pos; + if (state.eat(0x63 /* c */)) { + if (this.regexp_eatControlLetter(state)) { + return true + } + state.pos = start; + } + return false + }; + pp$8.regexp_eatZero = function(state) { + if (state.current() === 0x30 /* 0 */ && !isDecimalDigit(state.lookahead())) { + state.lastIntValue = 0; + state.advance(); + return true + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-ControlEscape + pp$8.regexp_eatControlEscape = function(state) { + var ch = state.current(); + if (ch === 0x74 /* t */) { + state.lastIntValue = 0x09; /* \t */ + state.advance(); + return true + } + if (ch === 0x6E /* n */) { + state.lastIntValue = 0x0A; /* \n */ + state.advance(); + return true + } + if (ch === 0x76 /* v */) { + state.lastIntValue = 0x0B; /* \v */ + state.advance(); + return true + } + if (ch === 0x66 /* f */) { + state.lastIntValue = 0x0C; /* \f */ + state.advance(); + return true + } + if (ch === 0x72 /* r */) { + state.lastIntValue = 0x0D; /* \r */ + state.advance(); + return true + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-ControlLetter + pp$8.regexp_eatControlLetter = function(state) { + var ch = state.current(); + if (isControlLetter(ch)) { + state.lastIntValue = ch % 0x20; + state.advance(); + return true + } + return false + }; + function isControlLetter(ch) { + return ( + (ch >= 0x41 /* A */ && ch <= 0x5A /* Z */) || + (ch >= 0x61 /* a */ && ch <= 0x7A /* z */) + ) + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-RegExpUnicodeEscapeSequence + pp$8.regexp_eatRegExpUnicodeEscapeSequence = function(state) { + var start = state.pos; + + if (state.eat(0x75 /* u */)) { + if (this.regexp_eatFixedHexDigits(state, 4)) { + var lead = state.lastIntValue; + if (state.switchU && lead >= 0xD800 && lead <= 0xDBFF) { + var leadSurrogateEnd = state.pos; + if (state.eat(0x5C /* \ */) && state.eat(0x75 /* u */) && this.regexp_eatFixedHexDigits(state, 4)) { + var trail = state.lastIntValue; + if (trail >= 0xDC00 && trail <= 0xDFFF) { + state.lastIntValue = (lead - 0xD800) * 0x400 + (trail - 0xDC00) + 0x10000; + return true + } + } + state.pos = leadSurrogateEnd; + state.lastIntValue = lead; + } + return true + } + if ( + state.switchU && + state.eat(0x7B /* { */) && + this.regexp_eatHexDigits(state) && + state.eat(0x7D /* } */) && + isValidUnicode(state.lastIntValue) + ) { + return true + } + if (state.switchU) { + state.raise("Invalid unicode escape"); + } + state.pos = start; + } + + return false + }; + function isValidUnicode(ch) { + return ch >= 0 && ch <= 0x10FFFF + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-IdentityEscape + pp$8.regexp_eatIdentityEscape = function(state) { + if (state.switchU) { + if (this.regexp_eatSyntaxCharacter(state)) { + return true + } + if (state.eat(0x2F /* / */)) { + state.lastIntValue = 0x2F; /* / */ + return true + } + return false + } + + var ch = state.current(); + if (ch !== 0x63 /* c */ && (!state.switchN || ch !== 0x6B /* k */)) { + state.lastIntValue = ch; + state.advance(); + return true + } + + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-DecimalEscape + pp$8.regexp_eatDecimalEscape = function(state) { + state.lastIntValue = 0; + var ch = state.current(); + if (ch >= 0x31 /* 1 */ && ch <= 0x39 /* 9 */) { + do { + state.lastIntValue = 10 * state.lastIntValue + (ch - 0x30 /* 0 */); + state.advance(); + } while ((ch = state.current()) >= 0x30 /* 0 */ && ch <= 0x39 /* 9 */) + return true + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-CharacterClassEscape + pp$8.regexp_eatCharacterClassEscape = function(state) { + var ch = state.current(); + + if (isCharacterClassEscape(ch)) { + state.lastIntValue = -1; + state.advance(); + return true + } + + if ( + state.switchU && + this.options.ecmaVersion >= 9 && + (ch === 0x50 /* P */ || ch === 0x70 /* p */) + ) { + state.lastIntValue = -1; + state.advance(); + if ( + state.eat(0x7B /* { */) && + this.regexp_eatUnicodePropertyValueExpression(state) && + state.eat(0x7D /* } */) + ) { + return true + } + state.raise("Invalid property name"); + } + + return false + }; + function isCharacterClassEscape(ch) { + return ( + ch === 0x64 /* d */ || + ch === 0x44 /* D */ || + ch === 0x73 /* s */ || + ch === 0x53 /* S */ || + ch === 0x77 /* w */ || + ch === 0x57 /* W */ + ) + } + + // UnicodePropertyValueExpression :: + // UnicodePropertyName `=` UnicodePropertyValue + // LoneUnicodePropertyNameOrValue + pp$8.regexp_eatUnicodePropertyValueExpression = function(state) { + var start = state.pos; + + // UnicodePropertyName `=` UnicodePropertyValue + if (this.regexp_eatUnicodePropertyName(state) && state.eat(0x3D /* = */)) { + var name = state.lastStringValue; + if (this.regexp_eatUnicodePropertyValue(state)) { + var value = state.lastStringValue; + this.regexp_validateUnicodePropertyNameAndValue(state, name, value); + return true + } + } + state.pos = start; + + // LoneUnicodePropertyNameOrValue + if (this.regexp_eatLoneUnicodePropertyNameOrValue(state)) { + var nameOrValue = state.lastStringValue; + this.regexp_validateUnicodePropertyNameOrValue(state, nameOrValue); + return true + } + return false + }; + pp$8.regexp_validateUnicodePropertyNameAndValue = function(state, name, value) { + if (!has(state.unicodeProperties.nonBinary, name)) + { state.raise("Invalid property name"); } + if (!state.unicodeProperties.nonBinary[name].test(value)) + { state.raise("Invalid property value"); } + }; + pp$8.regexp_validateUnicodePropertyNameOrValue = function(state, nameOrValue) { + if (!state.unicodeProperties.binary.test(nameOrValue)) + { state.raise("Invalid property name"); } + }; + + // UnicodePropertyName :: + // UnicodePropertyNameCharacters + pp$8.regexp_eatUnicodePropertyName = function(state) { + var ch = 0; + state.lastStringValue = ""; + while (isUnicodePropertyNameCharacter(ch = state.current())) { + state.lastStringValue += codePointToString(ch); + state.advance(); + } + return state.lastStringValue !== "" + }; + function isUnicodePropertyNameCharacter(ch) { + return isControlLetter(ch) || ch === 0x5F /* _ */ + } + + // UnicodePropertyValue :: + // UnicodePropertyValueCharacters + pp$8.regexp_eatUnicodePropertyValue = function(state) { + var ch = 0; + state.lastStringValue = ""; + while (isUnicodePropertyValueCharacter(ch = state.current())) { + state.lastStringValue += codePointToString(ch); + state.advance(); + } + return state.lastStringValue !== "" + }; + function isUnicodePropertyValueCharacter(ch) { + return isUnicodePropertyNameCharacter(ch) || isDecimalDigit(ch) + } + + // LoneUnicodePropertyNameOrValue :: + // UnicodePropertyValueCharacters + pp$8.regexp_eatLoneUnicodePropertyNameOrValue = function(state) { + return this.regexp_eatUnicodePropertyValue(state) + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-CharacterClass + pp$8.regexp_eatCharacterClass = function(state) { + if (state.eat(0x5B /* [ */)) { + state.eat(0x5E /* ^ */); + this.regexp_classRanges(state); + if (state.eat(0x5D /* [ */)) { + return true + } + // Unreachable since it threw "unterminated regular expression" error before. + state.raise("Unterminated character class"); + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-ClassRanges + // https://www.ecma-international.org/ecma-262/8.0/#prod-NonemptyClassRanges + // https://www.ecma-international.org/ecma-262/8.0/#prod-NonemptyClassRangesNoDash + pp$8.regexp_classRanges = function(state) { + while (this.regexp_eatClassAtom(state)) { + var left = state.lastIntValue; + if (state.eat(0x2D /* - */) && this.regexp_eatClassAtom(state)) { + var right = state.lastIntValue; + if (state.switchU && (left === -1 || right === -1)) { + state.raise("Invalid character class"); + } + if (left !== -1 && right !== -1 && left > right) { + state.raise("Range out of order in character class"); + } + } + } + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-ClassAtom + // https://www.ecma-international.org/ecma-262/8.0/#prod-ClassAtomNoDash + pp$8.regexp_eatClassAtom = function(state) { + var start = state.pos; + + if (state.eat(0x5C /* \ */)) { + if (this.regexp_eatClassEscape(state)) { + return true + } + if (state.switchU) { + // Make the same message as V8. + var ch$1 = state.current(); + if (ch$1 === 0x63 /* c */ || isOctalDigit(ch$1)) { + state.raise("Invalid class escape"); + } + state.raise("Invalid escape"); + } + state.pos = start; + } + + var ch = state.current(); + if (ch !== 0x5D /* [ */) { + state.lastIntValue = ch; + state.advance(); + return true + } + + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-ClassEscape + pp$8.regexp_eatClassEscape = function(state) { + var start = state.pos; + + if (state.eat(0x62 /* b */)) { + state.lastIntValue = 0x08; /* */ + return true + } + + if (state.switchU && state.eat(0x2D /* - */)) { + state.lastIntValue = 0x2D; /* - */ + return true + } + + if (!state.switchU && state.eat(0x63 /* c */)) { + if (this.regexp_eatClassControlLetter(state)) { + return true + } + state.pos = start; + } + + return ( + this.regexp_eatCharacterClassEscape(state) || + this.regexp_eatCharacterEscape(state) + ) + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-ClassControlLetter + pp$8.regexp_eatClassControlLetter = function(state) { + var ch = state.current(); + if (isDecimalDigit(ch) || ch === 0x5F /* _ */) { + state.lastIntValue = ch % 0x20; + state.advance(); + return true + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-HexEscapeSequence + pp$8.regexp_eatHexEscapeSequence = function(state) { + var start = state.pos; + if (state.eat(0x78 /* x */)) { + if (this.regexp_eatFixedHexDigits(state, 2)) { + return true + } + if (state.switchU) { + state.raise("Invalid escape"); + } + state.pos = start; + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-DecimalDigits + pp$8.regexp_eatDecimalDigits = function(state) { + var start = state.pos; + var ch = 0; + state.lastIntValue = 0; + while (isDecimalDigit(ch = state.current())) { + state.lastIntValue = 10 * state.lastIntValue + (ch - 0x30 /* 0 */); + state.advance(); + } + return state.pos !== start + }; + function isDecimalDigit(ch) { + return ch >= 0x30 /* 0 */ && ch <= 0x39 /* 9 */ + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-HexDigits + pp$8.regexp_eatHexDigits = function(state) { + var start = state.pos; + var ch = 0; + state.lastIntValue = 0; + while (isHexDigit(ch = state.current())) { + state.lastIntValue = 16 * state.lastIntValue + hexToInt(ch); + state.advance(); + } + return state.pos !== start + }; + function isHexDigit(ch) { + return ( + (ch >= 0x30 /* 0 */ && ch <= 0x39 /* 9 */) || + (ch >= 0x41 /* A */ && ch <= 0x46 /* F */) || + (ch >= 0x61 /* a */ && ch <= 0x66 /* f */) + ) + } + function hexToInt(ch) { + if (ch >= 0x41 /* A */ && ch <= 0x46 /* F */) { + return 10 + (ch - 0x41 /* A */) + } + if (ch >= 0x61 /* a */ && ch <= 0x66 /* f */) { + return 10 + (ch - 0x61 /* a */) + } + return ch - 0x30 /* 0 */ + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-LegacyOctalEscapeSequence + // Allows only 0-377(octal) i.e. 0-255(decimal). + pp$8.regexp_eatLegacyOctalEscapeSequence = function(state) { + if (this.regexp_eatOctalDigit(state)) { + var n1 = state.lastIntValue; + if (this.regexp_eatOctalDigit(state)) { + var n2 = state.lastIntValue; + if (n1 <= 3 && this.regexp_eatOctalDigit(state)) { + state.lastIntValue = n1 * 64 + n2 * 8 + state.lastIntValue; + } else { + state.lastIntValue = n1 * 8 + n2; + } + } else { + state.lastIntValue = n1; + } + return true + } + return false + }; + + // https://www.ecma-international.org/ecma-262/8.0/#prod-OctalDigit + pp$8.regexp_eatOctalDigit = function(state) { + var ch = state.current(); + if (isOctalDigit(ch)) { + state.lastIntValue = ch - 0x30; /* 0 */ + state.advance(); + return true + } + state.lastIntValue = 0; + return false + }; + function isOctalDigit(ch) { + return ch >= 0x30 /* 0 */ && ch <= 0x37 /* 7 */ + } + + // https://www.ecma-international.org/ecma-262/8.0/#prod-Hex4Digits + // https://www.ecma-international.org/ecma-262/8.0/#prod-HexDigit + // And HexDigit HexDigit in https://www.ecma-international.org/ecma-262/8.0/#prod-HexEscapeSequence + pp$8.regexp_eatFixedHexDigits = function(state, length) { + var start = state.pos; + state.lastIntValue = 0; + for (var i = 0; i < length; ++i) { + var ch = state.current(); + if (!isHexDigit(ch)) { + state.pos = start; + return false + } + state.lastIntValue = 16 * state.lastIntValue + hexToInt(ch); + state.advance(); + } + return true + }; + + // Object type used to represent tokens. Note that normally, tokens + // simply exist as properties on the parser object. This is only + // used for the onToken callback and the external tokenizer. + + var Token = function Token(p) { + this.type = p.type; + this.value = p.value; + this.start = p.start; + this.end = p.end; + if (p.options.locations) + { this.loc = new SourceLocation(p, p.startLoc, p.endLoc); } + if (p.options.ranges) + { this.range = [p.start, p.end]; } + }; + + // ## Tokenizer + + var pp$9 = Parser.prototype; + + // Move to the next token + + pp$9.next = function() { + if (this.options.onToken) + { this.options.onToken(new Token(this)); } + + this.lastTokEnd = this.end; + this.lastTokStart = this.start; + this.lastTokEndLoc = this.endLoc; + this.lastTokStartLoc = this.startLoc; + this.nextToken(); + }; + + pp$9.getToken = function() { + this.next(); + return new Token(this) + }; + + // If we're in an ES6 environment, make parsers iterable + if (typeof Symbol !== "undefined") + { pp$9[Symbol.iterator] = function() { + var this$1 = this; + + return { + next: function () { + var token = this$1.getToken(); + return { + done: token.type === types.eof, + value: token + } + } + } + }; } + + // Toggle strict mode. Re-reads the next number or string to please + // pedantic tests (`"use strict"; 010;` should fail). + + pp$9.curContext = function() { + return this.context[this.context.length - 1] + }; + + // Read a single token, updating the parser object's token-related + // properties. + + pp$9.nextToken = function() { + var curContext = this.curContext(); + if (!curContext || !curContext.preserveSpace) { this.skipSpace(); } + + this.start = this.pos; + if (this.options.locations) { this.startLoc = this.curPosition(); } + if (this.pos >= this.input.length) { return this.finishToken(types.eof) } + + if (curContext.override) { return curContext.override(this) } + else { this.readToken(this.fullCharCodeAtPos()); } + }; + + pp$9.readToken = function(code) { + // Identifier or keyword. '\uXXXX' sequences are allowed in + // identifiers, so '\' also dispatches to that. + if (isIdentifierStart(code, this.options.ecmaVersion >= 6) || code === 92 /* '\' */) + { return this.readWord() } + + return this.getTokenFromCode(code) + }; + + pp$9.fullCharCodeAtPos = function() { + var code = this.input.charCodeAt(this.pos); + if (code <= 0xd7ff || code >= 0xe000) { return code } + var next = this.input.charCodeAt(this.pos + 1); + return (code << 10) + next - 0x35fdc00 + }; + + pp$9.skipBlockComment = function() { + var startLoc = this.options.onComment && this.curPosition(); + var start = this.pos, end = this.input.indexOf("*/", this.pos += 2); + if (end === -1) { this.raise(this.pos - 2, "Unterminated comment"); } + this.pos = end + 2; + if (this.options.locations) { + lineBreakG.lastIndex = start; + var match; + while ((match = lineBreakG.exec(this.input)) && match.index < this.pos) { + ++this.curLine; + this.lineStart = match.index + match[0].length; + } + } + if (this.options.onComment) + { this.options.onComment(true, this.input.slice(start + 2, end), start, this.pos, + startLoc, this.curPosition()); } + }; + + pp$9.skipLineComment = function(startSkip) { + var start = this.pos; + var startLoc = this.options.onComment && this.curPosition(); + var ch = this.input.charCodeAt(this.pos += startSkip); + while (this.pos < this.input.length && !isNewLine(ch)) { + ch = this.input.charCodeAt(++this.pos); + } + if (this.options.onComment) + { this.options.onComment(false, this.input.slice(start + startSkip, this.pos), start, this.pos, + startLoc, this.curPosition()); } + }; + + // Called at the start of the parse and after every token. Skips + // whitespace and comments, and. + + pp$9.skipSpace = function() { + loop: while (this.pos < this.input.length) { + var ch = this.input.charCodeAt(this.pos); + switch (ch) { + case 32: case 160: // ' ' + ++this.pos; + break + case 13: + if (this.input.charCodeAt(this.pos + 1) === 10) { + ++this.pos; + } + case 10: case 8232: case 8233: + ++this.pos; + if (this.options.locations) { + ++this.curLine; + this.lineStart = this.pos; + } + break + case 47: // '/' + switch (this.input.charCodeAt(this.pos + 1)) { + case 42: // '*' + this.skipBlockComment(); + break + case 47: + this.skipLineComment(2); + break + default: + break loop + } + break + default: + if (ch > 8 && ch < 14 || ch >= 5760 && nonASCIIwhitespace.test(String.fromCharCode(ch))) { + ++this.pos; + } else { + break loop + } + } + } + }; + + // Called at the end of every token. Sets `end`, `val`, and + // maintains `context` and `exprAllowed`, and skips the space after + // the token, so that the next one's `start` will point at the + // right position. + + pp$9.finishToken = function(type, val) { + this.end = this.pos; + if (this.options.locations) { this.endLoc = this.curPosition(); } + var prevType = this.type; + this.type = type; + this.value = val; + + this.updateContext(prevType); + }; + + // ### Token reading + + // This is the function that is called to fetch the next token. It + // is somewhat obscure, because it works in character codes rather + // than characters, and because operator parsing has been inlined + // into it. + // + // All in the name of speed. + // + pp$9.readToken_dot = function() { + var next = this.input.charCodeAt(this.pos + 1); + if (next >= 48 && next <= 57) { return this.readNumber(true) } + var next2 = this.input.charCodeAt(this.pos + 2); + if (this.options.ecmaVersion >= 6 && next === 46 && next2 === 46) { // 46 = dot '.' + this.pos += 3; + return this.finishToken(types.ellipsis) + } else { + ++this.pos; + return this.finishToken(types.dot) + } + }; + + pp$9.readToken_slash = function() { // '/' + var next = this.input.charCodeAt(this.pos + 1); + if (this.exprAllowed) { ++this.pos; return this.readRegexp() } + if (next === 61) { return this.finishOp(types.assign, 2) } + return this.finishOp(types.slash, 1) + }; + + pp$9.readToken_mult_modulo_exp = function(code) { // '%*' + var next = this.input.charCodeAt(this.pos + 1); + var size = 1; + var tokentype = code === 42 ? types.star : types.modulo; + + // exponentiation operator ** and **= + if (this.options.ecmaVersion >= 7 && code === 42 && next === 42) { + ++size; + tokentype = types.starstar; + next = this.input.charCodeAt(this.pos + 2); + } + + if (next === 61) { return this.finishOp(types.assign, size + 1) } + return this.finishOp(tokentype, size) + }; + + pp$9.readToken_pipe_amp = function(code) { // '|&' + var next = this.input.charCodeAt(this.pos + 1); + if (next === code) { return this.finishOp(code === 124 ? types.logicalOR : types.logicalAND, 2) } + if (next === 61) { return this.finishOp(types.assign, 2) } + return this.finishOp(code === 124 ? types.bitwiseOR : types.bitwiseAND, 1) + }; + + pp$9.readToken_caret = function() { // '^' + var next = this.input.charCodeAt(this.pos + 1); + if (next === 61) { return this.finishOp(types.assign, 2) } + return this.finishOp(types.bitwiseXOR, 1) + }; + + pp$9.readToken_plus_min = function(code) { // '+-' + var next = this.input.charCodeAt(this.pos + 1); + if (next === code) { + if (next === 45 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 62 && + (this.lastTokEnd === 0 || lineBreak.test(this.input.slice(this.lastTokEnd, this.pos)))) { + // A `-->` line comment + this.skipLineComment(3); + this.skipSpace(); + return this.nextToken() + } + return this.finishOp(types.incDec, 2) + } + if (next === 61) { return this.finishOp(types.assign, 2) } + return this.finishOp(types.plusMin, 1) + }; + + pp$9.readToken_lt_gt = function(code) { // '<>' + var next = this.input.charCodeAt(this.pos + 1); + var size = 1; + if (next === code) { + size = code === 62 && this.input.charCodeAt(this.pos + 2) === 62 ? 3 : 2; + if (this.input.charCodeAt(this.pos + size) === 61) { return this.finishOp(types.assign, size + 1) } + return this.finishOp(types.bitShift, size) + } + if (next === 33 && code === 60 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 45 && + this.input.charCodeAt(this.pos + 3) === 45) { + // `` line comment\n this.skipLineComment(3)\n this.skipSpace()\n return this.nextToken()\n }\n return this.finishOp(tt.incDec, 2)\n }\n if (next === 61) return this.finishOp(tt.assign, 2)\n return this.finishOp(tt.plusMin, 1)\n}\n\npp.readToken_lt_gt = function(code) { // '<>'\n let next = this.input.charCodeAt(this.pos + 1)\n let size = 1\n if (next === code) {\n size = code === 62 && this.input.charCodeAt(this.pos + 2) === 62 ? 3 : 2\n if (this.input.charCodeAt(this.pos + size) === 61) return this.finishOp(tt.assign, size + 1)\n return this.finishOp(tt.bitShift, size)\n }\n if (next === 33 && code === 60 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 45 &&\n this.input.charCodeAt(this.pos + 3) === 45) {\n // `` line comment + this.skipLineComment(3); + this.skipSpace(); + return this.nextToken() + } + return this.finishOp(types.incDec, 2) + } + if (next === 61) { return this.finishOp(types.assign, 2) } + return this.finishOp(types.plusMin, 1) +}; + +pp$9.readToken_lt_gt = function(code) { // '<>' + var next = this.input.charCodeAt(this.pos + 1); + var size = 1; + if (next === code) { + size = code === 62 && this.input.charCodeAt(this.pos + 2) === 62 ? 3 : 2; + if (this.input.charCodeAt(this.pos + size) === 61) { return this.finishOp(types.assign, size + 1) } + return this.finishOp(types.bitShift, size) + } + if (next === 33 && code === 60 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 45 && + this.input.charCodeAt(this.pos + 3) === 45) { + // `` line comment\n this.skipLineComment(3)\n this.skipSpace()\n return this.nextToken()\n }\n return this.finishOp(tt.incDec, 2)\n }\n if (next === 61) return this.finishOp(tt.assign, 2)\n return this.finishOp(tt.plusMin, 1)\n}\n\npp.readToken_lt_gt = function(code) { // '<>'\n let next = this.input.charCodeAt(this.pos + 1)\n let size = 1\n if (next === code) {\n size = code === 62 && this.input.charCodeAt(this.pos + 2) === 62 ? 3 : 2\n if (this.input.charCodeAt(this.pos + size) === 61) return this.finishOp(tt.assign, size + 1)\n return this.finishOp(tt.bitShift, size)\n }\n if (next === 33 && code === 60 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 45 &&\n this.input.charCodeAt(this.pos + 3) === 45) {\n // ` + +| [
Ben Briggs](http://beneb.info)
[💻](https://github.com/ben-eb/caniuse-lite/commits?author=ben-eb "Code") [📖](https://github.com/ben-eb/caniuse-lite/commits?author=ben-eb "Documentation") [👀](#review-ben-eb "Reviewed Pull Requests") [⚠️](https://github.com/ben-eb/caniuse-lite/commits?author=ben-eb "Tests") | [
Andy Jansson](https://github.com/andyjansson)
[💻](https://github.com/ben-eb/caniuse-lite/commits?author=andyjansson "Code") | [
Andrey Sitnik](http://twitter.com/sitnikcode)
[💻](https://github.com/ben-eb/caniuse-lite/commits?author=ai "Code") |
Igor Deryabin
[💻](https://github.com/ben-eb/caniuse-lite/commits?author=rodweb "Code") | +| :---: | :---: | :---: | :---: | + + +This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome! + +Digital Ocean logo + +Big thanks to [DigitalOcean](https://www.digitalocean.com/?utm_source=opensource&utm_campaign=caniuse-lite) for supporting this project by providing their great infrastructure for us. + +## License + +The data in this repo is available for use under a CC BY 4.0 license +(http://creativecommons.org/licenses/by/4.0/). For attribution just mention +somewhere that the source is caniuse.com. If you have any questions about using +the data for your project please contact me here: http://a.deveria.com/contact + +[1]: http://caniuse.com/ +[2]: https://github.com/Fyrd/caniuse/issues/1827 + +## Security contact information + +To report a security vulnerability, please use the +[Tidelift security contact](https://tidelift.com/security). +Tidelift will coordinate the fix and disclosure. diff --git a/themes/piratecare/node_modules/caniuse-lite/data/agents.js b/themes/piratecare/node_modules/caniuse-lite/data/agents.js new file mode 100644 index 0000000..5cf8e99 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/agents.js @@ -0,0 +1 @@ +module.exports={A:{A:{H:0.0092277,D:0.0092277,G:0.110732,E:0.0415246,A:0.0369108,B:1.43029,nB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","nB","H","D","G","E","A","B","","",""],E:"IE",F:{nB:962323200,H:998870400,D:1161129600,G:1237420800,E:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.008806,K:0.008806,f:0.017612,L:0.017612,N:0.039627,I:0.149702,J:1.79642,q:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","f","L","N","I","J","q","",""],E:"Edge",F:{C:1438128000,K:1447286400,f:1470096000,L:1491868800,N:1508198400,I:1525046400,J:1542067200,q:null},D:{C:"ms",K:"ms",f:"ms",L:"ms",N:"ms",I:"ms",J:"ms"}},C:{A:{"0":0.026418,"1":0.013209,"2":0.008806,"3":0.039627,"4":0.008806,"5":0.017612,"6":0.026418,"8":0.13209,kB:0.004827,OB:0.00487,F:0.00974,O:0.004879,H:0.020136,D:0.005725,G:0.004525,E:0.00533,A:0.004283,B:0.009042,C:0.004471,K:0.004486,f:0.00453,L:0.004465,N:0.004417,I:0.008922,J:0.004393,P:0.004443,Q:0.004283,R:0.008806,S:0.004393,T:0.004525,U:0.008786,V:0.004403,W:0.004317,X:0.004393,Y:0.004418,Z:0.008834,a:0.004403,b:0.008928,c:0.004471,d:0.008922,e:0.004707,AB:0.022015,g:0.004465,h:0.004783,i:0.008806,j:0.004783,k:0.00487,l:0.005029,m:0.0047,n:0.008806,o:0.008806,p:0.013209,M:0.004525,r:0.022015,s:0.030821,t:0.004403,u:0.013209,v:0.008806,w:0.145299,x:0.008806,y:0.013209,z:0.008806,EB:0.008806,NB:0.013209,DB:0.052836,BB:0.04403,FB:0.026418,HB:0.074851,IB:0.761719,JB:2.42605,KB:0.057239,LB:0,MB:0,eB:0.008786,dB:0.00487},B:"moz",C:["","","","kB","OB","eB","dB","F","O","H","D","G","E","A","B","C","K","f","L","N","I","J","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","AB","g","h","i","j","k","l","m","n","o","p","M","r","s","t","u","v","w","x","y","z","0","1","2","EB","3","NB","4","5","6","DB","BB","FB","8","HB","IB","JB","KB","LB","MB",""],E:"Firefox",F:{"0":1506556800,"1":1510617600,"2":1516665600,"3":1525824000,"4":1536105600,"5":1540252800,"6":1544486400,"8":1562630400,kB:1161648000,OB:1213660800,eB:1246320000,dB:1264032000,F:1300752000,O:1308614400,H:1313452800,D:1317081600,G:1317081600,E:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,f:1338854400,L:1342483200,N:1346112000,I:1349740800,J:1353628800,P:1357603200,Q:1361232000,R:1364860800,S:1368489600,T:1372118400,U:1375747200,V:1379376000,W:1386633600,X:1391472000,Y:1395100800,Z:1398729600,a:1402358400,b:1405987200,c:1409616000,d:1413244800,e:1417392000,AB:1421107200,g:1424736000,h:1428278400,i:1431475200,j:1435881600,k:1439251200,l:1442880000,m:1446508800,n:1450137600,o:1453852800,p:1457395200,M:1461628800,r:1465257600,s:1470096000,t:1474329600,u:1479168000,v:1485216000,w:1488844800,x:1492560000,y:1497312000,z:1502150400,EB:1520985600,NB:1529971200,DB:1548720000,BB:1552953600,FB:1558396800,HB:1567468800,IB:1571788800,JB:1575331200,KB:1578355200,LB:null,MB:null}},D:{A:{"0":0.035224,"1":0.066045,"2":0.030821,"3":0.030821,"4":0.030821,"5":0.277389,"6":0.017612,"8":0.061642,F:0.004706,O:0.004879,H:0.004879,D:0.005591,G:0.005591,E:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.004403,f:0.004706,L:0.015087,N:0.004393,I:0.004393,J:0.008652,P:0.004418,Q:0.004393,R:0.004317,S:0.004465,T:0.008786,U:0.008806,V:0.004461,W:0.004403,X:0.004326,Y:0.0047,Z:0.004461,a:0.004403,b:0.013209,c:0.004465,d:0.013209,e:0.008806,AB:0.008806,g:0.008806,h:0.004464,i:0.022015,j:0.004464,k:0.013209,l:0.008806,m:0.004403,n:0.017612,o:0.004465,p:0.004403,M:0.004403,r:0.008806,s:0.035224,t:0.515151,u:0.008806,v:0.013209,w:0.004403,x:0.022015,y:0.026418,z:0.04403,EB:0.017612,NB:0.035224,DB:0.052836,BB:0.035224,FB:0.066045,HB:0.184926,IB:0.149702,JB:0.198135,KB:0.206941,LB:0.184926,MB:0.224553,cB:0.268583,QB:0.281792,XB:0.409479,TB:13.9971,q:11.5006,sB:0.039627,UB:0.017612,VB:0},B:"webkit",C:["F","O","H","D","G","E","A","B","C","K","f","L","N","I","J","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","AB","g","h","i","j","k","l","m","n","o","p","M","r","s","t","u","v","w","x","y","z","0","1","2","EB","3","NB","4","5","6","DB","BB","FB","8","HB","IB","JB","KB","LB","MB","cB","QB","XB","TB","q","sB","UB","VB"],E:"Chrome",F:{"0":1485302400,"1":1489017600,"2":1492560000,"3":1500940800,"4":1508198400,"5":1512518400,"6":1516752000,"8":1532390400,F:1264377600,O:1274745600,H:1283385600,D:1287619200,G:1291248000,E:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,f:1316131200,L:1316131200,N:1319500800,I:1323734400,J:1328659200,P:1332892800,Q:1337040000,R:1340668800,S:1343692800,T:1348531200,U:1352246400,V:1357862400,W:1361404800,X:1364428800,Y:1369094400,Z:1374105600,a:1376956800,b:1384214400,c:1389657600,d:1392940800,e:1397001600,AB:1400544000,g:1405468800,h:1409011200,i:1412640000,j:1416268800,k:1421798400,l:1425513600,m:1429401600,n:1432080000,o:1437523200,p:1441152000,M:1444780800,r:1449014400,s:1453248000,t:1456963200,u:1460592000,v:1464134400,w:1469059200,x:1472601600,y:1476230400,z:1480550400,EB:1496707200,NB:1504569600,DB:1520294400,BB:1523923200,FB:1527552000,HB:1536019200,IB:1539648000,JB:1543968000,KB:1548720000,LB:1552348800,MB:1555977600,cB:1559606400,QB:1564444800,XB:1568073600,TB:1571702400,q:1575936000,sB:null,UB:null,VB:null}},E:{A:{"7":0.184926,"9":0.435897,F:0,O:0.004403,H:0.004349,D:0.004465,G:0.026418,E:0.013209,A:0.017612,B:0.039627,C:0.136493,K:2.29396,WB:0,RB:0.008692,YB:0.66045,ZB:0.00456,aB:0.004283,bB:0.035224,PB:0.096866,fB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","WB","RB","F","O","YB","H","ZB","D","aB","G","E","bB","A","PB","B","7","C","9","K","fB","",""],E:"Safari",F:{"7":1522281600,"9":1553472000,WB:1205798400,RB:1226534400,F:1244419200,O:1275868800,YB:1311120000,H:1343174400,ZB:1382400000,D:1382400000,aB:1410998400,G:1413417600,E:1443657600,bB:1458518400,A:1474329600,PB:1490572800,B:1505779200,C:1537142400,K:1568851200,fB:null}},F:{A:{"0":0.008806,"1":0.008806,"2":0.013209,"3":0.004403,"4":0.004403,"5":0.013209,"6":0.070448,"7":0.006229,"9":0.008806,E:0.0082,B:0.016581,C:0.004317,L:0.00685,N:0.00685,I:0.00685,J:0.005014,P:0.006015,Q:0.004879,R:0.006597,S:0.006597,T:0.013434,U:0.006702,V:0.006015,W:0.005595,X:0.004393,Y:0.008652,Z:0.004879,a:0.004879,b:0.008806,c:0.005152,d:0.005014,e:0.009758,AB:0.004879,g:0.013209,h:0.004283,i:0.004367,j:0.004534,k:0.004367,l:0.004227,m:0.004418,n:0.009042,o:0.004227,p:0.004725,M:0.004417,r:0.008942,s:0.004707,t:0.004827,u:0.004707,v:0.004707,w:0.004326,x:0.008922,y:0.014349,z:0.004725,gB:0.00685,hB:0,iB:0.008392,jB:0.004706,GB:0.004879,lB:0.008786},B:"webkit",C:["","","","","","","","","","","","","","","","","","E","gB","hB","iB","jB","B","7","GB","lB","C","9","L","N","I","J","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","AB","g","h","i","j","k","l","m","n","o","p","M","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","","",""],E:"Opera",F:{"0":1537833600,"1":1543363200,"2":1548201600,"3":1554768000,"4":1561593600,"5":1566259200,"6":1570406400,"7":1302566400,"9":1352073600,E:1150761600,gB:1223424000,hB:1251763200,iB:1267488000,jB:1277942400,B:1292457600,GB:1309219200,lB:1323129600,C:1323129600,L:1372723200,N:1377561600,I:1381104000,J:1386288000,P:1390867200,Q:1393891200,R:1399334400,S:1401753600,T:1405987200,U:1409616000,V:1413331200,W:1417132800,X:1422316800,Y:1425945600,Z:1430179200,a:1433808000,b:1438646400,c:1442448000,d:1445904000,e:1449100800,AB:1454371200,g:1457308800,h:1462320000,i:1465344000,j:1470096000,k:1474329600,l:1477267200,m:1481587200,n:1486425600,o:1490054400,p:1494374400,M:1498003200,r:1502236800,s:1506470400,t:1510099200,u:1515024000,v:1517961600,w:1521676800,x:1525910400,y:1530144000,z:1534982400},D:{"7":"o","9":"o",E:"o",B:"o",C:"o",gB:"o",hB:"o",iB:"o",jB:"o",GB:"o",lB:"o"}},G:{A:{G:0.00128072,RB:0.00512289,mB:0.00256144,CB:0,oB:0.00768433,pB:0.00256144,qB:0.00896505,rB:0.0166494,SB:0.0153687,tB:0.162652,uB:0.0563518,vB:0.181862,wB:0.153687,xB:0.274074,yB:0.391901,zB:2.77404,"0B":4.02787,"1B":1.83399,"2B":2.88931},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","RB","mB","CB","oB","pB","qB","G","rB","SB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","",""],E:"iOS Safari",F:{RB:1270252800,mB:1283904000,CB:1299628800,oB:1331078400,pB:1359331200,qB:1394409600,G:1410912000,rB:1413763200,SB:1442361600,tB:1458518400,uB:1473724800,vB:1490572800,wB:1505779200,xB:1522281600,yB:1537142400,zB:1553472000,"0B":1568851200,"1B":1572220800,"2B":null}},H:{A:{"3B":1.16575},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3B","","",""],E:"Opera Mini",F:{"3B":1426464000}},I:{A:{OB:0.000748894,F:0.00324521,QB:0,"4B":0,"5B":0.000499263,"6B":0.000499263,"7B":0.00574152,CB:0.125565,"8B":0,"9B":0.0763872},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4B","5B","6B","OB","F","7B","CB","8B","9B","QB","","",""],E:"Android Browser",F:{"4B":1256515200,"5B":1274313600,"6B":1291593600,OB:1298332800,F:1318896000,"7B":1341792000,CB:1374624000,"8B":1386547200,"9B":1401667200,QB:1566777600}},J:{A:{D:0,A:0.011194},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376000,A:1359504000}},K:{A:{"7":0,"9":0,A:0,B:0,C:0,M:0.0111391,GB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","7","GB","C","9","M","","",""],E:"Opera Mobile",F:{"7":1314835200,"9":1349740800,A:1287100800,B:1300752000,GB:1318291200,C:1330300800,M:1474588800},D:{M:"webkit"}},L:{A:{q:35.1619},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","q","","",""],E:"Chrome for Android",F:{q:1575936000}},M:{A:{"8":0.229477},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8","","",""],E:"Firefox for Android",F:{"8":1567468800}},N:{A:{A:0.0115934,B:0.050373},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{AC:2.88246},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","AC","","",""],E:"UC Browser for Android",F:{AC:1471392000},D:{AC:"webkit"}},P:{A:{F:0.33211,BC:0.0311353,CC:0.0207569,DC:0.114163,EC:0.0415137,FC:0.321732,PB:2.72953},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","F","BC","CC","DC","EC","FC","PB","","",""],E:"Samsung Internet",F:{F:1461024000,BC:1481846400,CC:1509408000,DC:1528329600,EC:1546128000,FC:1554163200,PB:1567900800}},Q:{A:{GC:0.201492},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GC","","",""],E:"QQ Browser",F:{GC:1483228800}},R:{A:{HC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HC","","",""],E:"Baidu Browser",F:{HC:1491004800}},S:{A:{IC:0.195895},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","IC","","",""],E:"KaiOS Browser",F:{IC:1527811200}}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/browserVersions.js b/themes/piratecare/node_modules/caniuse-lite/data/browserVersions.js new file mode 100644 index 0000000..64a71c9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/browserVersions.js @@ -0,0 +1 @@ +module.exports={"0":"56","1":"57","2":"58","3":"60","4":"62","5":"63","6":"64","7":"11.1","8":"68","9":"12.1",A:"10",B:"11",C:"12",D:"7",E:"9",F:"4",G:"8",H:"6",I:"17",J:"18",K:"13",L:"15",M:"46",N:"16",O:"5",P:"19",Q:"20",R:"21",S:"22",T:"23",U:"24",V:"25",W:"26",X:"27",Y:"28",Z:"29",a:"30",b:"31",c:"32",d:"33",e:"34",f:"14",g:"36",h:"37",i:"38",j:"39",k:"40",l:"41",m:"42",n:"43",o:"44",p:"45",q:"79",r:"47",s:"48",t:"49",u:"50",v:"51",w:"52",x:"53",y:"54",z:"55",AB:"35",BB:"66",CB:"4.2-4.3",DB:"65",EB:"59",FB:"67",GB:"11.5",HB:"69",IB:"70",JB:"71",KB:"72",LB:"73",MB:"74",NB:"61",OB:"3",PB:"10.1",QB:"76",RB:"3.2",SB:"9.0-9.2",TB:"78",UB:"81",VB:"82",WB:"3.1",XB:"77",YB:"5.1",ZB:"6.1",aB:"7.1",bB:"9.1",cB:"75",dB:"3.6",eB:"3.5",fB:"TP",gB:"9.5-9.6",hB:"10.0-10.1",iB:"10.5",jB:"10.6",kB:"2",lB:"11.6",mB:"4.0-4.1",nB:"5.5",oB:"5.0-5.1",pB:"6.0-6.1",qB:"7.0-7.1",rB:"8.1-8.4",sB:"80",tB:"9.3",uB:"10.0-10.2",vB:"10.3",wB:"11.0-11.2",xB:"11.3-11.4",yB:"12.0-12.1",zB:"12.2-12.4","0B":"13.0-13.1","1B":"13.2","2B":"13.3","3B":"all","4B":"2.1","5B":"2.2","6B":"2.3","7B":"4.1","8B":"4.4","9B":"4.4.3-4.4.4",AC:"12.12",BC:"5.0-5.4",CC:"6.2-6.4",DC:"7.2-7.4",EC:"8.2",FC:"9.2",GC:"1.2",HC:"7.12",IC:"2.5"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/browsers.js b/themes/piratecare/node_modules/caniuse-lite/data/browsers.js new file mode 100644 index 0000000..04fbb50 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/browsers.js @@ -0,0 +1 @@ +module.exports={A:"ie",B:"edge",C:"firefox",D:"chrome",E:"safari",F:"opera",G:"ios_saf",H:"op_mini",I:"android",J:"bb",K:"op_mob",L:"and_chr",M:"and_ff",N:"ie_mob",O:"and_uc",P:"samsung",Q:"and_qq",R:"baidu",S:"kaios"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features.js b/themes/piratecare/node_modules/caniuse-lite/data/features.js new file mode 100644 index 0000000..c3cf8ec --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features.js @@ -0,0 +1 @@ +module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"async-iterations-and-generators":require("./features/async-iterations-and-generators"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"clear-site-data-header":require("./features/clear-site-data-header"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-apply-rule":require("./features/css-apply-rule"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-containment":require("./features/css-containment"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-east-asian":require("./features/font-variant-east-asian"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"media-attribute":require("./features/media-attribute"),"media-fragments":require("./features/media-fragments"),"media-session-api":require("./features/media-session-api"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"navigator-language":require("./features/navigator-language"),"netinfo":require("./features/netinfo"),"node-contains":require("./features/node-contains"),"node-parentelement":require("./features/node-parentelement"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"permissions-api":require("./features/permissions-api"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"private-class-fields":require("./features/private-class-fields"),"private-methods-and-accessors":require("./features/private-methods-and-accessors"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"public-class-fields":require("./features/public-class-fields"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"replace-all":require("./features/replace-all"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"sha-2":require("./features/sha-2"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stopimmediatepropagation":require("./features/stopimmediatepropagation"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"symbols":require("./features/symbols"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"text-underline-offset":require("./features/text-underline-offset"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"token-binding":require("./features/token-binding"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webhid":require("./features/webhid"),"webm":require("./features/webm"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/aac.js b/themes/piratecare/node_modules/caniuse-lite/data/features/aac.js new file mode 100644 index 0000000..d6c61bb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/aac.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB","132":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E","16":"A B"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"132":"8"},N:{"1":"A","2":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"132":"IC"}},B:6,C:"AAC audio file format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/abortcontroller.js b/themes/piratecare/node_modules/caniuse-lite/data/features/abortcontroller.js new file mode 100644 index 0000000..04af0f0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/abortcontroller.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f L"},C:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"0 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB"},D:{"1":"8 BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB"},E:{"1":"9 K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB","130":"7 C"},F:{"1":"0 1 2 3 4 5 6 x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"FC PB","2":"F BC CC DC EC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"AbortController & AbortSignal"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ac3-ec3.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ac3-ec3.js new file mode 100644 index 0000000..8a3138d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ac3-ec3.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J","2":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB","132":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","132":"A"},K:{"2":"7 A B C M GB","132":"9"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/accelerometer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/accelerometer.js new file mode 100644 index 0000000..851e5b7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/accelerometer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"2 3 4 5 6 EB NB DB BB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"Accelerometer"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/addeventlistener.js b/themes/piratecare/node_modules/caniuse-lite/data/features/addeventlistener.js new file mode 100644 index 0000000..5491651 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/addeventlistener.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","130":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","257":"kB OB F O H eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"EventTarget.addEventListener()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/alternate-stylesheet.js b/themes/piratecare/node_modules/caniuse-lite/data/features/alternate-stylesheet.js new file mode 100644 index 0000000..a771205 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/alternate-stylesheet.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","2":"H D nB"},B:{"2":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"7 9 E B C gB hB iB jB GB lB","16":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"16":"q"},M:{"16":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"16":"HC"},S:{"1":"IC"}},B:1,C:"Alternate stylesheet"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ambient-light.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ambient-light.js new file mode 100644 index 0000000..8677bb6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ambient-light.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K","132":"f L N I J","322":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB","132":"0 1 2 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","194":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB"},D:{"2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","322":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"132":"IC"}},B:4,C:"Ambient Light Sensor"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/apng.js b/themes/piratecare/node_modules/caniuse-lite/data/features/apng.js new file mode 100644 index 0000000..6d22e1e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/apng.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB"},D:{"1":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"1":"7 9 G E A B C K bB PB fB","2":"F O H D WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C M r s t u v w x y z gB hB iB jB GB lB","2":"E L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:7,C:"Animated PNG (APNG)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/array-find-index.js b/themes/piratecare/node_modules/caniuse-lite/data/features/array-find-index.js new file mode 100644 index 0000000..3ac2763 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/array-find-index.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","16":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB"},D:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o"},E:{"1":"7 9 G E A B C K aB bB PB fB","2":"F O H D WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","16":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Array.prototype.findIndex"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/array-find.js b/themes/piratecare/node_modules/caniuse-lite/data/features/array-find.js new file mode 100644 index 0000000..4a556ae --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/array-find.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","16":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB"},D:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o"},E:{"1":"7 9 G E A B C K aB bB PB fB","2":"F O H D WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","16":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Array.prototype.find"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/array-flat.js b/themes/piratecare/node_modules/caniuse-lite/data/features/array-flat.js new file mode 100644 index 0000000..8e3144a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/array-flat.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB","2":"0 1 2 3 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"1":"9 C K fB","2":"7 F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"PB","2":"F BC CC DC EC FC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"flat & flatMap array methods"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/array-includes.js b/themes/piratecare/node_modules/caniuse-lite/data/features/array-includes.js new file mode 100644 index 0000000..55090c8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/array-includes.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m eB dB"},D:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Array.prototype.includes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/arrow-functions.js b/themes/piratecare/node_modules/caniuse-lite/data/features/arrow-functions.js new file mode 100644 index 0000000..ce80d2d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/arrow-functions.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB"},D:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Arrow functions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/asmjs.js b/themes/piratecare/node_modules/caniuse-lite/data/features/asmjs.js new file mode 100644 index 0000000..d8c3b94 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/asmjs.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J","132":"q","322":"C"},C:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X","132":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","132":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","132":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","132":"M"},L:{"132":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","132":"BC CC DC EC FC PB"},Q:{"132":"GC"},R:{"132":"HC"},S:{"1":"IC"}},B:6,C:"asm.js"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/async-clipboard.js b/themes/piratecare/node_modules/caniuse-lite/data/features/async-clipboard.js new file mode 100644 index 0000000..9c240a9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/async-clipboard.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","66":"2 3 EB NB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r gB hB iB jB GB lB","16":"0 1 2 3 4 5 6 s t u v w x y z"},G:{"2":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Asynchronous Clipboard API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/async-functions.js b/themes/piratecare/node_modules/caniuse-lite/data/features/async-functions.js new file mode 100644 index 0000000..9bcee2e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/async-functions.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C K","194":"f"},C:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB"},D:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB","514":"PB"},F:{"1":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB","514":"vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Async functions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/async-iterations-and-generators.js b/themes/piratecare/node_modules/caniuse-lite/data/features/async-iterations-and-generators.js new file mode 100644 index 0000000..6ce0e29 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/async-iterations-and-generators.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"0 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB"},D:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"1":"9 C K fB","2":"7 F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Async iterators and generators"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/atob-btoa.js b/themes/piratecare/node_modules/caniuse-lite/data/features/atob-btoa.js new file mode 100644 index 0000000..af20f42 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/atob-btoa.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB hB","16":"iB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","16":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Base64 encoding and decoding"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/audio-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/audio-api.js new file mode 100644 index 0000000..1b7c5ac --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/audio-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB"},D:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E","33":"A B C K f L N I J P Q R S T U V W X Y Z a b c d"},E:{"2":"F O WB RB YB","33":"7 9 H D G E A B C K ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R"},G:{"2":"RB mB CB oB","33":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Web Audio API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/audio.js b/themes/piratecare/node_modules/caniuse-lite/data/features/audio.js new file mode 100644 index 0000000..5b898fc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/audio.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","132":"F O H D G E A B C K f L N I J P eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E","4":"gB hB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","2":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Audio element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/audiotracks.js b/themes/piratecare/node_modules/caniuse-lite/data/features/audiotracks.js new file mode 100644 index 0000000..4abac22 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/audiotracks.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J","322":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB","194":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o","322":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O H WB RB YB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b gB hB iB jB GB lB","322":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","322":"M"},L:{"322":"q"},M:{"2":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"194":"IC"}},B:1,C:"Audio Tracks"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/autofocus.js b/themes/piratecare/node_modules/caniuse-lite/data/features/autofocus.js new file mode 100644 index 0000000..58c4281 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/autofocus.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:1,C:"Autofocus attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/aux-click.js b/themes/piratecare/node_modules/caniuse-lite/data/features/aux-click.js new file mode 100644 index 0000000..6f32888 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/aux-click.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"K C G E A B CB"},B:{"2":"D v Z I M H"},C:{"2":"VB y F J K C G E A B D v Z I M H N O P Q R S T U V W X Y x a b c d e f L h i j k l m n o p q r s t u z TB SB","129":"0 1 2 3 5 6 7 w"},D:{"1":"2 3 5 6 7 w HB g DB XB EB FB","2":"0 1 F J K C G E A B D v Z I M H N O P Q R S T U V W X Y x a b c d e f L h i j k l m n o p q r s t u z"},E:{"2":"F J K C G E A B GB AB IB JB KB LB MB NB"},F:{"1":"l m n o p q r s t u","2":"8 9 E B D I M H N O P Q R S T U V W X Y x a b c d e f L h i j k OB PB QB RB UB BB"},G:{"2":"4 G AB WB YB ZB aB bB cB dB eB fB gB"},H:{"2":"hB"},I:{"1":"g","2":"4 y F iB jB kB lB mB nB"},J:{"2":"C","16":"A"},K:{"2":"8 9 A B D L BB"},L:{"1":"g"},M:{"2":"w"},N:{"2":"A B"},O:{"16":"oB"},P:{"1":"J pB","16":"F"},Q:{"16":"qB"},R:{"1":"rB"}},B:5,C:"Auxclick"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/auxclick.js b/themes/piratecare/node_modules/caniuse-lite/data/features/auxclick.js new file mode 100644 index 0000000..36e473b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/auxclick.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB","129":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","16":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"Auxclick"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/av1.js b/themes/piratecare/node_modules/caniuse-lite/data/features/av1.js new file mode 100644 index 0000000..f9d8c0c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/av1.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I","194":"J"},C:{"1":"8 FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y eB dB","1090":"5 6","1284":"DB","1540":"BB","2114":"0 1 2 3 z EB","3138":"4 NB"},D:{"1":"IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB","4162":"8 FB HB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"1 2 3 4 5 6","2":"0 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1090":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"AV1 video format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/background-attachment.js b/themes/piratecare/node_modules/caniuse-lite/data/features/background-attachment.js new file mode 100644 index 0000000..9f6dbe5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/background-attachment.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","132":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","132":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","132":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","132":"E gB hB"},G:{"2":"RB mB CB","772":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 8B 9B","132":"7B CB"},J:{"260":"D A"},K:{"1":"7 9 B C M GB","132":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"2":"F","1028":"BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1028":"HC"},S:{"1":"IC"}},B:4,C:"CSS background-attachment"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/background-clip-text.js b/themes/piratecare/node_modules/caniuse-lite/data/features/background-clip-text.js new file mode 100644 index 0000000..5bad2bf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/background-clip-text.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"36":"q","257":"L N I J","548":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB","130":"s"},D:{"36":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"16":"WB RB","36":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"16":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"16":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"16":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"16":"q"},M:{"16":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"130":"IC"}},B:1,C:"CSS3 Background-clip: text"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/background-img-opts.js b/themes/piratecare/node_modules/caniuse-lite/data/features/background-img-opts.js new file mode 100644 index 0000000..be78956 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/background-img-opts.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB","36":"dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","516":"F O H D G E A B C K f"},E:{"1":"7 9 D G E A B C K aB bB PB fB","772":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB","36":"hB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","4":"RB mB CB pB","516":"oB"},H:{"132":"3B"},I:{"1":"QB 8B 9B","36":"4B","516":"OB F 7B CB","548":"5B 6B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 Background-image options"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/background-position-x-y.js b/themes/piratecare/node_modules/caniuse-lite/data/features/background-position-x-y.js new file mode 100644 index 0000000..3b5e3b7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/background-position-x-y.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:7,C:"background-position-x & background-position-y"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/background-repeat-round-space.js b/themes/piratecare/node_modules/caniuse-lite/data/features/background-repeat-round-space.js new file mode 100644 index 0000000..e0200df --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/background-repeat-round-space.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G nB","132":"E"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s eB dB"},D:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E L N I J gB hB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:4,C:"CSS background-repeat round and space"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/background-sync.js b/themes/piratecare/node_modules/caniuse-lite/data/features/background-sync.js new file mode 100644 index 0000000..c86e9bd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/background-sync.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB eB dB","16":"LB MB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Background Sync API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/battery-status.js b/themes/piratecare/node_modules/caniuse-lite/data/features/battery-status.js new file mode 100644 index 0000000..a811314 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/battery-status.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"n o p M r s t u v","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","132":"N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m","164":"A B C K f L"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g","66":"h"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Battery Status API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/beacon.js b/themes/piratecare/node_modules/caniuse-lite/data/features/beacon.js new file mode 100644 index 0000000..8fd75c6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/beacon.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB"},D:{"1":"0 1 2 3 4 5 6 8 j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Beacon API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/beforeafterprint.js b/themes/piratecare/node_modules/caniuse-lite/data/features/beforeafterprint.js new file mode 100644 index 0000000..39eaba8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/beforeafterprint.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","16":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB"},D:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"2":"BC CC DC EC FC PB","16":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:2,C:"Printing Events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/bigint.js b/themes/piratecare/node_modules/caniuse-lite/data/features/bigint.js new file mode 100644 index 0000000..0b2de8e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/bigint.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"8 HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB","194":"DB BB FB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"FC PB","2":"F BC CC DC EC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:3,C:"BigInt"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/blobbuilder.js b/themes/piratecare/node_modules/caniuse-lite/data/features/blobbuilder.js new file mode 100644 index 0000000..f058425 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/blobbuilder.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB","36":"H D G E A B C"},D:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D","36":"G E A B C K f L N I J P"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"QB","2":"4B 5B 6B","36":"OB F 7B CB 8B 9B"},J:{"1":"A","2":"D"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Blob constructing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/bloburls.js b/themes/piratecare/node_modules/caniuse-lite/data/features/bloburls.js new file mode 100644 index 0000000..1f4ca1e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/bloburls.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","129":"A B"},B:{"1":"L N I J q","129":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D","33":"G E A B C K f L N I J P Q R S"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","33":"H"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","33":"pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB 4B 5B 6B","33":"F 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Blob URLs"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/border-image.js b/themes/piratecare/node_modules/caniuse-lite/data/features/border-image.js new file mode 100644 index 0000000..a03bbb4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/border-image.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"f L N I J q","129":"C K"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","260":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","804":"F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","260":"v w x y z","388":"a b c d e AB g h i j k l m n o p M r s t u","1412":"L N I J P Q R S T U V W X Y Z","1956":"F O H D G E A B C K f"},E:{"129":"7 9 A B C K bB PB fB","1412":"H D G E ZB aB","1956":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 n o p M r s t u v w x y z","2":"E gB hB","260":"i j k l m","388":"L N I J P Q R S T U V W X Y Z a b c d e AB g h","1796":"iB jB","1828":"7 9 B C GB lB"},G:{"129":"tB uB vB wB xB yB zB 0B 1B 2B","1412":"G pB qB rB SB","1956":"RB mB CB oB"},H:{"1828":"3B"},I:{"388":"QB 8B 9B","1956":"OB F 4B 5B 6B 7B CB"},J:{"1412":"A","1924":"D"},K:{"2":"A","388":"M","1828":"7 9 B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"388":"AC"},P:{"1":"DC EC FC PB","260":"BC CC","388":"F"},Q:{"260":"GC"},R:{"260":"HC"},S:{"260":"IC"}},B:4,C:"CSS3 Border images"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/border-radius.js b/themes/piratecare/node_modules/caniuse-lite/data/features/border-radius.js new file mode 100644 index 0000000..c40f87a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/border-radius.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","257":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","289":"OB eB dB","292":"kB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F"},E:{"1":"7 9 O D G E A B C K aB bB PB fB","33":"F WB RB","129":"H YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","33":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 5B 6B 7B CB 8B 9B","33":"4B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"257":"IC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/broadcastchannel.js b/themes/piratecare/node_modules/caniuse-lite/data/features/broadcastchannel.js new file mode 100644 index 0000000..6d81f8f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/broadcastchannel.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h eB dB"},D:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:1,C:"BroadcastChannel"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/brotli.js b/themes/piratecare/node_modules/caniuse-lite/data/features/brotli.js new file mode 100644 index 0000000..2ee86db --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/brotli.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n eB dB"},D:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s","194":"t","257":"u"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","513":"7 9 B C K fB"},F:{"1":"0 1 2 3 4 5 6 i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB","194":"g h"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","257":"QB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/calc.js b/themes/piratecare/node_modules/caniuse-lite/data/features/calc.js new file mode 100644 index 0000000..e637420 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/calc.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","260":"E","516":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","33":"F O H D G E A B C K f L"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J","33":"P Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","33":"H"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","33":"pB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB","132":"8B 9B"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"calc() as CSS unit value"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/canvas-blending.js b/themes/piratecare/node_modules/caniuse-lite/data/features/canvas-blending.js new file mode 100644 index 0000000..872a23c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/canvas-blending.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P eB dB"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O H WB RB YB"},F:{"1":"0 1 2 3 4 5 6 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Canvas blend modes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/canvas-text.js b/themes/piratecare/node_modules/caniuse-lite/data/features/canvas-text.js new file mode 100644 index 0000000..e1cea3b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/canvas-text.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","8":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","8":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","8":"E gB hB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","8":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Text API for Canvas"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/canvas.js b/themes/piratecare/node_modules/caniuse-lite/data/features/canvas.js new file mode 100644 index 0000000..2f40c04 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/canvas.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","132":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","132":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"260":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","132":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Canvas (basic support)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ch-unit.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ch-unit.js new file mode 100644 index 0000000..1c2b1b0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ch-unit.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","132":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"ch (character) unit"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/chacha20-poly1305.js b/themes/piratecare/node_modules/caniuse-lite/data/features/chacha20-poly1305.js new file mode 100644 index 0000000..d83358c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/chacha20-poly1305.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c","129":"d e AB g h i j k l m n o p M r s"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B","16":"9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/channel-messaging.js b/themes/piratecare/node_modules/caniuse-lite/data/features/channel-messaging.js new file mode 100644 index 0000000..61ea64f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/channel-messaging.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V eB dB","194":"W X Y Z a b c d e AB g h i j k"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB hB","16":"iB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Channel messaging"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/childnode-remove.js b/themes/piratecare/node_modules/caniuse-lite/data/features/childnode-remove.js new file mode 100644 index 0000000..1412ced --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/childnode-remove.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","16":"C"},C:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S eB dB"},D:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","16":"H"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"ChildNode.remove()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/classlist.js b/themes/piratecare/node_modules/caniuse-lite/data/features/classlist.js new file mode 100644 index 0000000..72b33cf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/classlist.js @@ -0,0 +1 @@ +module.exports={A:{A:{"8":"H D G E nB","1924":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB eB","516":"U V","772":"F O H D G E A B C K f L N I J P Q R S T dB"},D:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F O H D","516":"U V W X","772":"T","900":"G E A B C K f L N I J P Q R S"},E:{"1":"7 9 D G E A B C K aB bB PB fB","8":"F O WB RB","900":"H YB ZB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","8":"7 E B gB hB iB jB","900":"9 C GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","8":"RB mB CB","900":"oB pB"},H:{"900":"3B"},I:{"1":"QB 8B 9B","8":"4B 5B 6B","900":"OB F 7B CB"},J:{"1":"A","900":"D"},K:{"1":"M","8":"A B","900":"7 9 C GB"},L:{"1":"q"},M:{"1":"8"},N:{"900":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"classList (DOMTokenList)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/clear-site-data-header.js b/themes/piratecare/node_modules/caniuse-lite/data/features/clear-site-data-header.js new file mode 100644 index 0000000..9dbda06 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/clear-site-data-header.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"H D G E A B nB"},B:{"1":"q","16":"C K f L N I J"},C:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB","16":"0 1 2 3 4 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},E:{"16":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 s t u v w x y z","16":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r gB hB iB jB GB lB"},G:{"16":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"1":"QB","16":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"16":"IC"}},B:5,C:"Clear-Site-Data Header"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js b/themes/piratecare/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js new file mode 100644 index 0000000..e429c1c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/clipboard.js b/themes/piratecare/node_modules/caniuse-lite/data/features/clipboard.js new file mode 100644 index 0000000..661e636 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/clipboard.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2436":"H D G E A B nB"},B:{"260":"I J","2436":"C K f L N","10244":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB","772":"S T U V W X Y Z a b c d e AB g h i j k","4100":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C","2564":"K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m","10244":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"9 C K fB","16":"WB RB","2308":"7 A B PB","2820":"F O H D G E YB ZB aB bB"},F:{"2":"7 E B gB hB iB jB GB lB","16":"C","516":"9","2564":"L N I J P Q R S T U V W X Y Z","10244":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"yB zB 0B 1B 2B","2":"RB mB CB","2820":"G oB pB qB rB SB tB uB vB wB xB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","2308":"QB 8B 9B"},J:{"2":"D","2308":"A"},K:{"2":"7 A B C GB","16":"9","3076":"M"},L:{"2052":"q"},M:{"1028":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2052":"BC CC DC EC FC PB","2308":"F"},Q:{"10244":"GC"},R:{"2052":"HC"},S:{"4100":"IC"}},B:5,C:"Synchronous Clipboard API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/comparedocumentposition.js b/themes/piratecare/node_modules/caniuse-lite/data/features/comparedocumentposition.js new file mode 100644 index 0000000..cd9356a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/comparedocumentposition.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f","132":"L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 A B C K PB fB","16":"F O H WB RB","132":"D G E ZB aB bB","260":"YB"},F:{"1":"0 1 2 3 4 5 6 9 C I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","16":"7 E B gB hB iB jB GB","132":"L N"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","16":"RB","132":"G mB CB oB pB qB rB SB tB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","16":"4B 5B","132":"OB F 6B 7B CB"},J:{"132":"D A"},K:{"1":"9 C M","16":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Node.compareDocumentPosition()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/console-basic.js b/themes/piratecare/node_modules/caniuse-lite/data/features/console-basic.js new file mode 100644 index 0000000..e3758d0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/console-basic.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D nB","132":"G E"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E gB hB iB jB"},G:{"1":"RB mB CB oB","513":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"4097":"3B"},I:{"1025":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"258":"D A"},K:{"2":"A","258":"7 9 B C M GB"},L:{"1025":"q"},M:{"2049":"8"},N:{"258":"A B"},O:{"258":"AC"},P:{"1025":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1025":"HC"},S:{"1":"IC"}},B:1,C:"Basic console logging functions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/console-time.js b/themes/piratecare/node_modules/caniuse-lite/data/features/console-time.js new file mode 100644 index 0000000..e717ca9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/console-time.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E gB hB iB jB","16":"B"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"M","16":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"console.time and console.timeEnd"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/const.js b/themes/piratecare/node_modules/caniuse-lite/data/features/const.js new file mode 100644 index 0000000..e3a70dd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/const.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","2052":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","132":"kB OB F O H D G E A B C eB dB","260":"K f L N I J P Q R S T U V W X Y Z a b c d e AB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","260":"F O H D G E A B C K f L N I J P Q","772":"R S T U V W X Y Z a b c d e AB g h i j k","1028":"l m n o p M r s"},E:{"1":"7 9 A B C K PB fB","260":"F O WB RB","772":"H D G E YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"E gB","132":"7 B hB iB jB GB","644":"9 C lB","772":"L N I J P Q R S T U V W X","1028":"Y Z a b c d e AB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","260":"RB mB CB","772":"G oB pB qB rB SB tB"},H:{"644":"3B"},I:{"1":"QB","16":"4B 5B","260":"6B","772":"OB F 7B CB 8B 9B"},J:{"772":"D A"},K:{"1":"M","132":"7 A B GB","644":"9 C"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","1028":"F"},Q:{"772":"GC"},R:{"1028":"HC"},S:{"1":"IC"}},B:6,C:"const"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/constraint-validation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/constraint-validation.js new file mode 100644 index 0000000..882ff1b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/constraint-validation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","900":"A B"},B:{"1":"I J q","388":"f L N","900":"C K"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","260":"t u","388":"Z a b c d e AB g h i j k l m n o p M r s","900":"F O H D G E A B C K f L N I J P Q R S T U V W X Y"},D:{"1":"0 1 2 3 4 5 6 8 k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f","388":"V W X Y Z a b c d e AB g h i j","900":"L N I J P Q R S T U"},E:{"1":"7 9 A B C K PB fB","16":"F O WB RB","388":"G E aB bB","900":"H D YB ZB"},F:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"7 E B gB hB iB jB GB","388":"L N I J P Q R S T U V W","900":"9 C lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB","388":"G qB rB SB tB","900":"oB pB"},H:{"2":"3B"},I:{"1":"QB","16":"OB 4B 5B 6B","388":"8B 9B","900":"F 7B CB"},J:{"16":"D","388":"A"},K:{"1":"M","16":"7 A B GB","900":"9 C"},L:{"1":"q"},M:{"1":"8"},N:{"900":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"388":"GC"},R:{"1":"HC"},S:{"388":"IC"}},B:1,C:"Constraint Validation API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/contenteditable.js b/themes/piratecare/node_modules/caniuse-lite/data/features/contenteditable.js new file mode 100644 index 0000000..d4965ad --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/contenteditable.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB","4":"OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"contenteditable attribute (basic support)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js b/themes/piratecare/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js new file mode 100644 index 0000000..409c604 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","129":"F O H D G E A B C K f L N I J P Q R S"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K","257":"f L N I J P Q R S T U"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O WB RB","257":"H ZB","260":"YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","257":"pB","260":"oB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D","257":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"257":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Content Security Policy 1.0"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js new file mode 100644 index 0000000..cedfee2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f","32772":"L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB","132":"b c d e","260":"AB","516":"g h i j k l m n o","8196":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB","1028":"g h i","2052":"j"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S gB hB iB jB GB lB","1028":"T U V","2052":"W"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"4100":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"8196":"IC"}},B:4,C:"Content Security Policy Level 2"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/cors.js b/themes/piratecare/node_modules/caniuse-lite/data/features/cors.js new file mode 100644 index 0000000..947444b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/cors.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D nB","132":"A","260":"G E"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB JB KB LB MB eB dB","2":"kB OB","1025":"4 5 6 8 NB DB BB FB HB IB"},D:{"1":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C"},E:{"2":"WB RB","513":"7 9 H D G E A B C K ZB aB bB PB fB","644":"F O YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB"},G:{"513":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","644":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","132":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","132":"D"},K:{"1":"9 C M","2":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","132":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Cross-Origin Resource Sharing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/createimagebitmap.js b/themes/piratecare/node_modules/caniuse-lite/data/features/createimagebitmap.js new file mode 100644 index 0000000..b51ea5e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/createimagebitmap.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l eB dB","3076":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","132":"u v","260":"w x","516":"0 1 2 y z"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB","16":"fB"},F:{"1":"0 1 2 3 4 5 6 M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g gB hB iB jB GB lB","132":"h i","260":"j k","516":"l m n o p"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"3076":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","16":"F BC"},Q:{"1":"GC"},R:{"2":"HC"},S:{"3076":"IC"}},B:1,C:"createImageBitmap"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/credential-management.js b/themes/piratecare/node_modules/caniuse-lite/data/features/credential-management.js new file mode 100644 index 0000000..88bae53 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/credential-management.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r","66":"s t u","129":"0 v w x y z"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Credential Management API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/cryptography.js b/themes/piratecare/node_modules/caniuse-lite/data/features/cryptography.js new file mode 100644 index 0000000..ce82c45 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/cryptography.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G E A","164":"B"},B:{"1":"q","1025":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b eB dB","322":"c d"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g"},E:{"1":"7 9 B C K fB","8":"F O H D WB RB YB ZB","545":"G E A aB bB PB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","8":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","8":"RB mB CB oB pB qB","545":"G rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","8":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"8":"D A"},K:{"1":"M","8":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A","164":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Web Cryptography"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-all.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-all.js new file mode 100644 index 0000000..8f69af3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-all.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W eB dB"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB 9B","2":"OB F 4B 5B 6B 7B CB 8B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS all property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-animation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-animation.js new file mode 100644 index 0000000..ad166c6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-animation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F eB dB","33":"O H D G E A B C K f L"},D:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m"},E:{"1":"7 9 E A B C K bB PB fB","2":"WB RB","33":"H D G YB ZB aB","292":"F O"},F:{"1":"0 1 2 3 4 5 6 9 a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","33":"C L N I J P Q R S T U V W X Y Z"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","33":"G pB qB rB","164":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"QB","33":"F 7B CB 8B 9B","164":"OB 4B 5B 6B"},J:{"33":"D A"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS Animation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-any-link.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-any-link.js new file mode 100644 index 0000000..5a1f578 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-any-link.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","33":"q"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB OB F O H D G E A B C K f L N I J P Q eB dB","33":"R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t"},D:{"16":"F O H D G E A B C K f L N I J P Q R S T","33":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"16":"F O H WB RB YB","33":"7 9 D G E A B C K ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"16":"RB mB CB oB","33":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"OB F 4B 5B 6B 7B CB 8B 9B","33":"QB"},J:{"16":"D A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"33":"8"},N:{"2":"A B"},O:{"16":"AC"},P:{"16":"F","33":"BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"33":"IC"}},B:5,C:"CSS :any-link selector"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-appearance.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-appearance.js new file mode 100644 index 0000000..3a8f4f7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-appearance.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"164":"q","388":"C K f L N I J"},C:{"164":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","676":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e eB dB"},D:{"164":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"164":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","164":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"164":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"164":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"164":"D A"},K:{"2":"7 9 A B C GB","164":"M"},L:{"164":"q"},M:{"164":"8"},N:{"2":"A","388":"B"},O:{"164":"AC"},P:{"164":"F BC CC DC EC FC PB"},Q:{"164":"GC"},R:{"164":"HC"},S:{"164":"IC"}},B:5,C:"CSS Appearance"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-apply-rule.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-apply-rule.js new file mode 100644 index 0000000..642c938 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-apply-rule.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","194":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","194":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h gB hB iB jB GB lB","194":"0 1 2 3 4 5 6 i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","194":"M"},L:{"194":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","194":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"194":"HC"},S:{"2":"IC"}},B:7,C:"CSS @apply rule"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-at-counter-style.js new file mode 100644 index 0000000..5555a02 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-at-counter-style.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB","132":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"132":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"132":"IC"}},B:4,C:"CSS Counter Styles"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-backdrop-filter.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-backdrop-filter.js new file mode 100644 index 0000000..646df10 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-backdrop-filter.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N","257":"I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB eB dB","578":"IB JB KB LB MB"},D:{"1":"QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M","194":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB"},E:{"2":"F O H D G WB RB YB ZB aB","33":"7 9 E A B C K bB PB fB"},F:{"1":"6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d gB hB iB jB GB lB","194":"0 1 2 3 4 5 e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB","33":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","194":"M"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","194":"BC CC DC EC FC PB"},Q:{"194":"GC"},R:{"194":"HC"},S:{"2":"IC"}},B:7,C:"CSS Backdrop Filter"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-background-offsets.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-background-offsets.js new file mode 100644 index 0000000..3323152 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-background-offsets.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C eB dB"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS background-position edge offsets"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js new file mode 100644 index 0000000..19266d8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z eB dB"},D:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e","260":"M"},E:{"1":"7 9 B C K PB fB","2":"F O H D WB RB YB ZB","132":"G E A aB bB"},F:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R gB hB iB jB GB lB","260":"d"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB","132":"G rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","260":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS background-blend-mode"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js new file mode 100644 index 0000000..8ce13b8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","164":"q"},C:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R","164":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H WB RB YB","164":"7 9 D G E A B C K ZB aB bB PB fB"},F:{"2":"E gB hB iB jB","129":"7 9 B C GB lB","164":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"RB mB CB oB pB","164":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"132":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","164":"QB 8B 9B"},J:{"2":"D","164":"A"},K:{"2":"A","129":"7 9 B C GB","164":"M"},L:{"164":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"164":"F BC CC DC EC FC PB"},Q:{"164":"GC"},R:{"164":"HC"},S:{"1":"IC"}},B:5,C:"CSS box-decoration-break"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-boxshadow.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-boxshadow.js new file mode 100644 index 0000000..2b4f65f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-boxshadow.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","33":"eB dB"},D:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","33":"O","164":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","33":"mB CB","164":"RB"},H:{"2":"3B"},I:{"1":"F QB 7B CB 8B 9B","164":"OB 4B 5B 6B"},J:{"1":"A","33":"D"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 Box-shadow"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-canvas.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-canvas.js new file mode 100644 index 0000000..38ac133 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-canvas.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB","16":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r"},E:{"2":"WB RB","33":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","33":"L N I J P Q R S T U V W X Y Z a b c d e"},G:{"33":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"QB","33":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"BC CC DC EC FC PB","33":"F"},Q:{"33":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"CSS Canvas Drawings"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-caret-color.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-caret-color.js new file mode 100644 index 0000000..550ae11 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-caret-color.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB"},D:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"CSS caret-color"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-case-insensitive.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-case-insensitive.js new file mode 100644 index 0000000..b56f560 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-case-insensitive.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-clip-path.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-clip-path.js new file mode 100644 index 0000000..2934086 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-clip-path.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I","260":"q","3138":"J"},C:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB","644":"r s t u v w x"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T","260":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","292":"U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},E:{"2":"F O H WB RB YB ZB","292":"7 9 D G E A B C K aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","260":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z","292":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l"},G:{"2":"RB mB CB oB pB","292":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","260":"QB","292":"8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","292":"M"},L:{"260":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"292":"AC"},P:{"292":"F BC CC DC EC FC PB"},Q:{"292":"GC"},R:{"260":"HC"},S:{"644":"IC"}},B:4,C:"CSS clip-path property (for HTML)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-color-adjust.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-color-adjust.js new file mode 100644 index 0000000..3cba21d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-color-adjust.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","33":"q"},C:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB"},D:{"16":"F O H D G E A B C K f L N I J","33":"0 1 2 3 4 5 6 8 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O WB RB YB","33":"7 9 H D G E A B C K ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"16":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"2":"7 9 A B C M GB"},L:{"16":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"1":"IC"}},B:7,C:"CSS color-adjust"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-conic-gradients.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-conic-gradients.js new file mode 100644 index 0000000..1e35e90 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-conic-gradients.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"3 4 5 6 8 EB NB DB BB FB"},E:{"1":"9 K fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"1":"6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p gB hB iB jB GB lB","194":"0 1 2 3 4 5 M r s t u v w x y z"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"PB","2":"F BC CC DC EC FC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Conical Gradients"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-containment.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-containment.js new file mode 100644 index 0000000..526bfb9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-containment.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k eB dB","322":"l m n o p M r s t u v","336":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB"},D:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","194":"v"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h gB hB iB jB GB lB","194":"i j"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"322":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"322":"IC"}},B:4,C:"CSS Containment"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-counters.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-counters.js new file mode 100644 index 0000000..aee3cad --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-counters.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","2":"H D nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS Counters"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-crisp-edges.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-crisp-edges.js new file mode 100644 index 0000000..574bc48 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-crisp-edges.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H nB","2340":"D G E A B"},B:{"2":"C K f L N I J","1025":"q"},C:{"2":"kB OB eB","513":"8 DB BB FB HB IB JB KB LB MB","545":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k","1025":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K PB fB","2":"F O WB RB YB","164":"H","4644":"D G E ZB aB bB"},F:{"2":"7 E B L N I J P Q R S T U V W X gB hB iB jB GB","545":"9 C lB","1025":"0 1 2 3 4 5 6 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","4260":"oB pB","4644":"G qB rB SB tB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","1025":"QB"},J:{"2":"D","4260":"A"},K:{"2":"7 A B GB","545":"9 C","1025":"M"},L:{"1025":"q"},M:{"545":"8"},N:{"2340":"A B"},O:{"1":"AC"},P:{"1025":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1025":"HC"},S:{"4097":"IC"}},B:7,C:"Crisp edges/pixelated images"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-cross-fade.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-cross-fade.js new file mode 100644 index 0000000..4b32c0a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-cross-fade.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","33":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"F O H D G E A B C K f L N","33":"0 1 2 3 4 5 6 8 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K PB fB","2":"F O WB RB","33":"H D G E YB ZB aB bB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","33":"G oB pB qB rB SB tB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","33":"QB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"33":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"2":"IC"}},B:7,C:"CSS Cross-Fade Function"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-default-pseudo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-default-pseudo.js new file mode 100644 index 0000000..fd8834a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-default-pseudo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f","132":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u"},E:{"1":"7 9 B C K PB fB","16":"F O WB RB","132":"H D G E A YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 i j k l m n o p M r s t u v w x y z","16":"7 E B gB hB iB jB GB","132":"L N I J P Q R S T U V W X Y Z a b c d e AB g h","260":"9 C lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB pB","132":"G qB rB SB tB uB"},H:{"260":"3B"},I:{"1":"QB","16":"OB 4B 5B 6B","132":"F 7B CB 8B 9B"},J:{"16":"D","132":"A"},K:{"1":"M","16":"7 A B C GB","260":"9"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"1":"BC CC DC EC FC PB","132":"F"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:7,C:":default CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js new file mode 100644 index 0000000..fbdfc60 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","16":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","16":"sB UB VB"},E:{"1":"B","2":"7 9 F O H D G E A C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Explicit descendant combinator >>"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-deviceadaptation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-deviceadaptation.js new file mode 100644 index 0000000..d5a0760 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-deviceadaptation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","164":"A B"},B:{"66":"q","164":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y","66":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j gB hB iB jB GB lB","66":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"292":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"A M","292":"7 9 B C GB"},L:{"2":"q"},M:{"2":"8"},N:{"164":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"66":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Device Adaptation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-dir-pseudo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-dir-pseudo.js new file mode 100644 index 0000000..d9c40f7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-dir-pseudo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N eB dB","33":"I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"33":"IC"}},B:5,C:":dir() CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-display-contents.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-display-contents.js new file mode 100644 index 0000000..888f162 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-display-contents.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","260":"q"},C:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g eB dB","260":"0 1 2 3 h i j k l m n o p M r s t u v w x y z EB NB"},D:{"2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"2 3 4 5 6 EB NB","260":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E A B WB RB YB ZB aB bB PB","772":"7 9 C K fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v gB hB iB jB GB lB","260":"0 1 2 3 4 5 6 w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB","260":"xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","260":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"260":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC","260":"FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"260":"IC"}},B:5,C:"CSS display: contents"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-element-function.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-element-function.js new file mode 100644 index 0000000..bcc1d02 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-element-function.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"33":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","164":"kB OB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"33":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"33":"IC"}},B:5,C:"CSS element() function"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-env-function.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-env-function.js new file mode 100644 index 0000000..38ff163 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-env-function.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"8 DB BB FB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"1":"7 9 C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB","132":"B"},F:{"1":"0 1 2 3 4 5 6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB","132":"wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"PB","2":"F BC CC DC EC FC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"CSS Environment Variables env()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-exclusions.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-exclusions.js new file mode 100644 index 0000000..beab7e5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-exclusions.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","33":"A B"},B:{"2":"q","33":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"33":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Exclusions Level 1"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-featurequeries.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-featurequeries.js new file mode 100644 index 0000000..4f88c21 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-featurequeries.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS Feature Queries"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-filter-function.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-filter-function.js new file mode 100644 index 0000000..396f613 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-filter-function.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB","33":"E"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB","33":"SB tB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS filter() function"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-filters.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-filters.js new file mode 100644 index 0000000..efbdfc1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-filters.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","1028":"K f L N I J","1346":"C"},C:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB","196":"e","516":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d dB"},D:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I","33":"J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w"},E:{"1":"7 9 A B C K bB PB fB","2":"F O WB RB YB","33":"H D G E ZB aB"},F:{"1":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","33":"G pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB","33":"8B 9B"},J:{"2":"D","33":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","33":"F BC CC"},Q:{"33":"GC"},R:{"33":"HC"},S:{"1":"IC"}},B:5,C:"CSS Filter Effects"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-first-letter.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-first-letter.js new file mode 100644 index 0000000..4d78656 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-first-letter.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","16":"nB","516":"G","1540":"H D"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","132":"OB","260":"kB"},D:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"O H D G","132":"F"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"O WB","132":"F RB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","16":"E gB","260":"7 B hB iB jB GB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"1":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","16":"4B 5B","132":"6B"},J:{"1":"D A"},K:{"1":"9 C M","260":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-first-line.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-first-line.js new file mode 100644 index 0000000..3f2e5cc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-first-line.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","132":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS first-line pseudo-element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-fixed.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-fixed.js new file mode 100644 index 0000000..cfd80ff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-fixed.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"D G E A B","2":"nB","8":"H"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB PB fB","1025":"bB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","132":"oB pB qB"},H:{"2":"3B"},I:{"1":"OB QB 8B 9B","260":"4B 5B 6B","513":"F 7B CB"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS position:fixed"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-ring.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-ring.js new file mode 100644 index 0000000..85d13b0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-ring.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"K C G E A B CB"},B:{"2":"D v Z I M H"},C:{"2":"VB y TB SB","161":"0 1 2 3 5 6 7 F J K C G E A B D v Z I M H N O P Q R S T U V W X Y x a b c d e f L h i j k l m n o p q r s t u z w"},D:{"2":"0 1 2 3 5 6 7 F J K C G E A B D v Z I M H N O P Q R S T U V W X Y x a b c d e f L h i j k l m n o p q r s t u z w HB g DB XB EB FB"},E:{"2":"F J K C G E A B GB AB IB JB KB LB MB NB"},F:{"2":"8 9 E B D I M H N O P Q R S T U V W X Y x a b c d e f L h i j k l m n o p q r s t u OB PB QB RB UB BB"},G:{"2":"4 G AB WB YB ZB aB bB cB dB eB fB gB"},H:{"2":"hB"},I:{"2":"4 y F g iB jB kB lB mB nB"},J:{"2":"C A"},K:{"2":"8 9 A B D L BB"},L:{"2":"g"},M:{"161":"w"},N:{"2":"A B"},O:{"2":"oB"},P:{"2":"F J pB"},Q:{"2":"qB"},R:{"2":"rB"}},B:7,C:":focus-ring CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-visible.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-visible.js new file mode 100644 index 0000000..d39bc66 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-visible.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","328":"q"},C:{"2":"kB OB eB dB","161":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB","328":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"328":"q"},M:{"161":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"161":"IC"}},B:7,C:":focus-visible CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-within.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-within.js new file mode 100644 index 0000000..9e59d0f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-focus-within.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB"},D:{"1":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"EB"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p gB hB iB jB GB lB","194":"M"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:":focus-within CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js new file mode 100644 index 0000000..43f35d9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p eB dB","322":"0 1 M r s t u v w x y z"},D:{"1":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s","194":"0 1 2 t u v w x y z EB"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB","194":"g h i j k l m n o p M"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","194":"M"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"EC FC PB","2":"F","194":"BC CC DC"},Q:{"194":"GC"},R:{"2":"HC"},S:{"322":"IC"}},B:5,C:"CSS font-rendering controls"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-font-stretch.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-font-stretch.js new file mode 100644 index 0000000..508b407 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-font-stretch.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G eB dB"},D:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS font-stretch"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-gencontent.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-gencontent.js new file mode 100644 index 0000000..77b48eb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-gencontent.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D nB","132":"G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS Generated content for pseudo-elements"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-gradients.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-gradients.js new file mode 100644 index 0000000..b2522e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-gradients.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB","260":"N I J P Q R S T U V W X Y Z a b c d e AB","292":"F O H D G E A B C K f L dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"A B C K f L N I J P Q R S T U V","548":"F O H D G E"},E:{"2":"WB RB","260":"7 9 D G E A B C K ZB aB bB PB fB","292":"H YB","804":"F O"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E B gB hB iB jB","33":"C lB","164":"7 GB"},G:{"260":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","292":"oB pB","804":"RB mB CB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","33":"F 7B CB","548":"OB 4B 5B 6B"},J:{"1":"A","548":"D"},K:{"1":"9 M","2":"A B","33":"C","164":"7 GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS Gradients"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-grid.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-grid.js new file mode 100644 index 0000000..c265b5b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-grid.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","8":"E","292":"A B"},B:{"1":"N I J q","292":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J eB dB","8":"P Q R S T U V W X Y Z a b c d e AB g h i j","584":"k l m n o p M r s t u v","1025":"w x"},D:{"1":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U","8":"V W X Y","200":"0 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","1025":"1"},E:{"1":"7 9 B C K PB fB","2":"F O WB RB YB","8":"H D G E A ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB","200":"Y Z a b c d e AB g h i j k l m n"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","8":"G pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B","8":"CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"292":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"BC","8":"F"},Q:{"200":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:4,C:"CSS Grid Layout (level 1)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js new file mode 100644 index 0000000..6ce7273 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS hanging-punctuation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-has.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-has.js new file mode 100644 index 0000000..0725666 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-has.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:":has() CSS relational pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-hyphenate.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-hyphenate.js new file mode 100644 index 0000000..ea00e60 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-hyphenate.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"H D G E A B nB"},B:{"1":"q","16":"C K f L N I J"},C:{"16":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},E:{"16":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"16":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"16":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"16":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"16":"q"},M:{"16":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"16":"IC"}},B:5,C:"CSS4 Hyphenation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-hyphens.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-hyphens.js new file mode 100644 index 0000000..234607f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-hyphens.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","33":"A B"},B:{"33":"C K f L N I J","132":"q"},C:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB","33":"H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y","132":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O WB RB","33":"7 9 H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l gB hB iB jB GB lB","132":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z"},G:{"2":"RB mB","33":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","132":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"132":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"4":"AC"},P:{"1":"CC DC EC FC PB","2":"F","132":"BC"},Q:{"2":"GC"},R:{"132":"HC"},S:{"1":"IC"}},B:5,C:"CSS Hyphenation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-image-orientation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-image-orientation.js new file mode 100644 index 0000000..bdce237 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-image-orientation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"132":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 image-orientation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-image-set.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-image-set.js new file mode 100644 index 0000000..4949747 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-image-set.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","33":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q","33":"0 1 2 3 4 5 6 8 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O WB RB YB","33":"H D G E ZB aB bB","129":"7 9 A B C K PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"RB mB CB oB","33":"G pB qB rB SB tB","129":"uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","33":"QB 8B 9B"},J:{"2":"D","33":"A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"33":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"2":"IC"}},B:5,C:"CSS image-set"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-in-out-of-range.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-in-out-of-range.js new file mode 100644 index 0000000..65cc0ba --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-in-out-of-range.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C","260":"K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB","516":"Z a b c d e AB g h i j k l m n o p M r s t"},D:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F","16":"O H D G E A B C K f","260":"w","772":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v"},E:{"1":"7 9 B C K PB fB","2":"F WB RB","16":"O","772":"H D G E A YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z","16":"E gB","260":"7 9 B C j hB iB jB GB lB","772":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","772":"G oB pB qB rB SB tB uB"},H:{"132":"3B"},I:{"1":"QB","2":"OB 4B 5B 6B","260":"F 7B CB 8B 9B"},J:{"2":"D","260":"A"},K:{"1":"M","260":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","260":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"516":"IC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js new file mode 100644 index 0000000..1969d70 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","132":"A B","388":"E"},B:{"1":"q","132":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB OB eB dB","132":"H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","388":"F O"},D:{"1":"0 1 2 3 4 5 6 8 j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f","132":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i"},E:{"1":"7 9 B C K PB fB","16":"F O H WB RB","132":"D G E A ZB aB bB","388":"YB"},F:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"7 E B gB hB iB jB GB","132":"L N I J P Q R S T U V","516":"9 C lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB pB","132":"G qB rB SB tB uB"},H:{"516":"3B"},I:{"1":"QB","16":"OB 4B 5B 6B 9B","132":"8B","388":"F 7B CB"},J:{"16":"D","132":"A"},K:{"1":"M","16":"7 A B C GB","516":"9"},L:{"1":"q"},M:{"132":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"132":"IC"}},B:7,C:":indeterminate CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-initial-letter.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-initial-letter.js new file mode 100644 index 0000000..c9f65bc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-initial-letter.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G WB RB YB ZB aB","4":"E","164":"7 9 A B C K bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB","164":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Initial Letter"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-initial-value.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-initial-value.js new file mode 100644 index 0000000..13b73b5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-initial-value.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","33":"F O H D G E A B C K f L N I J eB dB","164":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","16":"WB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS initial value"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-letter-spacing.js new file mode 100644 index 0000000..36c4d12 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-letter-spacing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","16":"nB","132":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","16":"WB","132":"F O H RB YB"},F:{"1":"0 1 2 3 4 5 6 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"E gB","132":"7 9 B C L N hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","16":"4B 5B","132":"OB F 6B 7B CB"},J:{"132":"D A"},K:{"1":"M","132":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"letter-spacing CSS property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-line-clamp.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-line-clamp.js new file mode 100644 index 0000000..d0c5e92 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-line-clamp.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N","33":"q","129":"I J"},C:{"2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB eB dB","33":"8 HB IB JB KB LB MB"},D:{"16":"F O H D G E A B C K","33":"0 1 2 3 4 5 6 8 f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F WB RB","33":"7 9 O H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"RB mB CB","33":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"4B 5B","33":"OB F QB 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"33":"8"},N:{"2":"A B"},O:{"33":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"2":"IC"}},B:7,C:"CSS line-clamp"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-logical-props.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-logical-props.js new file mode 100644 index 0000000..2a76fc1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-logical-props.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB","164":"OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k eB dB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","292":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"1":"9 K fB","292":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","292":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"zB 0B 1B 2B","292":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"1":"QB","292":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"292":"D A"},K:{"2":"7 9 A B C GB","292":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"292":"AC"},P:{"1":"PB","292":"F BC CC DC EC FC"},Q:{"292":"GC"},R:{"292":"HC"},S:{"1":"IC"}},B:5,C:"CSS Logical Properties"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-marker-pseudo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-marker-pseudo.js new file mode 100644 index 0000000..988414d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-marker-pseudo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"8 HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E A B WB RB YB ZB aB bB PB","129":"7 9 C K fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS ::marker pseudo-element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-masks.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-masks.js new file mode 100644 index 0000000..89374fc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-masks.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N","164":"q","3138":"I","12292":"J"},C:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","260":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB"},D:{"164":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"WB RB","164":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","164":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"164":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"164":"QB 8B 9B","676":"OB F 4B 5B 6B 7B CB"},J:{"164":"D A"},K:{"2":"7 9 A B C GB","164":"M"},L:{"164":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"164":"AC"},P:{"164":"F BC CC DC EC FC PB"},Q:{"164":"GC"},R:{"164":"HC"},S:{"260":"IC"}},B:4,C:"CSS Masks"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-matches-pseudo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-matches-pseudo.js new file mode 100644 index 0000000..6675ea9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-matches-pseudo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","1348":"q"},C:{"16":"kB OB eB dB","548":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"16":"F O H D G E A B C K f","164":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB","1348":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F WB RB","16":"O","164":"H D G YB ZB aB","257":"7 9 E A B C K bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","164":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","1220":"0 1 2 3 4 5 6 w x y z"},G:{"16":"RB mB CB oB pB","164":"G qB rB","257":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"OB 4B 5B 6B","164":"F QB 7B CB 8B 9B"},J:{"16":"D","164":"A"},K:{"2":"7 9 A B C GB","164":"M"},L:{"1220":"q"},M:{"548":"8"},N:{"2":"A B"},O:{"164":"AC"},P:{"164":"F BC CC DC EC FC PB"},Q:{"164":"GC"},R:{"164":"HC"},S:{"548":"IC"}},B:5,C:":matches() CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-math-functions.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-math-functions.js new file mode 100644 index 0000000..2d8d38c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-math-functions.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB"},E:{"1":"fB","2":"F O H D G E A B WB RB YB ZB aB bB PB","132":"7 9 C K"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB","132":"xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-interaction.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-interaction.js new file mode 100644 index 0000000..5c59c80 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-interaction.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"6 8 DB BB FB HB IB JB KB LB MB","2":"0 1 2 3 4 5 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"Media Queries: interaction media features"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-resolution.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-resolution.js new file mode 100644 index 0000000..979d877 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-resolution.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","132":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","260":"F O H D G E A B C K f L eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","548":"F O H D G E A B C K f L N I J P Q R S T U V W X Y"},E:{"2":"WB RB","548":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E","548":"7 B C gB hB iB jB GB lB"},G:{"16":"RB","548":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"132":"3B"},I:{"1":"QB 8B 9B","16":"4B 5B","548":"OB F 6B 7B CB"},J:{"548":"D A"},K:{"1":"9 M","548":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"Media Queries: resolution feature"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-scripting.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-scripting.js new file mode 100644 index 0000000..809e3c7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-media-scripting.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"16":"C K f L N I J q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB","16":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","16":"sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Media Queries: scripting media feature"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-mediaqueries.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-mediaqueries.js new file mode 100644 index 0000000..af75317 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-mediaqueries.js @@ -0,0 +1 @@ +module.exports={A:{A:{"8":"H D G nB","129":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","129":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","129":"F O H YB","388":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","129":"RB mB CB oB pB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","129":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"129":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS3 Media Queries"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-mixblendmode.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-mixblendmode.js new file mode 100644 index 0000000..c9b61ed --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-mixblendmode.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b eB dB"},D:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y","194":"Z a b c d e AB g h i j k"},E:{"2":"F O H D WB RB YB ZB","260":"7 9 G E A B C K aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y gB hB iB jB GB lB"},G:{"2":"RB mB CB oB pB qB","260":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Blending of HTML/SVG elements"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-motion-paths.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-motion-paths.js new file mode 100644 index 0000000..e4bb807 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-motion-paths.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"KB LB MB","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m","194":"n o p"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB","194":"a b c"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"CSS Motion Path"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-namespaces.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-namespaces.js new file mode 100644 index 0000000..495b18e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-namespaces.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","16":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS namespaces"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-not-sel-list.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-not-sel-list.js new file mode 100644 index 0000000..90ee835 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-not-sel-list.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","16":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB eB dB","16":"LB MB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","16":"sB UB VB"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"selector list argument of :not()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-nth-child-of.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-nth-child-of.js new file mode 100644 index 0000000..77b231c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-nth-child-of.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-opacity.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-opacity.js new file mode 100644 index 0000000..120f931 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-opacity.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","4":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS3 Opacity"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-optional-pseudo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-optional-pseudo.js new file mode 100644 index 0000000..02d6178 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-optional-pseudo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"E gB","132":"7 9 B C hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"132":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"M","132":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:":optional CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-overflow-anchor.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-overflow-anchor.js new file mode 100644 index 0000000..adca33e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-overflow-anchor.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"8 BB FB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-overflow.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-overflow.js new file mode 100644 index 0000000..6541273 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-overflow.js @@ -0,0 +1 @@ +module.exports={A:{A:{"388":"H D G E A B nB"},B:{"260":"q","388":"C K f L N I J"},C:{"260":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB","388":"0 1 2 3 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB eB dB"},D:{"260":"8 HB IB JB KB LB MB cB QB XB TB q sB UB VB","388":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"388":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"260":"0 1 2 3 4 5 6 z","388":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y gB hB iB jB GB lB"},G:{"388":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"388":"3B"},I:{"388":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"388":"D A"},K:{"388":"7 9 A B C M GB"},L:{"260":"q"},M:{"260":"8"},N:{"388":"A B"},O:{"388":"AC"},P:{"388":"F BC CC DC EC FC PB"},Q:{"388":"GC"},R:{"388":"HC"},S:{"388":"IC"}},B:5,C:"CSS overflow property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js new file mode 100644 index 0000000..4042fe0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"1":"q","132":"C K f L N I","516":"J"},C:{"1":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"0 1 2 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB"},D:{"1":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB","260":"5 6"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB","260":"u v"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"132":"A B"},O:{"2":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"CSS overscroll-behavior"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-page-break.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-page-break.js new file mode 100644 index 0000000..2703c73 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-page-break.js @@ -0,0 +1 @@ +module.exports={A:{A:{"388":"A B","900":"H D G E nB"},B:{"388":"C K f L N I J","900":"q"},C:{"772":"8 DB BB FB HB IB JB KB LB MB","900":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"900":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"772":"A","900":"7 9 F O H D G E B C K WB RB YB ZB aB bB PB fB"},F:{"16":"E gB","129":"7 9 B C hB iB jB GB lB","900":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"900":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"129":"3B"},I:{"900":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"900":"D A"},K:{"129":"7 9 A B C GB","900":"M"},L:{"900":"q"},M:{"900":"8"},N:{"388":"A B"},O:{"900":"AC"},P:{"900":"F BC CC DC EC FC PB"},Q:{"900":"GC"},R:{"900":"HC"},S:{"900":"IC"}},B:2,C:"CSS page-break properties"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-paged-media.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-paged-media.js new file mode 100644 index 0000000..22bc1a9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-paged-media.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","132":"G E A B"},B:{"1":"q","132":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J eB dB","132":"0 1 2 3 4 5 6 8 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","132":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"16":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C GB","258":"M"},L:{"1":"q"},M:{"132":"8"},N:{"258":"A B"},O:{"258":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"132":"IC"}},B:5,C:"CSS Paged Media (@page)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-paint-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-paint-api.js new file mode 100644 index 0000000..b0309e3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-paint-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"2":"7 F O H D G E A B C WB RB YB ZB aB bB PB","194":"9 K fB"},F:{"1":"0 1 2 3 4 5 6 w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Paint API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-placeholder-shown.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-placeholder-shown.js new file mode 100644 index 0000000..581fc5c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-placeholder-shown.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","292":"A B"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","164":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u"},D:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"164":"IC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-placeholder.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-placeholder.js new file mode 100644 index 0000000..a0b3232 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-placeholder.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","36":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J eB dB","33":"P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u"},D:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","36":"0 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"1":"7 9 B C K PB fB","2":"F WB RB","36":"O H D G E A YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","36":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"RB mB","36":"G CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","36":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"36":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"36":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","36":"F BC CC"},Q:{"36":"GC"},R:{"1":"HC"},S:{"33":"IC"}},B:5,C:"::placeholder CSS pseudo-element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-read-only-write.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-read-only-write.js new file mode 100644 index 0000000..f92edac --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-read-only-write.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"16":"kB","33":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f","132":"L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"1":"7 9 E A B C K bB PB fB","16":"WB RB","132":"F O H D G YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"7 E B gB hB iB jB","132":"9 C L N I J P Q R S GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB","132":"G CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","16":"4B 5B","132":"OB F 6B 7B CB 8B 9B"},J:{"1":"A","132":"D"},K:{"1":"M","2":"7 A B","132":"9 C GB"},L:{"1":"q"},M:{"33":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"33":"IC"}},B:1,C:"CSS :read-only and :read-write selectors"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-rebeccapurple.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-rebeccapurple.js new file mode 100644 index 0000000..3f21047 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-rebeccapurple.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","132":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB","16":"ZB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Rebeccapurple color"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-reflections.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-reflections.js new file mode 100644 index 0000000..e9f2e45 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-reflections.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","33":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"33":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"WB RB","33":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"33":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"33":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"2":"IC"}},B:7,C:"CSS Reflections"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-regions.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-regions.js new file mode 100644 index 0000000..3daea64 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-regions.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","420":"A B"},B:{"2":"q","420":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","36":"L N I J","66":"P Q R S T U V W X Y Z a b c d e"},E:{"2":"7 9 F O H C K WB RB YB fB","33":"D G E A B ZB aB bB PB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"RB mB CB oB pB xB yB zB 0B 1B 2B","33":"G qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"420":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Regions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-repeating-gradients.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-repeating-gradients.js new file mode 100644 index 0000000..3d13dff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-repeating-gradients.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB","33":"F O H D G E A B C K f L dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E","33":"A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB","33":"H YB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E B gB hB iB jB","33":"C lB","36":"7 GB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","33":"oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB 4B 5B 6B","33":"F 7B CB"},J:{"1":"A","2":"D"},K:{"1":"9 M","2":"A B","33":"C","36":"7 GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS Repeating Gradients"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-resize.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-resize.js new file mode 100644 index 0000000..eb054f3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-resize.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","33":"F"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB","132":"9"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:4,C:"CSS resize property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-revert-value.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-revert-value.js new file mode 100644 index 0000000..0a5308d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-revert-value.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"8 FB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS revert value"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-rrggbbaa.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-rrggbbaa.js new file mode 100644 index 0000000..6ee9eb4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-rrggbbaa.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s eB dB"},D:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","194":"0 1 2 3 w x y z EB NB"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i gB hB iB jB GB lB","194":"j k l m n o p M r s t u v"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"EC FC PB","2":"F","194":"BC CC DC"},Q:{"194":"GC"},R:{"194":"HC"},S:{"2":"IC"}},B:7,C:"#rrggbbaa hex color notation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-scroll-behavior.js new file mode 100644 index 0000000..6a644ff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-scroll-behavior.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","129":"q"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k","129":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","450":"0 1 2 3 l m n o p M r s t u v w x y z EB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB","129":"0 1 2 3 4 5 6 s t u v w x y z","450":"Y Z a b c d e AB g h i j k l m n o p M r"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"129":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"450":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSSOM Scroll-behavior"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-scrollbar.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-scrollbar.js new file mode 100644 index 0000000..8a86899 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-scrollbar.js @@ -0,0 +1 @@ +module.exports={A:{A:{"132":"H D G E A B nB"},B:{"2":"C K f L N I J","292":"q"},C:{"2":"0 1 2 3 4 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB","3074":"5","4100":"6 8 DB BB FB HB IB JB KB LB MB"},D:{"292":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"16":"F O WB RB","292":"7 9 H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","292":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"16":"RB mB CB oB pB","292":"qB","804":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"4B 5B","292":"OB F QB 6B 7B CB 8B 9B"},J:{"292":"D A"},K:{"2":"7 9 A B C GB","292":"M"},L:{"292":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"292":"AC"},P:{"292":"F BC CC DC EC FC PB"},Q:{"292":"GC"},R:{"292":"HC"},S:{"2":"IC"}},B:7,C:"CSS scrollbar styling"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-sel2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-sel2.js new file mode 100644 index 0000000..293894e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-sel2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"D G E A B","2":"nB","8":"H"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS 2.1 selectors"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-sel3.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-sel3.js new file mode 100644 index 0000000..7af928a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-sel3.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H","132":"D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","2":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS3 selectors"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-selection.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-selection.js new file mode 100644 index 0000000..5aa92d2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-selection.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB","33":"0 1 2 3 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"9 C M GB","16":"7 A B"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"33":"IC"}},B:5,C:"::selection CSS pseudo-element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-shapes.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-shapes.js new file mode 100644 index 0000000..a07cc42 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-shapes.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u eB dB","322":"0 1 2 3 v w x y z EB NB"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d","194":"e AB g"},E:{"1":"7 9 B C K PB fB","2":"F O H D WB RB YB ZB","33":"G E A aB bB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB","33":"G rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:4,C:"CSS Shapes Level 1"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-snappoints.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-snappoints.js new file mode 100644 index 0000000..1695edd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-snappoints.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","6308":"A","6436":"B"},B:{"1":"q","6436":"C K f L N I J"},C:{"1":"8 HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i eB dB","2052":"0 1 2 3 4 5 6 j k l m n o p M r s t u v w x y z EB NB DB BB FB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB","8258":"8 BB FB"},E:{"1":"7 9 B C K fB","2":"F O H D G WB RB YB ZB aB","3108":"E A bB PB"},F:{"1":"6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB","8258":"0 1 2 3 4 5 y z"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB","3108":"SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2052":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"PB","2":"F BC CC DC EC FC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2052":"IC"}},B:4,C:"CSS Scroll Snap"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-sticky.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-sticky.js new file mode 100644 index 0000000..616e768 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-sticky.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L","1028":"q","4100":"N I J"},C:{"1":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V eB dB","194":"W X Y Z a b","516":"0 1 2 c d e AB g h i j k l m n o p M r s t u v w x y z"},D:{"2":"F O H D G E A B C K f L N I J P Q R S h i j k l m n o p M r s t u v","322":"T U V W X Y Z a b c d e AB g w x y z","1028":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H WB RB YB","33":"7 9 G E A B C K aB bB PB fB","2084":"D ZB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i gB hB iB jB GB lB","322":"j k l","1028":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z"},G:{"2":"RB mB CB oB","33":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2084":"pB qB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","1028":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","1028":"M"},L:{"1028":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1028":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"322":"GC"},R:{"2":"HC"},S:{"516":"IC"}},B:5,C:"CSS position:sticky"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-subgrid.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-subgrid.js new file mode 100644 index 0000000..8a0bb6a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-subgrid.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"JB KB LB MB","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Subgrid"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-supports-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-supports-api.js new file mode 100644 index 0000000..bb911f5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-supports-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","260":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P eB dB","66":"Q R","260":"S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X","260":"0 1 2 3 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB","132":"9"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"132":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 A B C GB","132":"9"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS.supports() API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-table.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-table.js new file mode 100644 index 0000000..fb5c732 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-table.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","2":"H D nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","132":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS Table display"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-align-last.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-align-last.js new file mode 100644 index 0000000..e7b19fd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-align-last.js @@ -0,0 +1 @@ +module.exports={A:{A:{"132":"H D G E A B nB"},B:{"1":"q","4":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B eB dB","33":"C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},D:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e","322":"AB g h i j k l m n o p M"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R gB hB iB jB GB lB","578":"S T U V W X Y Z a b c d"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"33":"IC"}},B:5,C:"CSS3 text-align-last"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-indent.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-indent.js new file mode 100644 index 0000000..20d5976 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-indent.js @@ -0,0 +1 @@ +module.exports={A:{A:{"132":"H D G E A B nB"},B:{"132":"C K f L N I J","388":"q"},C:{"132":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h","388":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"132":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"132":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB","388":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"132":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"132":"3B"},I:{"132":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"132":"D A"},K:{"132":"7 9 A B C GB","388":"M"},L:{"388":"q"},M:{"132":"8"},N:{"132":"A B"},O:{"132":"AC"},P:{"132":"F","388":"BC CC DC EC FC PB"},Q:{"388":"GC"},R:{"388":"HC"},S:{"132":"IC"}},B:5,C:"CSS text-indent"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-justify.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-justify.js new file mode 100644 index 0000000..e76dfcf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-justify.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"H D nB","132":"G E A B"},B:{"132":"C K f L N I J","322":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x eB dB","1025":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB","1602":"y"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m","322":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB","322":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","322":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","322":"M"},L:{"322":"q"},M:{"1025":"8"},N:{"132":"A B"},O:{"2":"AC"},P:{"2":"F","322":"BC CC DC EC FC PB"},Q:{"322":"GC"},R:{"322":"HC"},S:{"2":"IC"}},B:5,C:"CSS text-justify"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-orientation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-orientation.js new file mode 100644 index 0000000..3ec2225 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-orientation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h eB dB","194":"i j k"},D:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r"},E:{"2":"F O H D G E WB RB YB ZB aB bB","16":"A","33":"7 9 B C K PB fB"},F:{"1":"0 1 2 3 4 5 6 AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS text-orientation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-spacing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-spacing.js new file mode 100644 index 0000000..376bfff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-text-spacing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","161":"G E A B"},B:{"2":"q","161":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"16":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"CSS Text 4 text-spacing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-textshadow.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-textshadow.js new file mode 100644 index 0000000..ecd6284 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-textshadow.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","129":"A B"},B:{"1":"q","129":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","260":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"4":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","4":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"129":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 Text-shadow"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-touch-action-2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-touch-action-2.js new file mode 100644 index 0000000..bd7b9b4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-touch-action-2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"B","164":"A"},B:{"1":"q","132":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y","260":"z"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l gB hB iB jB GB lB","260":"m"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"132":"B","164":"A"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"CSS touch-action level 2 values"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-touch-action.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-touch-action.js new file mode 100644 index 0000000..70c1bfc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-touch-action.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E nB","289":"A"},B:{"1":"C K f L N I J q"},C:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB","194":"Z a b c d e AB g h i j k l m n o p M r s t u v","1025":"0 w x y z"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S gB hB iB jB GB lB"},G:{"1":"0B 1B 2B","2":"G RB mB CB oB pB qB rB SB","516":"tB uB vB wB xB yB zB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","289":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"194":"IC"}},B:2,C:"CSS touch-action property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-transitions.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-transitions.js new file mode 100644 index 0000000..c401771 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-transitions.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","33":"O H D G E A B C K f L","164":"F"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","33":"H YB","164":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB","33":"C","164":"7 B iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","33":"pB","164":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","33":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","33":"D"},K:{"1":"9 M","33":"C","164":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS3 Transitions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-unicode-bidi.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-unicode-bidi.js new file mode 100644 index 0000000..83ef2bd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-unicode-bidi.js @@ -0,0 +1 @@ +module.exports={A:{A:{"132":"H D G E A B nB"},B:{"1":"q","132":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","33":"I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","132":"kB OB F O H D G E eB dB","292":"A B C K f L N"},D:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N","548":"I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r"},E:{"132":"F O H D G WB RB YB ZB aB","548":"7 9 E A B C K bB PB fB"},F:{"132":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"132":"G RB mB CB oB pB qB rB","548":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"1":"QB","16":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"16":"GC"},R:{"16":"HC"},S:{"33":"IC"}},B:4,C:"CSS unicode-bidi property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-unset-value.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-unset-value.js new file mode 100644 index 0000000..0586dff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-unset-value.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W eB dB"},D:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS unset value"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-variables.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-variables.js new file mode 100644 index 0000000..83ee6d5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-variables.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f","260":"L"},C:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r","194":"s"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e gB hB iB jB GB lB","194":"AB"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:4,C:"CSS Variables (Custom Properties)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-widows-orphans.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-widows-orphans.js new file mode 100644 index 0000000..2c4e106 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-widows-orphans.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D nB","129":"G E"},B:{"1":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","129":"7 E B gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:2,C:"CSS widows & orphans"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-writing-mode.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-writing-mode.js new file mode 100644 index 0000000..31bfa35 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-writing-mode.js @@ -0,0 +1 @@ +module.exports={A:{A:{"132":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB","322":"g h i j k"},D:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H","16":"D","33":"G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r"},E:{"1":"7 9 B C K fB","2":"F WB RB","16":"O","33":"H D G E A YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R S T U V W X Y Z a b c d e"},G:{"1":"wB xB yB zB 0B 1B 2B","16":"RB mB CB","33":"G oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"4B 5B 6B","33":"OB F 7B CB 8B 9B"},J:{"33":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"36":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","33":"F"},Q:{"33":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS writing-mode property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css-zoom.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css-zoom.js new file mode 100644 index 0000000..c086a2b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css-zoom.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D nB","129":"G E A B"},B:{"1":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"129":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:7,C:"CSS zoom"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-attr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-attr.js new file mode 100644 index 0000000..d8e395e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-attr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"CSS3 attr() function for all properties"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-boxsizing.js new file mode 100644 index 0000000..d289174 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-boxsizing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","8":"H D nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","33":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","33":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","33":"RB mB CB"},H:{"1":"3B"},I:{"1":"F QB 7B CB 8B 9B","33":"OB 4B 5B 6B"},J:{"1":"A","33":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS3 Box-sizing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-colors.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-colors.js new file mode 100644 index 0000000..2ae5b85 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-colors.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","4":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","2":"E","4":"gB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS3 Colors"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors-grab.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors-grab.js new file mode 100644 index 0000000..efd6ad6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors-grab.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","33":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W eB dB"},D:{"1":"8 HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"1":"7 9 B C K fB","33":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 9 C z lB","2":"7 E B gB hB iB jB GB","33":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:3,C:"CSS grab & grabbing cursors"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors-newer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors-newer.js new file mode 100644 index 0000000..2dc1355 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors-newer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","33":"kB OB F O H D G E A B C K f L N I J P Q R S T eB dB"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g"},E:{"1":"7 9 E A B C K bB PB fB","33":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 9 C U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 E B gB hB iB jB GB","33":"L N I J P Q R S T"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors.js new file mode 100644 index 0000000..196b3ad --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-cursors.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","132":"H D G nB"},B:{"1":"f L N I J q","260":"C K"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","4":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","4":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","260":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","16":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"CSS3 Cursors (original values)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/css3-tabsize.js b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-tabsize.js new file mode 100644 index 0000000..72f2b4f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/css3-tabsize.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB eB dB","33":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB","164":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w"},D:{"1":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q","132":"R S T U V W X Y Z a b c d e AB g h i j k l"},E:{"1":"fB","2":"F O H WB RB YB","132":"7 9 D G E A B C K ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB iB","132":"L N I J P Q R S T U V W X Y","164":"7 9 B C jB GB lB"},G:{"2":"RB mB CB oB pB","132":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"164":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB","132":"8B 9B"},J:{"132":"D A"},K:{"1":"M","2":"A","164":"7 9 B C GB"},L:{"1":"q"},M:{"33":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"164":"IC"}},B:5,C:"CSS3 tab-size"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/currentcolor.js b/themes/piratecare/node_modules/caniuse-lite/data/features/currentcolor.js new file mode 100644 index 0000000..14654c3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/currentcolor.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS currentColor value"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/custom-elements.js b/themes/piratecare/node_modules/caniuse-lite/data/features/custom-elements.js new file mode 100644 index 0000000..182efca --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/custom-elements.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","8":"A B"},B:{"2":"q","8":"C K f L N I J"},C:{"2":"3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S EB NB DB BB FB HB IB JB KB LB MB eB dB","66":"T U V W X Y Z","72":"0 1 2 a b c d e AB g h i j k l m n o p M r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","2":"F O H D G E A B C K f L N I J P Q R S T U V W sB UB VB","66":"X Y Z a b c"},E:{"2":"F O WB RB YB","8":"7 9 H D G E A B C K ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","66":"L N I J P"},G:{"2":"RB mB CB oB pB","8":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"9B","2":"OB F QB 4B 5B 6B 7B CB 8B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"72":"IC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/custom-elementsv1.js b/themes/piratecare/node_modules/caniuse-lite/data/features/custom-elementsv1.js new file mode 100644 index 0000000..c89dd32 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/custom-elementsv1.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","8":"A B"},B:{"1":"q","8":"C K f L N I J"},C:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z eB dB","8":"a b c d e AB g h i j k l m n o p M r s t","456":"0 1 2 u v w x y z","712":"3 4 EB NB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","8":"w x","132":"0 1 2 3 4 5 6 y z EB NB DB BB"},E:{"2":"F O H D WB RB YB ZB aB","8":"G E A bB","132":"7 9 B C K PB fB"},F:{"1":"6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k gB hB iB jB GB lB","132":"0 1 2 3 4 5 l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB","132":"vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","132":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F","132":"BC"},Q:{"8":"GC"},R:{"132":"HC"},S:{"8":"IC"}},B:1,C:"Custom Elements (V1)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/customevent.js b/themes/piratecare/node_modules/caniuse-lite/data/features/customevent.js new file mode 100644 index 0000000..0816937 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/customevent.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","132":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB","132":"H D G E A"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F","16":"O H D G K f","388":"E A B C"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F WB RB","16":"O H","388":"YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"E gB hB iB jB","132":"7 B GB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"mB","16":"RB CB","388":"oB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"4B 5B 6B","388":"OB F 7B CB"},J:{"1":"A","388":"D"},K:{"1":"9 C M","2":"A","132":"7 B GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"CustomEvent"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/datalist.js b/themes/piratecare/node_modules/caniuse-lite/data/features/datalist.js new file mode 100644 index 0000000..89a423a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/datalist.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G E","260":"A B"},B:{"1":"q","260":"C K f L","1284":"N I J"},C:{"8":"kB OB eB dB","516":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F O H D G E A B C K f L N I J P","132":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"1":"9 K fB","8":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"1":"6 7 9 E B C gB hB iB jB GB lB","132":"0 1 2 3 4 5 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"8":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB","2049":"zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"9B","8":"OB F 4B 5B 6B 7B CB 8B","132":"QB"},J:{"1":"A","8":"D"},K:{"1":"7 9 A B C GB","8":"M"},L:{"1":"q"},M:{"516":"8"},N:{"8":"A B"},O:{"8":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:1,C:"Datalist element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dataset.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dataset.js new file mode 100644 index 0000000..66dd1b8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dataset.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","4":"H D G E A nB"},B:{"1":"C K f L N","129":"I J q"},C:{"1":"H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","4":"kB OB F O eB dB","129":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"p M r s t u v w x y","4":"F O H","129":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"4":"F O WB RB","129":"7 9 H D G E A B C K YB ZB aB bB PB fB"},F:{"1":"7 9 C c d e AB g h i j k l GB lB","4":"E B gB hB iB jB","129":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b m n o p M r s t u v w x y z"},G:{"4":"RB mB CB","129":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"4":"3B"},I:{"4":"4B 5B 6B","129":"OB F QB 7B CB 8B 9B"},J:{"129":"D A"},K:{"1":"7 9 C GB","4":"A B","129":"M"},L:{"129":"q"},M:{"129":"8"},N:{"1":"B","4":"A"},O:{"129":"AC"},P:{"129":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"129":"HC"},S:{"1":"IC"}},B:1,C:"dataset & data-* attributes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/datauri.js b/themes/piratecare/node_modules/caniuse-lite/data/features/datauri.js new file mode 100644 index 0000000..b1894c8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/datauri.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","132":"G","260":"E A B"},B:{"1":"q","260":"C K L N I J","772":"f"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"260":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Data URIs"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js b/themes/piratecare/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js new file mode 100644 index 0000000..1a9008c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"nB","132":"H D G E A B"},B:{"1":"J q","132":"C K f L N I"},C:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","132":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB","260":"w x y z","772":"Z a b c d e AB g h i j k l m n o p M r s t u v"},D:{"1":"IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T","260":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB","772":"U V W X Y Z a b c d e AB g h"},E:{"1":"9 C K fB","16":"F O WB RB","132":"H D G E A YB ZB aB bB","260":"7 B PB"},F:{"1":"1 2 3 4 5 6","16":"7 E B C gB hB iB jB GB lB","132":"9","260":"0 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","772":"L N I J P Q R S T U"},G:{"1":"vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB","132":"G pB qB rB SB tB uB"},H:{"132":"3B"},I:{"1":"QB","16":"OB 4B 5B 6B","132":"F 7B CB","772":"8B 9B"},J:{"132":"D A"},K:{"1":"M","16":"7 A B C GB","132":"9"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"260":"AC"},P:{"1":"FC PB","260":"F BC CC DC EC"},Q:{"260":"GC"},R:{"132":"HC"},S:{"132":"IC"}},B:6,C:"Date.prototype.toLocaleDateString"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/details.js b/themes/piratecare/node_modules/caniuse-lite/data/features/details.js new file mode 100644 index 0000000..27fee49 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/details.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"E A B nB","8":"H D G"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB","8":"OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB","194":"r s"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F O H D G E A B","257":"P Q R S T U V W X Y Z a b c d e AB","769":"C K f L N I J"},E:{"1":"9 C K fB","8":"F O WB RB YB","257":"H D G E A ZB aB bB","1025":"7 B PB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 C GB lB","8":"E B gB hB iB jB"},G:{"1":"G pB qB rB SB tB xB yB zB 0B 1B 2B","8":"RB mB CB oB","1025":"uB vB wB"},H:{"8":"3B"},I:{"1":"F QB 7B CB 8B 9B","8":"OB 4B 5B 6B"},J:{"1":"A","8":"D"},K:{"1":"M","8":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"769":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Details & Summary elements"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/deviceorientation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/deviceorientation.js new file mode 100644 index 0000000..52cd90d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/deviceorientation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","132":"B"},B:{"1":"C K f L N I J","4":"q"},C:{"2":"kB OB eB","4":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"F O dB"},D:{"2":"F O H","4":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","4":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"RB mB","4":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"4B 5B 6B","4":"OB F QB 7B CB 8B 9B"},J:{"2":"D","4":"A"},K:{"1":"9 C","2":"7 A B GB","4":"M"},L:{"4":"q"},M:{"4":"8"},N:{"1":"B","2":"A"},O:{"4":"AC"},P:{"4":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"4":"HC"},S:{"4":"IC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/devicepixelratio.js b/themes/piratecare/node_modules/caniuse-lite/data/features/devicepixelratio.js new file mode 100644 index 0000000..ff10fb4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/devicepixelratio.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 E B gB hB iB jB GB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"9 C M","2":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Window.devicePixelRatio"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dialog.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dialog.js new file mode 100644 index 0000000..6d70109 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dialog.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB","194":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b","322":"c d e AB g"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J gB hB iB jB GB lB","578":"P Q R S T"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:1,C:"Dialog element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dispatchevent.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dispatchevent.js new file mode 100644 index 0000000..7f9e464 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dispatchevent.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","16":"nB","129":"E A","130":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","16":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","129":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"EventTarget.dispatchEvent"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/do-not-track.js b/themes/piratecare/node_modules/caniuse-lite/data/features/do-not-track.js new file mode 100644 index 0000000..e6cebc2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/do-not-track.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","164":"E A","260":"B"},B:{"1":"I J q","260":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G eB dB","516":"E A B C K f L N I J P Q R S T U V W X Y Z a b"},D:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S"},E:{"1":"7 H A B C YB bB PB","2":"9 F O K WB RB fB","1028":"D G E ZB aB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB","2":"RB mB CB oB pB zB 0B 1B 2B","1028":"G qB rB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"16":"D","1028":"A"},K:{"1":"9 M","16":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"164":"A","260":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Do Not Track API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/document-currentscript.js b/themes/piratecare/node_modules/caniuse-lite/data/features/document-currentscript.js new file mode 100644 index 0000000..0963bc1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/document-currentscript.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y"},E:{"1":"7 9 G E A B C K bB PB fB","2":"F O H D WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"document.currentScript"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js b/themes/piratecare/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js new file mode 100644 index 0000000..4dc9267 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","16":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"document.evaluate & XPath"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/document-execcommand.js b/themes/piratecare/node_modules/caniuse-lite/data/features/document-execcommand.js new file mode 100644 index 0000000..c92ef41 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/document-execcommand.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","16":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","16":"E gB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB","16":"CB oB pB"},H:{"2":"3B"},I:{"1":"QB 7B CB 8B 9B","2":"OB F 4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"Document.execCommand()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/document-scrollingelement.js b/themes/piratecare/node_modules/caniuse-lite/data/features/document-scrollingelement.js new file mode 100644 index 0000000..1c04e6c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/document-scrollingelement.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","16":"C K"},C:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB"},D:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"document.scrollingElement"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/documenthead.js b/themes/piratecare/node_modules/caniuse-lite/data/features/documenthead.js new file mode 100644 index 0000000..3bde3c4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/documenthead.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB","16":"O"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E gB hB iB jB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"document.head"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dom-manip-convenience.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dom-manip-convenience.js new file mode 100644 index 0000000..78d9966 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dom-manip-convenience.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s eB dB"},D:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","194":"w x"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j gB hB iB jB GB lB","194":"k"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"194":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"DOM manipulation convenience methods"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dom-range.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dom-range.js new file mode 100644 index 0000000..27be8f7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dom-range.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Document Object Model Range"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/domcontentloaded.js b/themes/piratecare/node_modules/caniuse-lite/data/features/domcontentloaded.js new file mode 100644 index 0000000..b42a2a2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/domcontentloaded.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"DOMContentLoaded"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js b/themes/piratecare/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js new file mode 100644 index 0000000..4aa8fcc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB","16":"O"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","16":"7 E B gB hB iB jB GB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB pB"},H:{"16":"3B"},I:{"1":"F QB 7B CB 8B 9B","16":"OB 4B 5B 6B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dommatrix.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dommatrix.js new file mode 100644 index 0000000..e0e4090 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dommatrix.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"132":"C K f L N I J","1028":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB","2564":"d e AB g h i j k l m n o p M r s","3076":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"16":"F O H D","132":"0 1 2 3 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","388":"G","1028":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"16":"F WB RB","132":"O H D G E A YB ZB aB bB PB","1028":"7 9 B C K fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","132":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r","1028":"0 1 2 3 4 5 6 s t u v w x y z"},G:{"16":"RB mB CB","132":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","132":"F 7B CB 8B 9B","292":"OB 4B 5B 6B"},J:{"16":"D","132":"A"},K:{"2":"7 9 A B C GB","132":"M"},L:{"1028":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"132":"AC"},P:{"132":"F BC CC DC EC FC PB"},Q:{"132":"GC"},R:{"132":"HC"},S:{"2564":"IC"}},B:4,C:"DOMMatrix"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/download.js b/themes/piratecare/node_modules/caniuse-lite/data/features/download.js new file mode 100644 index 0000000..793515c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/download.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P eB dB"},D:{"1":"0 1 2 3 4 5 6 8 f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Download attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/dragndrop.js b/themes/piratecare/node_modules/caniuse-lite/data/features/dragndrop.js new file mode 100644 index 0000000..8f68b46 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/dragndrop.js @@ -0,0 +1 @@ +module.exports={A:{A:{"644":"H D G E nB","772":"A B"},B:{"1":"J q","260":"C K f L N I"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","8":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","8":"7 E B gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"9","2":"M","8":"7 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"Drag and Drop"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/element-closest.js b/themes/piratecare/node_modules/caniuse-lite/data/features/element-closest.js new file mode 100644 index 0000000..9b82d55 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/element-closest.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e eB dB"},D:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Element.closest()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/element-from-point.js b/themes/piratecare/node_modules/caniuse-lite/data/features/element-from-point.js new file mode 100644 index 0000000..16941f8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/element-from-point.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","16":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","16":"kB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","16":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","16":"E gB hB iB jB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"9 C M","16":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"document.elementFromPoint()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/element-scroll-methods.js b/themes/piratecare/node_modules/caniuse-lite/data/features/element-scroll-methods.js new file mode 100644 index 0000000..64ac5ed --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/element-scroll-methods.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},E:{"2":"F O H D G E WB RB YB ZB aB bB","132":"7 9 A B C K PB fB"},F:{"1":"0 1 2 3 4 5 6 s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB","132":"uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/eme.js b/themes/piratecare/node_modules/caniuse-lite/data/features/eme.js new file mode 100644 index 0000000..f16b7b3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/eme.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","164":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h eB dB"},D:{"1":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e","132":"AB g h i j k l"},E:{"1":"9 C K fB","2":"F O H WB RB YB ZB","164":"7 D G E A B aB bB PB"},F:{"1":"0 1 2 3 4 5 6 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R gB hB iB jB GB lB","132":"S T U V W X Y"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:3,C:"Encrypted Media Extensions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/eot.js b/themes/piratecare/node_modules/caniuse-lite/data/features/eot.js new file mode 100644 index 0000000..edea544 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/eot.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","2":"nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"EOT - Embedded OpenType fonts"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es5.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es5.js new file mode 100644 index 0000000..e673fc5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es5.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D nB","260":"E","1026":"G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","4":"kB OB eB dB","132":"F O H D G E A B C K f L N I J P Q"},D:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F O H D G E A B C K f L N I J","132":"P Q R S"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","4":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","4":"7 E B C gB hB iB jB GB lB","132":"9"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","4":"RB mB CB oB"},H:{"132":"3B"},I:{"1":"QB 8B 9B","4":"OB 4B 5B 6B","132":"7B CB","900":"F"},J:{"1":"A","4":"D"},K:{"1":"M","4":"7 A B C GB","132":"9"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ECMAScript 5"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-class.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-class.js new file mode 100644 index 0000000..5b02153 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-class.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l","132":"m n o p M r s"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y gB hB iB jB GB lB","132":"Z a b c d e AB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ES6 classes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-generators.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-generators.js new file mode 100644 index 0000000..2ec352f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-generators.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V eB dB"},D:{"1":"0 1 2 3 4 5 6 8 j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ES6 Generators"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js new file mode 100644 index 0000000..1dc8427 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"8 FB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB eB dB","194":"BB"},D:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"JavaScript modules: dynamic import()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module-nomodule.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module-nomodule.js new file mode 100644 index 0000000..5c2f998 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module-nomodule.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"K C G E A B YB"},B:{"2":"D w Z I","514":"M H"},C:{"2":"0 1 WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v UB OB","322":"3 5 6 7 8 z x"},D:{"1":"8 BB IB DB FB ZB GB","2":"0 1 3 5 6 F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x","194":"7"},E:{"1":"B g PB","2":"F J K C G E A HB CB JB KB LB MB NB"},F:{"2":"4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q QB RB SB TB g VB","194":"r s t u v"},G:{"1":"hB iB","2":"2 G CB XB EB aB bB cB dB eB fB gB"},H:{"2":"jB"},I:{"2":"2 AB F BB kB lB mB nB oB pB"},J:{"2":"C A"},K:{"2":"4 9 A B D L g"},L:{"2":"DB"},M:{"2":"x"},N:{"2":"A B"},O:{"2":"qB"},P:{"2":"F J rB"},Q:{"2":"sB"},R:{"2":"tB"}},B:1,C:"JavaScript modules: nomodule attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module.js new file mode 100644 index 0000000..c5f9c6f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-module.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f","4097":"N I J","4290":"L"},C:{"1":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x eB dB","322":"0 1 2 y z EB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","194":"3"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB","3076":"PB"},F:{"1":"0 1 2 3 4 5 6 s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M gB hB iB jB GB lB","194":"r"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB","3076":"vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"JavaScript modules via script tag"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-number.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-number.js new file mode 100644 index 0000000..faf4107 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-number.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L eB dB","132":"N I J P Q R S T U","260":"V W X Y Z a","516":"b"},D:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J","1028":"P Q R S T U V W X Y Z a b c d"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","1028":"L N I J P Q"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B","1028":"7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ES6 Number"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6-string-includes.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-string-includes.js new file mode 100644 index 0000000..e7f4cc6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6-string-includes.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j eB dB"},D:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"String.prototype.includes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/es6.js b/themes/piratecare/node_modules/caniuse-lite/data/features/es6.js new file mode 100644 index 0000000..7634462 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/es6.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","388":"B"},B:{"257":"q","260":"C K f","769":"L N I J"},C:{"2":"kB OB F O eB dB","4":"H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x","257":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q","4":"R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","257":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K PB fB","2":"F O H D WB RB YB ZB","4":"G E aB bB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","4":"L N I J P Q R S T U V W X Y Z a b c d e AB g h","257":"0 1 2 3 4 5 6 i j k l m n o p M r s t u v w x y z"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB","4":"G qB rB SB tB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","4":"8B 9B","257":"QB"},J:{"2":"D","4":"A"},K:{"2":"7 9 A B C GB","257":"M"},L:{"257":"q"},M:{"257":"8"},N:{"2":"A","388":"B"},O:{"257":"AC"},P:{"4":"F","257":"BC CC DC EC FC PB"},Q:{"257":"GC"},R:{"4":"HC"},S:{"4":"IC"}},B:6,C:"ECMAScript 2015 (ES6)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/eventsource.js b/themes/piratecare/node_modules/caniuse-lite/data/features/eventsource.js new file mode 100644 index 0000000..5bd4562 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/eventsource.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB"},D:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","4":"E gB hB iB jB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 C M GB","4":"A B"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Server-sent events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/feature-policy.js b/themes/piratecare/node_modules/caniuse-lite/data/features/feature-policy.js new file mode 100644 index 0000000..0350f0a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/feature-policy.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","132":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","132":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E A B WB RB YB ZB aB bB PB","772":"7 9 C K fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M gB hB iB jB GB lB","132":"0 1 2 3 4 5 6 r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB","16":"xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","132":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"132":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC","132":"EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Feature Policy"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/fetch.js b/themes/piratecare/node_modules/caniuse-lite/data/features/fetch.js new file mode 100644 index 0000000..094e09d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/fetch.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d eB dB","1025":"j","1218":"e AB g h i"},D:{"1":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j","260":"k","772":"l"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W gB hB iB jB GB lB","260":"X","772":"Y"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Fetch"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/fieldset-disabled.js b/themes/piratecare/node_modules/caniuse-lite/data/features/fieldset-disabled.js new file mode 100644 index 0000000..ed5a4b3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/fieldset-disabled.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"nB","132":"G E","388":"H D A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L","16":"N I J P"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","16":"E gB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"388":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A","260":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"disabled attribute of the fieldset element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/fileapi.js b/themes/piratecare/node_modules/caniuse-lite/data/features/fileapi.js new file mode 100644 index 0000000..7ec4653 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/fileapi.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","260":"A B"},B:{"1":"q","260":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB","260":"F O H D G E A B C K f L N I J P Q R S T U V W X dB"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O","260":"K f L N I J P Q R S T U V W X Y Z a b c d e AB g h","388":"H D G E A B C"},E:{"1":"7 9 A B C K PB fB","2":"F O WB RB","260":"H D G E ZB aB bB","388":"YB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E B gB hB iB jB","260":"7 9 C L N I J P Q R S T U GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","260":"G pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB 9B","2":"4B 5B 6B","260":"8B","388":"OB F 7B CB"},J:{"260":"A","388":"D"},K:{"1":"M","2":"A B","260":"7 9 C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A","260":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"File API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/filereader.js b/themes/piratecare/node_modules/caniuse-lite/data/features/filereader.js new file mode 100644 index 0000000..61d7ffc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/filereader.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 7 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E B gB hB iB jB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"7 9 C M GB","2":"A B"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"FileReader API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/filereadersync.js b/themes/piratecare/node_modules/caniuse-lite/data/features/filereadersync.js new file mode 100644 index 0000000..19ab0bf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/filereadersync.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D eB dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"E gB hB","16":"7 B iB jB GB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"9 C M GB","2":"A","16":"7 B"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"FileReaderSync"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/filesystem.js b/themes/piratecare/node_modules/caniuse-lite/data/features/filesystem.js new file mode 100644 index 0000000..157c5fd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/filesystem.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","33":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"F O H D","33":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","36":"G E A B C"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","33":"A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","33":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Filesystem & FileWriter API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/flac.js b/themes/piratecare/node_modules/caniuse-lite/data/features/flac.js new file mode 100644 index 0000000..77acde4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/flac.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u eB dB"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n","16":"o p M","388":"r s t u v w x y z"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","516":"7 9 B C K fB"},F:{"1":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"4B 5B 6B","16":"OB F 7B CB 8B 9B"},J:{"1":"A","2":"D"},K:{"1":"9","16":"7 A B C GB","129":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","129":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:6,C:"FLAC audio format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/flexbox-gap.js b/themes/piratecare/node_modules/caniuse-lite/data/features/flexbox-gap.js new file mode 100644 index 0000000..96a65cf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/flexbox-gap.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB","2":"0 1 2 3 4 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"gap property for Flexbox"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/flexbox.js b/themes/piratecare/node_modules/caniuse-lite/data/features/flexbox.js new file mode 100644 index 0000000..31a6693 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/flexbox.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","1028":"B","1316":"A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","164":"kB OB F O H D G E A B C K f L N I J P Q R eB dB","516":"S T U V W X"},D:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"R S T U V W X Y","164":"F O H D G E A B C K f L N I J P Q"},E:{"1":"7 9 E A B C K bB PB fB","33":"D G ZB aB","164":"F O H WB RB YB"},F:{"1":"0 1 2 3 4 5 6 9 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB","33":"L N"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","33":"G qB rB","164":"RB mB CB oB pB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","164":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","164":"D"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","292":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS Flexible Box Layout Module"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/flow-root.js b/themes/piratecare/node_modules/caniuse-lite/data/features/flow-root.js new file mode 100644 index 0000000..958aaaa --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/flow-root.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB"},D:{"1":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"1":"K fB","2":"7 9 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"display: flow-root"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/focusin-focusout-events.js b/themes/piratecare/node_modules/caniuse-lite/data/features/focusin-focusout-events.js new file mode 100644 index 0000000..3d34a32 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/focusin-focusout-events.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","2":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"E gB hB iB jB","16":"7 B GB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"F QB 7B CB 8B 9B","2":"4B 5B 6B","16":"OB"},J:{"1":"D A"},K:{"1":"9 C M","2":"A","16":"7 B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"focusin & focusout events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js b/themes/piratecare/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js new file mode 100644 index 0000000..fa30f46 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"preventScroll support in focus"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-family-system-ui.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-family-system-ui.js new file mode 100644 index 0000000..f482c96 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-family-system-ui.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m eB dB","132":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w","260":"x y z"},E:{"1":"7 9 B C K fB","2":"F O H D G WB RB YB ZB aB","16":"E","132":"A bB PB"},F:{"1":"0 1 2 3 4 5 6 n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB","132":"SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"1":"GC"},R:{"2":"HC"},S:{"132":"IC"}},B:5,C:"system-ui value for font-family"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-feature.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-feature.js new file mode 100644 index 0000000..5ab6e0d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-feature.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","33":"L N I J P Q R S T U V W X Y Z a b c d","164":"F O H D G E A B C K f"},D:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L","33":"R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r","292":"N I J P Q"},E:{"1":"7 9 A B C K bB PB fB","2":"D G E WB RB ZB aB","4":"F O H YB"},F:{"1":"0 1 2 3 4 5 6 AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R S T U V W X Y Z a b c d e"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G qB rB SB","4":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB","33":"8B 9B"},J:{"2":"D","33":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","33":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS font-feature-settings"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-kerning.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-kerning.js new file mode 100644 index 0000000..96e0a95 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-kerning.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T eB dB","194":"U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y","33":"Z a b c"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H WB RB YB ZB","33":"D G E aB"},F:{"1":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L gB hB iB jB GB lB","33":"N I J P"},G:{"2":"RB mB CB oB pB qB","33":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 9B","2":"OB F 4B 5B 6B 7B CB","33":"8B"},J:{"2":"D","33":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 font-kerning"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-loading.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-loading.js new file mode 100644 index 0000000..82017bb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-loading.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e eB dB","194":"AB g h i j k"},D:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS Font Loading"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-size-adjust.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-size-adjust.js new file mode 100644 index 0000000..bc8a990 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-size-adjust.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","194":"q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m","194":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB","194":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"258":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"194":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"CSS font-size-adjust"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-smooth.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-smooth.js new file mode 100644 index 0000000..6d84489 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-smooth.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","676":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB","804":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F","676":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"WB RB","676":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","676":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"804":"IC"}},B:7,C:"CSS font-smooth"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-unicode-range.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-unicode-range.js new file mode 100644 index 0000000..9bea2b9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-unicode-range.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","4":"E A B"},B:{"1":"I J q","4":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB","194":"g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"1":"7 9 A B C K PB fB","4":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","4":"L N I J P Q R S"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","4":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","4":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","4":"A"},K:{"2":"7 9 A B C GB","4":"M"},L:{"1":"q"},M:{"1":"8"},N:{"4":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","4":"F"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:4,C:"Font unicode-range subsetting"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-alternates.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-alternates.js new file mode 100644 index 0000000..b00dd9e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-alternates.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","130":"A B"},B:{"130":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","130":"F O H D G E A B C K f L N I J P Q R S T","322":"U V W X Y Z a b c d"},D:{"2":"F O H D G E A B C K f L","130":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K bB PB fB","2":"D G E WB RB ZB aB","130":"F O H YB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","130":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB qB rB SB","130":"mB CB oB pB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","130":"QB 8B 9B"},J:{"2":"D","130":"A"},K:{"2":"7 9 A B C GB","130":"M"},L:{"130":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"130":"AC"},P:{"130":"F BC CC DC EC FC PB"},Q:{"130":"GC"},R:{"130":"HC"},S:{"1":"IC"}},B:4,C:"CSS font-variant-alternates"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-east-asian.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-east-asian.js new file mode 100644 index 0000000..d7be51d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-east-asian.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T eB dB","132":"U V W X Y Z a b c d"},D:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB"},G:{"2":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"132":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:4,C:"CSS font-variant-east-asian "}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-numeric.js new file mode 100644 index 0000000..52e737e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/font-variant-numeric.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d eB dB"},D:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i gB hB iB jB GB lB"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","16":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:2,C:"CSS font-variant-numeric"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/fontface.js b/themes/piratecare/node_modules/caniuse-lite/data/features/fontface.js new file mode 100644 index 0000000..f374bd1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/fontface.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","132":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","2":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","2":"E gB"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","260":"RB mB"},H:{"2":"3B"},I:{"1":"F QB 7B CB 8B 9B","2":"4B","4":"OB 5B 6B"},J:{"1":"A","4":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"@font-face Web fonts"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/form-attribute.js b/themes/piratecare/node_modules/caniuse-lite/data/features/form-attribute.js new file mode 100644 index 0000000..30905e2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/form-attribute.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB","16":"O"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Form attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/form-submit-attributes.js b/themes/piratecare/node_modules/caniuse-lite/data/features/form-submit-attributes.js new file mode 100644 index 0000000..7069ba6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/form-submit-attributes.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB","16":"hB iB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"F QB 7B CB 8B 9B","2":"4B 5B 6B","16":"OB"},J:{"1":"A","2":"D"},K:{"1":"7 9 B C M GB","16":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Attributes for form submission"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/form-validation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/form-validation.js new file mode 100644 index 0000000..9c95fbb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/form-validation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E"},E:{"1":"7 9 B C K PB fB","2":"F WB RB","132":"O H D G E A YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","2":"E gB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"RB","132":"G mB CB oB pB qB rB SB tB uB"},H:{"516":"3B"},I:{"1":"QB 9B","2":"OB 4B 5B 6B","132":"F 7B CB 8B"},J:{"1":"A","132":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"260":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"132":"IC"}},B:1,C:"Form validation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/forms.js b/themes/piratecare/node_modules/caniuse-lite/data/features/forms.js new file mode 100644 index 0000000..1161f09 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/forms.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","4":"A B","8":"H D G E"},B:{"1":"N I J q","4":"C K f L"},C:{"4":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB eB dB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},E:{"4":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","8":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C w x y z gB hB iB jB GB lB","4":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v"},G:{"2":"RB","4":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB","4":"8B 9B"},J:{"2":"D","4":"A"},K:{"1":"7 9 A B C GB","4":"M"},L:{"1":"q"},M:{"4":"8"},N:{"4":"A B"},O:{"1":"AC"},P:{"1":"EC FC PB","4":"F BC CC DC"},Q:{"4":"GC"},R:{"4":"HC"},S:{"4":"IC"}},B:1,C:"HTML5 form features"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/fullscreen.js b/themes/piratecare/node_modules/caniuse-lite/data/features/fullscreen.js new file mode 100644 index 0000000..9bde030 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/fullscreen.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","548":"B"},B:{"1":"q","516":"C K f L N I J"},C:{"1":"6 8 DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E eB dB","676":"A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M","1700":"0 1 2 3 4 5 r s t u v w x y z EB NB"},D:{"1":"JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f","676":"L N I J P","804":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB"},E:{"2":"F O WB RB","676":"YB","804":"7 9 H D G E A B C K ZB aB bB PB fB"},F:{"1":"6 9","2":"7 E B C gB hB iB jB GB lB","804":"0 1 2 3 4 5 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB","2052":"yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","292":"A"},K:{"2":"7 9 A B C GB","804":"M"},L:{"804":"q"},M:{"1":"8"},N:{"2":"A","548":"B"},O:{"804":"AC"},P:{"1":"PB","804":"F BC CC DC EC FC"},Q:{"804":"GC"},R:{"804":"HC"},S:{"1":"IC"}},B:1,C:"Full Screen API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/gamepad.js b/themes/piratecare/node_modules/caniuse-lite/data/features/gamepad.js new file mode 100644 index 0000000..b8df838 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/gamepad.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q","33":"R S T U"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"Gamepad API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/geolocation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/geolocation.js new file mode 100644 index 0000000..a19c8bd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/geolocation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H D G"},B:{"1":"C K f L N I J","129":"q"},C:{"1":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y eB dB","8":"kB OB","129":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","4":"F","129":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E B C K YB ZB aB bB PB fB","8":"F WB RB","129":"A"},F:{"1":"7 9 B C N I J P Q R S T U V W X Y Z a b c d e AB g h i jB GB lB","2":"E L gB","8":"hB iB","129":"0 1 2 3 4 5 6 j k l m n o p M r s t u v w x y z"},G:{"1":"G RB mB CB oB pB qB rB SB tB","129":"uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F 4B 5B 6B 7B CB 8B 9B","129":"QB"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","8":"A"},L:{"129":"q"},M:{"129":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F","129":"BC CC DC EC FC PB"},Q:{"129":"GC"},R:{"129":"HC"},S:{"1":"IC"}},B:2,C:"Geolocation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/getboundingclientrect.js b/themes/piratecare/node_modules/caniuse-lite/data/features/getboundingclientrect.js new file mode 100644 index 0000000..95a337b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/getboundingclientrect.js @@ -0,0 +1 @@ +module.exports={A:{A:{"644":"H D nB","2049":"E A B","2692":"G"},B:{"1":"q","2049":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB","260":"F O H D G E A B","1156":"OB","1284":"eB","1796":"dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","16":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","16":"E gB","132":"hB iB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","132":"A"},L:{"1":"q"},M:{"1":"8"},N:{"2049":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Element.getBoundingClientRect()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/getcomputedstyle.js b/themes/piratecare/node_modules/caniuse-lite/data/features/getcomputedstyle.js new file mode 100644 index 0000000..1f37ea3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/getcomputedstyle.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB","132":"OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","260":"F O H D G E A"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","260":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","260":"E gB hB iB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","260":"RB mB CB"},H:{"260":"3B"},I:{"1":"F QB 7B CB 8B 9B","260":"OB 4B 5B 6B"},J:{"1":"A","260":"D"},K:{"1":"7 9 B C M GB","260":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"getComputedStyle"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/getelementsbyclassname.js b/themes/piratecare/node_modules/caniuse-lite/data/features/getelementsbyclassname.js new file mode 100644 index 0000000..c5eee2a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/getelementsbyclassname.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","8":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"getElementsByClassName"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/getrandomvalues.js b/themes/piratecare/node_modules/caniuse-lite/data/features/getrandomvalues.js new file mode 100644 index 0000000..af5c722 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/getrandomvalues.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","33":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q eB dB"},D:{"1":"0 1 2 3 4 5 6 8 B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O H WB RB YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A","33":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"crypto.getRandomValues()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/gyroscope.js b/themes/piratecare/node_modules/caniuse-lite/data/features/gyroscope.js new file mode 100644 index 0000000..104dbdc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/gyroscope.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"2 3 4 5 6 EB NB DB BB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"Gyroscope"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/hardwareconcurrency.js b/themes/piratecare/node_modules/caniuse-lite/data/features/hardwareconcurrency.js new file mode 100644 index 0000000..3d8c797 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/hardwareconcurrency.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g"},E:{"2":"F O H D WB RB YB ZB aB","129":"7 9 B C K PB fB","194":"G E A bB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"2":"RB mB CB oB pB qB","129":"vB wB xB yB zB 0B 1B 2B","194":"G rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"navigator.hardwareConcurrency"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/hashchange.js b/themes/piratecare/node_modules/caniuse-lite/data/features/hashchange.js new file mode 100644 index 0000000..c10698d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/hashchange.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","8":"H D nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","8":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","8":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","8":"E gB hB iB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 5B 6B 7B CB 8B 9B","2":"4B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","8":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Hashchange event"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/heif.js b/themes/piratecare/node_modules/caniuse-lite/data/features/heif.js new file mode 100644 index 0000000..e0f355d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/heif.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","130":"7 9 B C K fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB","130":"wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"HEIF/ISO Base Media File Format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/hevc.js b/themes/piratecare/node_modules/caniuse-lite/data/features/hevc.js new file mode 100644 index 0000000..0e15fe8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/hevc.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","132":"B"},B:{"2":"q","132":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","516":"7 9 B C K fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","258":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"258":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","258":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"HEVC/H.265 video format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/hidden.js b/themes/piratecare/node_modules/caniuse-lite/data/features/hidden.js new file mode 100644 index 0000000..a5f7581 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/hidden.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E B gB hB iB jB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"F QB 7B CB 8B 9B","2":"OB 4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"7 9 C M GB","2":"A B"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"hidden attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/high-resolution-time.js b/themes/piratecare/node_modules/caniuse-lite/data/features/high-resolution-time.js new file mode 100644 index 0000000..331119d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/high-resolution-time.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P","33":"Q R S T"},E:{"1":"7 9 G E A B C K bB PB fB","2":"F O H D WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"High Resolution Time API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/history.js b/themes/piratecare/node_modules/caniuse-lite/data/features/history.js new file mode 100644 index 0000000..6a1584d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/history.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F WB RB","4":"O YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"7 E B gB hB iB jB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB","4":"CB"},H:{"2":"3B"},I:{"1":"QB 5B 6B CB 8B 9B","2":"OB F 4B 7B"},J:{"1":"D A"},K:{"1":"7 9 C M GB","2":"A B"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Session history management"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/html-media-capture.js b/themes/piratecare/node_modules/caniuse-lite/data/features/html-media-capture.js new file mode 100644 index 0000000..db7215f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/html-media-capture.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"RB mB CB oB","129":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B","257":"5B 6B"},J:{"1":"A","16":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"516":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:4,C:"HTML Media Capture"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/html5semantic.js b/themes/piratecare/node_modules/caniuse-lite/data/features/html5semantic.js new file mode 100644 index 0000000..d598d0f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/html5semantic.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G","260":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB","132":"OB eB dB","260":"F O H D G E A B C K f L N I J P Q"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O","260":"H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","132":"F WB RB","260":"O H YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","132":"E B gB hB iB jB","260":"7 9 C GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","132":"RB","260":"mB CB oB pB"},H:{"132":"3B"},I:{"1":"QB 8B 9B","132":"4B","260":"OB F 5B 6B 7B CB"},J:{"260":"D A"},K:{"1":"M","132":"A","260":"7 9 B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"260":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"HTML5 semantic elements"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/http-live-streaming.js b/themes/piratecare/node_modules/caniuse-lite/data/features/http-live-streaming.js new file mode 100644 index 0000000..efa4945 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/http-live-streaming.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J","2":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:7,C:"HTTP Live Streaming (HLS)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/http2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/http2.js new file mode 100644 index 0000000..33610ad --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/http2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","132":"B"},B:{"1":"C K f L N I J","513":"q"},C:{"1":"g h i j k l m n o p M r s t u v w","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB","513":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"l m n o p M r s t u","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k","513":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 B C K fB","2":"F O H D G WB RB YB ZB aB","260":"E A bB PB"},F:{"1":"Y Z a b c d e AB g h","2":"7 9 E B C L N I J P Q R S T U V W X gB hB iB jB GB lB","513":"0 1 2 3 4 5 6 i j k l m n o p M r s t u v w x y z"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","513":"QB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"513":"q"},M:{"513":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F","513":"BC CC DC EC FC PB"},Q:{"513":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"HTTP/2 protocol"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/http3.js b/themes/piratecare/node_modules/caniuse-lite/data/features/http3.js new file mode 100644 index 0000000..10b9f54 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/http3.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB eB dB","194":"KB LB MB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB","322":"q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"HTTP/3 protocol"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-sandbox.js b/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-sandbox.js new file mode 100644 index 0000000..9ccd05e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-sandbox.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N eB dB","4":"I J P Q R S T U V W X"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB"},H:{"2":"3B"},I:{"1":"OB F QB 5B 6B 7B CB 8B 9B","2":"4B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"sandbox attribute for iframes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-seamless.js b/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-seamless.js new file mode 100644 index 0000000..f9c87b9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-seamless.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","66":"Q R S T U V W"},E:{"2":"7 9 F O H G E A B C K WB RB YB ZB bB PB fB","130":"D aB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB rB SB tB uB vB wB xB yB zB 0B 1B 2B","130":"qB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"seamless attribute for iframes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-srcdoc.js b/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-srcdoc.js new file mode 100644 index 0000000..629192f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/iframe-srcdoc.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G E A B"},B:{"1":"q","8":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB","8":"OB F O H D G E A B C K f L N I J P Q R S T U eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K","8":"f L N I J P"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"WB RB","8":"F O YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E B gB hB iB jB","8":"7 9 C GB lB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB","8":"mB CB oB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","8":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","8":"D"},K:{"1":"M","2":"A B","8":"7 9 C GB"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"srcdoc attribute for iframes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/imagecapture.js b/themes/piratecare/node_modules/caniuse-lite/data/features/imagecapture.js new file mode 100644 index 0000000..5c1d44f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/imagecapture.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","322":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e eB dB","194":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w","322":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j gB hB iB jB GB lB","322":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"322":"GC"},R:{"1":"HC"},S:{"194":"IC"}},B:5,C:"ImageCapture API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ime.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ime.js new file mode 100644 index 0000000..3dd9913 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ime.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","161":"B"},B:{"2":"q","161":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A","161":"B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Input Method Editor API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js b/themes/piratecare/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js new file mode 100644 index 0000000..c710508 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/imports.js b/themes/piratecare/node_modules/caniuse-lite/data/features/imports.js new file mode 100644 index 0000000..ac1a622 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/imports.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","8":"A B"},B:{"2":"q","8":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z eB dB","8":"0 1 2 3 4 5 6 8 a b EB NB DB BB FB HB IB JB KB LB MB","72":"c d e AB g h i j k l m n o p M r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z sB UB VB","66":"a b c d e","72":"AB"},E:{"2":"F O WB RB YB","8":"7 9 H D G E A B C K ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N gB hB iB jB GB lB","66":"I J P Q R","72":"S"},G:{"2":"RB mB CB oB pB","8":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"8":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"HTML Imports"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js b/themes/piratecare/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js new file mode 100644 index 0000000..eb6cc84 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","16":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB","16":"eB"},D:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 E B gB hB iB jB GB"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"indeterminate checkbox"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/indexeddb.js b/themes/piratecare/node_modules/caniuse-lite/data/features/indexeddb.js new file mode 100644 index 0000000..94fef66 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/indexeddb.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"1":"q","132":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","33":"A B C K f L","36":"F O H D G E"},D:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"A","8":"F O H D G E","33":"T","36":"B C K f L N I J P Q R S"},E:{"1":"7 9 A B C K PB fB","8":"F O H D WB RB YB ZB","260":"G E aB bB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB","8":"7 9 B C iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","8":"RB mB CB oB pB qB","260":"G rB SB tB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","8":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","8":"D"},K:{"1":"M","2":"A","8":"7 9 B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"IndexedDB"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/indexeddb2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/indexeddb2.js new file mode 100644 index 0000000..8d9a0b8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/indexeddb2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n eB dB","132":"o p M","260":"r s t u"},D:{"1":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r","132":"s t u v","260":"0 1 w x y z"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e gB hB iB jB GB lB","132":"AB g h i","260":"j k l m n o"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB","16":"uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"DC EC FC PB","2":"F","260":"BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"260":"IC"}},B:4,C:"IndexedDB 2.0"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/inline-block.js b/themes/piratecare/node_modules/caniuse-lite/data/features/inline-block.js new file mode 100644 index 0000000..5c1f2f8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/inline-block.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","4":"nB","132":"H D"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","36":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS inline-block"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/innertext.js b/themes/piratecare/node_modules/caniuse-lite/data/features/innertext.js new file mode 100644 index 0000000..0469ef0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/innertext.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","16":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","16":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"HTMLElement.innerText"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js new file mode 100644 index 0000000..58cd3eb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A nB","132":"B"},B:{"132":"C K f L N I J","260":"q"},C:{"1":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z eB dB","516":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"I J P Q R S T U V W","2":"F O H D G E A B C K f L N","132":"X Y Z a b c d e AB g h i j k","260":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"H YB ZB","2":"F O WB RB","2052":"7 9 D G E A B C K aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"RB mB CB","1025":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1025":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2052":"A B"},O:{"1025":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"260":"GC"},R:{"1":"HC"},S:{"516":"IC"}},B:1,C:"autocomplete attribute: on & off values"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-color.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-color.js new file mode 100644 index 0000000..4d6eb05 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-color.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P"},E:{"1":"9 K fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E L N gB hB iB jB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB","129":"zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:1,C:"Color input type"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-datetime.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-datetime.js new file mode 100644 index 0000000..aec0603 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-datetime.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","132":"C"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB","1090":"0 x y z","2052":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P","2052":"Q R S T U"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"RB mB CB","260":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB 4B 5B 6B","514":"F 7B CB"},J:{"1":"A","2":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2052":"IC"}},B:1,C:"Date and time input types"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-email-tel-url.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-email-tel-url.js new file mode 100644 index 0000000..4d880b8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-email-tel-url.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","132":"4B 5B 6B"},J:{"1":"A","132":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Email, telephone & URL input types"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-event.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-event.js new file mode 100644 index 0000000..fcc85d1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-event.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","2561":"A B","2692":"E"},B:{"1":"q","2561":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB","1537":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s dB","1796":"OB eB"},D:{"1":"8 BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f","1025":"0 1 2 3 4 5 6 AB g h i j k l m n o p M r s t u v w x y z EB NB DB","1537":"L N I J P Q R S T U V W X Y Z a b c d e"},E:{"16":"F O H WB RB","1025":"7 9 D G E A B C K ZB aB bB PB fB","1537":"YB"},F:{"1":"0 1 2 3 4 5 6 9 w x y z","16":"7 E B C gB hB iB jB GB","260":"lB","1025":"S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","1537":"L N I J P Q R"},G:{"16":"RB mB CB","1025":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","1537":"oB pB qB"},H:{"2":"3B"},I:{"16":"4B 5B","1025":"QB 9B","1537":"OB F 6B 7B CB 8B"},J:{"1025":"A","1537":"D"},K:{"1":"7 9 A B C GB","1025":"M"},L:{"1":"q"},M:{"1537":"8"},N:{"2561":"A B"},O:{"1537":"AC"},P:{"1025":"F BC CC DC EC FC PB"},Q:{"1025":"GC"},R:{"1025":"HC"},S:{"1537":"IC"}},B:1,C:"input event"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-accept.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-accept.js new file mode 100644 index 0000000..f5da945 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-accept.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F","16":"O H D G R S T U V","132":"E A B C K f L N I J P Q"},E:{"1":"7 9 C K fB","2":"F O WB RB YB","132":"H D G E A B ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"pB qB","132":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","514":"RB mB CB oB"},H:{"2":"3B"},I:{"2":"4B 5B 6B","260":"OB F 7B CB","514":"QB 8B 9B"},J:{"132":"A","260":"D"},K:{"2":"7 9 A B C GB","260":"M"},L:{"260":"q"},M:{"2":"8"},N:{"514":"A","1028":"B"},O:{"2":"AC"},P:{"260":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"260":"HC"},S:{"1":"IC"}},B:1,C:"accept attribute for file input"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-directory.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-directory.js new file mode 100644 index 0000000..8f02d52 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-directory.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t eB dB"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Directory selection from file input"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-multiple.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-multiple.js new file mode 100644 index 0000000..6d4b43d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-file-multiple.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB hB iB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"130":"3B"},I:{"130":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"130":"7 9 A B C M GB"},L:{"132":"q"},M:{"130":"8"},N:{"2":"A B"},O:{"130":"AC"},P:{"130":"F","132":"BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"132":"HC"},S:{"2":"IC"}},B:1,C:"Multiple file selection"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-inputmode.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-inputmode.js new file mode 100644 index 0000000..0620e0a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-inputmode.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N eB dB","4":"I J P Q","194":"0 1 2 3 4 5 6 8 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"8 BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","66":"0 1 2 3 4 5 6 EB NB DB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m gB hB iB jB GB lB","66":"n o p M r s t u v w"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"194":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"FC PB","2":"F BC CC DC EC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"194":"IC"}},B:1,C:"inputmode attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-minlength.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-minlength.js new file mode 100644 index 0000000..f1f8ba0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-minlength.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u eB dB"},D:{"1":"0 1 2 3 4 5 6 8 k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:1,C:"Minimum length attribute for input fields"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-number.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-number.js new file mode 100644 index 0000000..b3069c7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-number.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","129":"A B"},B:{"1":"q","129":"C K","1025":"f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB","513":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"388":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB 4B 5B 6B","388":"F QB 7B CB 8B 9B"},J:{"2":"D","388":"A"},K:{"1":"7 9 A B C GB","388":"M"},L:{"388":"q"},M:{"641":"8"},N:{"388":"A B"},O:{"388":"AC"},P:{"388":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"388":"HC"},S:{"513":"IC"}},B:1,C:"Number input type"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-pattern.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-pattern.js new file mode 100644 index 0000000..4ecfb73 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-pattern.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E"},E:{"1":"7 9 B C K PB fB","2":"F WB RB","16":"O","388":"H D G E A YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"vB wB xB yB zB 0B 1B 2B","16":"RB mB CB","388":"G oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB 9B","2":"OB F 4B 5B 6B 7B CB 8B"},J:{"1":"A","2":"D"},K:{"1":"7 9 A B C GB","132":"M"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Pattern attribute for input fields"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-placeholder.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-placeholder.js new file mode 100644 index 0000000..e1863c6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-placeholder.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","132":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E gB hB iB jB","132":"7 B"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB QB 4B 5B 6B CB 8B 9B","4":"F 7B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"input placeholder attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-range.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-range.js new file mode 100644 index 0000000..c34a0c7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-range.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"QB CB 8B 9B","4":"OB F 4B 5B 6B 7B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Range input type"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-search.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-search.js new file mode 100644 index 0000000..454ce73 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-search.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","129":"A B"},B:{"1":"q","129":"C K f L N I J"},C:{"2":"kB OB eB dB","129":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f R S T U V","129":"L N I J P Q"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"E gB hB iB jB","16":"7 B GB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"129":"3B"},I:{"1":"QB 8B 9B","16":"4B 5B","129":"OB F 6B 7B CB"},J:{"1":"D","129":"A"},K:{"1":"C","2":"A","16":"7 B GB","129":"9 M"},L:{"1":"q"},M:{"129":"8"},N:{"129":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"129":"IC"}},B:1,C:"Search input type"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/input-selection.js b/themes/piratecare/node_modules/caniuse-lite/data/features/input-selection.js new file mode 100644 index 0000000..92a2bb9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/input-selection.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","16":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","16":"E gB hB iB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Selection controls for input & textarea"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/insert-adjacent.js b/themes/piratecare/node_modules/caniuse-lite/data/features/insert-adjacent.js new file mode 100644 index 0000000..7d4700b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/insert-adjacent.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","16":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/insertadjacenthtml.js b/themes/piratecare/node_modules/caniuse-lite/data/features/insertadjacenthtml.js new file mode 100644 index 0000000..027eb60 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/insertadjacenthtml.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","16":"nB","132":"H D G E"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","16":"E gB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Element.insertAdjacentHTML()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/internationalization-plural-rul.js b/themes/piratecare/node_modules/caniuse-lite/data/features/internationalization-plural-rul.js new file mode 100644 index 0000000..a8ff0cd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/internationalization-plural-rul.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"L H G E A B jB"},B:{"1":"8","2":"C D e K I N","130":"J"},C:{"1":"1 2 3 9 KB JB CB DB EB O GB HB IB","2":"0 4 5 7 gB BB F L H G E A B C D e K I N J P Q R S T U V W X Y Z a b c d f g h i j k l m n o M q r s t u v w x y z aB ZB"},D:{"1":"8 JB CB DB EB O GB HB IB TB PB OB mB MB QB RB","2":"0 1 2 3 4 5 7 9 F L H G E A B C D e K I N J P Q R S T U V W X Y Z a b c d f g h i j k l m n o M q r s t u v w x y z KB"},E:{"2":"4 6 F L H G E A B C SB LB UB VB WB XB YB p","16":"D bB"},F:{"1":"0 1 2 3 t u v w x y z","2":"5 6 7 E B C K I N J P Q R S T U V W X Y Z a b c d f g h i j k l m n o M q r s cB dB eB fB p AB hB"},G:{"2":"G D LB iB FB kB lB NB nB oB pB qB rB sB tB uB vB"},H:{"2":"wB"},I:{"1":"O","2":"BB F xB yB zB 0B FB 1B 2B"},J:{"2":"H A"},K:{"2":"6 A B C M p AB"},L:{"1":"MB"},M:{"1":"O"},N:{"2":"A B"},O:{"2":"3B"},P:{"2":"F 4B 5B 6B 7B 8B"},Q:{"2":"9B"},R:{"2":"AC"},S:{"2":"BC"}},B:6,C:"Intl.PluralRules API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/internationalization.js b/themes/piratecare/node_modules/caniuse-lite/data/features/internationalization.js new file mode 100644 index 0000000..54e7dd4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/internationalization.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:6,C:"Internationalization API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/intersectionobserver.js b/themes/piratecare/node_modules/caniuse-lite/data/features/intersectionobserver.js new file mode 100644 index 0000000..86bd85a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/intersectionobserver.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J","2":"C K f","516":"L","1025":"q"},C:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB","194":"w x y"},D:{"1":"2 3 4 5 6 EB NB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","516":"0 1 v w x y z","1025":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"9 K fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h gB hB iB jB GB lB","516":"i j k l m n o","1025":"6"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"516":"AC"},P:{"1":"DC EC FC PB","2":"F","516":"BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"IntersectionObserver"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/intl-pluralrules.js b/themes/piratecare/node_modules/caniuse-lite/data/features/intl-pluralrules.js new file mode 100644 index 0000000..b9e5bb3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/intl-pluralrules.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I","130":"J"},C:{"1":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"0 1 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB"},D:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"1":"fB","2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Intl.PluralRules API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/intrinsic-width.js b/themes/piratecare/node_modules/caniuse-lite/data/features/intrinsic-width.js new file mode 100644 index 0000000..03b6029 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/intrinsic-width.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","1537":"q"},C:{"2":"kB","932":"0 1 2 3 4 5 6 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB eB dB","2308":"8 BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R","545":"S T U V W X Y Z a b c d e AB g h i j k l m n o p","1537":"0 1 2 3 4 5 6 8 M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H WB RB YB","516":"7 9 B C K fB","548":"E A bB PB","676":"D G ZB aB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","513":"e","545":"L N I J P Q R S T U V W X Y Z a b c","1537":"0 1 2 3 4 5 6 d AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"RB mB CB oB pB","548":"SB tB uB vB wB xB yB zB 0B 1B 2B","676":"G qB rB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","545":"8B 9B","1537":"QB"},J:{"2":"D","545":"A"},K:{"2":"7 9 A B C GB","1537":"M"},L:{"1537":"q"},M:{"2340":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"545":"F","1537":"BC CC DC EC FC PB"},Q:{"545":"GC"},R:{"1537":"HC"},S:{"932":"IC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/jpeg2000.js b/themes/piratecare/node_modules/caniuse-lite/data/features/jpeg2000.js new file mode 100644 index 0000000..5fd54ab --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/jpeg2000.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F WB RB","129":"O YB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"JPEG 2000 image format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/jpegxr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/jpegxr.js new file mode 100644 index 0000000..f1c7cf3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/jpegxr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J","2":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"JPEG XR image format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js b/themes/piratecare/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js new file mode 100644 index 0000000..8a72032 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Lookbehind in JS regular expressions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/json.js b/themes/piratecare/node_modules/caniuse-lite/data/features/json.js new file mode 100644 index 0000000..4cddc0f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/json.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D nB","129":"G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"JSON parsing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js b/themes/piratecare/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js new file mode 100644 index 0000000..fe52099 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L","132":"N I J"},C:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB"},D:{"1":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","132":"1 2 EB"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB","132":"PB"},F:{"1":"0 1 2 3 4 5 6 r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n gB hB iB jB GB lB","132":"o p M"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB","132":"vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"1":"EC FC PB","2":"F BC CC","132":"DC"},Q:{"132":"GC"},R:{"2":"HC"},S:{"132":"IC"}},B:5,C:"CSS justify-content: space-evenly"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js b/themes/piratecare/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js new file mode 100644 index 0000000..6fad1f8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"J q","2":"C K f L N I"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"4B 5B 6B","132":"OB F 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"High-quality kerning pairs & ligatures"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js new file mode 100644 index 0000000..06e0952 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","16":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","16":"WB RB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","16":"C"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"9","2":"7 A B GB","16":"C","130":"M"},L:{"1":"q"},M:{"130":"8"},N:{"130":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"KeyboardEvent.charCode"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-code.js b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-code.js new file mode 100644 index 0000000..c56b54b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-code.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h eB dB"},D:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l","194":"m n o p M r"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y gB hB iB jB GB lB","194":"Z a b c d e"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","194":"M"},L:{"194":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","194":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"194":"HC"},S:{"1":"IC"}},B:5,C:"KeyboardEvent.code"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js new file mode 100644 index 0000000..207c4d6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 9 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B L N gB hB iB jB GB lB","16":"C"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"9 M","2":"7 A B GB","16":"C"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"KeyboardEvent.getModifierState()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-key.js b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-key.js new file mode 100644 index 0000000..351c6b6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-key.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","260":"E A B"},B:{"1":"q","260":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S eB dB","132":"T U V W X Y"},D:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 9 i j k l m n o p M r s t u v w x y z","2":"7 E B L N I J P Q R S T U V W X Y Z a b c d e AB g h gB hB iB jB GB lB","16":"C"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"9","2":"7 A B GB","16":"C M"},L:{"1":"q"},M:{"1":"8"},N:{"260":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:5,C:"KeyboardEvent.key"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-location.js b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-location.js new file mode 100644 index 0000000..648317d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-location.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","16":"H WB RB","132":"F O YB"},F:{"1":"0 1 2 3 4 5 6 9 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","16":"C","132":"L N"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB","132":"oB pB qB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","16":"4B 5B","132":"OB F 6B 7B CB"},J:{"132":"D A"},K:{"1":"9 M","2":"7 A B GB","16":"C"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"KeyboardEvent.location"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-which.js b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-which.js new file mode 100644 index 0000000..dc1e5c3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/keyboardevent-which.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB","16":"O"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","16":"E gB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB","16":"4B 5B","132":"8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C GB","132":"M"},L:{"132":"q"},M:{"132":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"2":"F","132":"BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"132":"HC"},S:{"1":"IC"}},B:7,C:"KeyboardEvent.which"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/lazyload.js b/themes/piratecare/node_modules/caniuse-lite/data/features/lazyload.js new file mode 100644 index 0000000..217a3ed --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/lazyload.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J","2":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"1":"B","2":"A"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Resource Hints: Lazyload"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/let.js b/themes/piratecare/node_modules/caniuse-lite/data/features/let.js new file mode 100644 index 0000000..582df85 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/let.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","2052":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","194":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J","322":"P Q R S T U V W X Y Z a b c d e AB g h i j k","516":"l m n o p M r s"},E:{"1":"7 9 B C K fB","2":"F O H D G E WB RB YB ZB aB bB","1028":"A PB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","322":"L N I J P Q R S T U V W X","516":"Y Z a b c d e AB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB","1028":"uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","516":"F"},Q:{"2":"GC"},R:{"516":"HC"},S:{"1":"IC"}},B:6,C:"let"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-icon-png.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-icon-png.js new file mode 100644 index 0000000..56dd2ba --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-icon-png.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J","129":"q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"129":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"257":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"129":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","513":"7 9 E B C gB hB iB jB GB lB"},G:{"1026":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1026":"3B"},I:{"1":"OB F 4B 5B 6B 7B CB","513":"QB 8B 9B"},J:{"1":"D","1026":"A"},K:{"1026":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1026":"A B"},O:{"257":"AC"},P:{"1":"BC CC DC EC FC PB","513":"F"},Q:{"129":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"PNG favicons"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-icon-svg.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-icon-svg.js new file mode 100644 index 0000000..0e38699 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-icon-svg.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","16":"q"},C:{"2":"kB OB eB dB","260":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k","1025":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","3073":"sB UB VB"},E:{"2":"F O H D G WB RB YB ZB aB","516":"7 9 E A B C K bB PB fB"},F:{"1":"o p M r s t u v w x","2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n y z gB hB iB jB GB lB"},G:{"130":"G RB mB CB oB pB qB rB","516":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"130":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","130":"A"},K:{"130":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"130":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1025":"IC"}},B:1,C:"SVG favicons"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js new file mode 100644 index 0000000..61ea308 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G nB","132":"E"},B:{"1":"C K f L N I J q"},C:{"2":"kB OB","260":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"16":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Resource Hints: dns-prefetch"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js new file mode 100644 index 0000000..82f7c37 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"8 BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"FC PB","2":"F BC CC DC EC"},Q:{"16":"GC"},R:{"16":"HC"},S:{"2":"IC"}},B:1,C:"Resource Hints: modulepreload"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-preconnect.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-preconnect.js new file mode 100644 index 0000000..45bce69 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-preconnect.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f","260":"L N I J"},C:{"1":"0 1 2 3 4 5 6 8 k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i eB dB","129":"j"},D:{"1":"0 1 2 3 4 5 6 8 M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"16":"8"},N:{"2":"A B"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Resource Hints: preconnect"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-prefetch.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-prefetch.js new file mode 100644 index 0000000..bb9b3b6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-prefetch.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"F QB 8B 9B","2":"OB 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Resource Hints: prefetch"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-preload.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-preload.js new file mode 100644 index 0000000..6d3815b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-preload.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N","1028":"I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB","132":"0","578":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t"},E:{"1":"7 9 C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB","322":"B"},F:{"1":"0 1 2 3 4 5 6 h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB","322":"wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"578":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"Resource Hints: preload"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-prerender.js b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-prerender.js new file mode 100644 index 0000000..28644cf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/link-rel-prerender.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"1":"B","2":"A"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"Resource Hints: prerender"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/loading-lazy-attr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/loading-lazy-attr.js new file mode 100644 index 0000000..92fa1ef --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/loading-lazy-attr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","194":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","194":"cB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"6","2":"0 1 2 3 4 5 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Lazy loading via attribute for images & iframes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/localecompare.js b/themes/piratecare/node_modules/caniuse-lite/data/features/localecompare.js new file mode 100644 index 0000000..4e777c9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/localecompare.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","16":"nB","132":"H D G E A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","132":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T"},E:{"1":"7 9 A B C K PB fB","132":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"7 E B C gB hB iB jB GB lB","132":"9"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","132":"G RB mB CB oB pB qB rB SB tB"},H:{"132":"3B"},I:{"1":"QB 8B 9B","132":"OB F 4B 5B 6B 7B CB"},J:{"132":"D A"},K:{"1":"M","16":"7 A B C GB","132":"9"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","132":"A"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","132":"F"},Q:{"132":"GC"},R:{"1":"HC"},S:{"4":"IC"}},B:6,C:"localeCompare()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/magnetometer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/magnetometer.js new file mode 100644 index 0000000..848424c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/magnetometer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"2 3 4 5 6 EB NB DB BB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"194":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"Magnetometer"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/matchesselector.js b/themes/piratecare/node_modules/caniuse-lite/data/features/matchesselector.js new file mode 100644 index 0000000..544a99b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/matchesselector.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","36":"E A B"},B:{"1":"L N I J q","36":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB","36":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d dB"},D:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","36":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d"},E:{"1":"7 9 G E A B C K aB bB PB fB","2":"F WB RB","36":"O H D YB ZB"},F:{"1":"0 1 2 3 4 5 6 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB","36":"9 C L N I J P Q GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB","36":"mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB","2":"4B","36":"OB F 5B 6B 7B CB 8B 9B"},J:{"36":"D A"},K:{"1":"M","2":"A B","36":"7 9 C GB"},L:{"1":"q"},M:{"1":"8"},N:{"36":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","36":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"matches() DOM method"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/matchmedia.js b/themes/piratecare/node_modules/caniuse-lite/data/features/matchmedia.js new file mode 100644 index 0000000..b16f42e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/matchmedia.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB"},D:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"matchMedia"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mathml.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mathml.js new file mode 100644 index 0000000..d297f14 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mathml.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"E A B nB","8":"H D G"},B:{"2":"C K f L N I J","8":"q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","129":"kB OB eB dB"},D:{"1":"U","8":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K PB fB","260":"F O H D G E WB RB YB ZB aB bB"},F:{"2":"E","4":"7 9 B C gB hB iB jB GB lB","8":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","8":"RB mB CB"},H:{"8":"3B"},I:{"8":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","8":"D"},K:{"8":"7 9 A B C M GB"},L:{"8":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"4":"AC"},P:{"8":"F BC CC DC EC FC PB"},Q:{"8":"GC"},R:{"8":"HC"},S:{"1":"IC"}},B:2,C:"MathML"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/maxlength.js b/themes/piratecare/node_modules/caniuse-lite/data/features/maxlength.js new file mode 100644 index 0000000..7de7565 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/maxlength.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","16":"nB","900":"H D G E"},B:{"1":"q","1025":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","900":"kB OB eB dB","1025":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"O WB","900":"F RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"E","132":"7 9 B C gB hB iB jB GB lB"},G:{"1":"mB CB oB pB qB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB","2052":"G rB"},H:{"132":"3B"},I:{"1":"OB F 6B 7B CB 8B 9B","16":"4B 5B","4097":"QB"},J:{"1":"D A"},K:{"132":"7 9 A B C GB","4100":"M"},L:{"4097":"q"},M:{"4097":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"4097":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1025":"IC"}},B:1,C:"maxlength attribute for input and textarea elements"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/media-attribute.js b/themes/piratecare/node_modules/caniuse-lite/data/features/media-attribute.js new file mode 100644 index 0000000..8c44efc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/media-attribute.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J","16":"q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d","2":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","16":"sB UB VB"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F O WB RB"},F:{"1":"7 9 B C L N I J P Q R S T U hB iB jB GB lB","2":"0 1 2 3 4 5 6 E V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"16":"3B"},I:{"1":"F QB 7B CB 8B 9B","16":"OB 4B 5B 6B"},J:{"16":"D A"},K:{"1":"9 C M","16":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Media attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/media-fragments.js b/themes/piratecare/node_modules/caniuse-lite/data/features/media-fragments.js new file mode 100644 index 0000000..6b4a950 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/media-fragments.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","132":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d eB dB","132":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I","132":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O WB RB YB","132":"7 9 H D G E A B C K ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","132":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"RB mB CB oB pB qB","132":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","132":"QB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"132":"q"},M:{"132":"8"},N:{"132":"A B"},O:{"2":"AC"},P:{"2":"F BC","132":"CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"132":"IC"}},B:2,C:"Media Fragments"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/media-session-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/media-session-api.js new file mode 100644 index 0000000..7b50528 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/media-session-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB","16":"fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Media Session API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js new file mode 100644 index 0000000..b4748cc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m eB dB","260":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"4 5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","324":"0 1 2 3 v w x y z EB NB"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","132":"7 9 B C K fB"},F:{"1":"0 1 2 3 4 5 6 s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB","324":"g h i j k l m n o p M r"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"260":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"1":"EC FC PB","2":"F","132":"BC CC DC"},Q:{"132":"GC"},R:{"2":"HC"},S:{"260":"IC"}},B:5,C:"Media Capture from DOM Elements API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mediarecorder.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mediarecorder.js new file mode 100644 index 0000000..b43d429 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mediarecorder.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M","194":"r s"},E:{"1":"fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB","322":"9 K"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d gB hB iB jB GB lB","194":"e AB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB","578":"yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:5,C:"MediaRecorder API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mediasource.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mediasource.js new file mode 100644 index 0000000..1c1d124 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mediasource.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","260":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB","194":"V W X Y Z a b c d e AB g h i j k l"},D:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N","33":"T U V W X Y Z a","66":"I J P Q R S"},E:{"1":"7 9 G E A B C K bB PB fB","2":"F O H D WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB","1028":"0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 9B","2":"OB F 4B 5B 6B 7B CB 8B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"514":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Media Source Extensions"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/menu.js b/themes/piratecare/node_modules/caniuse-lite/data/features/menu.js new file mode 100644 index 0000000..a744346 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/menu.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","2114":"q"},C:{"2":"kB OB F O H D eB dB","132":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k","322":"s t u v","578":"l m n o p M r","2114":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e gB hB iB jB GB lB","322":"AB g h i","2114":"0 1 2 3 4 5 6 j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1156":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2114":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Context menu item (menuitem element)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/meta-theme-color.js b/themes/piratecare/node_modules/caniuse-lite/data/features/meta-theme-color.js new file mode 100644 index 0000000..ac7c403 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/meta-theme-color.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB","132":"LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"CC DC EC FC PB","2":"F","16":"BC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"theme-color Meta Tag"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/meter.js b/themes/piratecare/node_modules/caniuse-lite/data/features/meter.js new file mode 100644 index 0000000..ca0fe3e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/meter.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L eB dB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E gB hB iB jB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"meter element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/midi.js b/themes/piratecare/node_modules/caniuse-lite/data/features/midi.js new file mode 100644 index 0000000..c42e35c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/midi.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"Web MIDI API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/minmaxwh.js b/themes/piratecare/node_modules/caniuse-lite/data/features/minmaxwh.js new file mode 100644 index 0000000..eb514d0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/minmaxwh.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","8":"H nB","129":"D","257":"G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"CSS min/max-width/height"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mp3.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mp3.js new file mode 100644 index 0000000..294009e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mp3.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","132":"F O H D G E A B C K f L N I J P Q R eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","2":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"MP3 audio format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mpeg-dash.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mpeg-dash.js new file mode 100644 index 0000000..3dd5f3d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mpeg-dash.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J","2":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","386":"R S"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mpeg4.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mpeg4.js new file mode 100644 index 0000000..be28898 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mpeg4.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q eB dB","4":"R S T U V W X Y Z a b c d e"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","2":"WB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 8B 9B","4":"OB F 4B 5B 7B CB","132":"6B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"260":"8"},N:{"1":"A B"},O:{"4":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"MPEG-4/H.264 video format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/multibackgrounds.js b/themes/piratecare/node_modules/caniuse-lite/data/features/multibackgrounds.js new file mode 100644 index 0000000..009220f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/multibackgrounds.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 Multiple backgrounds"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/multicolumn.js b/themes/piratecare/node_modules/caniuse-lite/data/features/multicolumn.js new file mode 100644 index 0000000..cda721b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/multicolumn.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J","516":"q"},C:{"132":"0 1 2 3 4 5 6 w x y z EB NB","164":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB","516":"8 DB BB FB HB IB JB KB LB MB"},D:{"420":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","516":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 A B C K PB fB","132":"E bB","164":"D G aB","420":"F O H WB RB YB ZB"},F:{"1":"7 9 C GB lB","2":"E B gB hB iB jB","420":"L N I J P Q R S T U V W X Y Z a b c d e AB g","516":"0 1 2 3 4 5 6 h i j k l m n o p M r s t u v w x y z"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","132":"SB tB","164":"G qB rB","420":"RB mB CB oB pB"},H:{"1":"3B"},I:{"420":"OB F 4B 5B 6B 7B CB 8B 9B","516":"QB"},J:{"420":"D A"},K:{"1":"7 9 C GB","2":"A B","132":"M"},L:{"516":"q"},M:{"132":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","420":"F"},Q:{"132":"GC"},R:{"132":"HC"},S:{"164":"IC"}},B:4,C:"CSS3 Multiple column layout"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mutation-events.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mutation-events.js new file mode 100644 index 0000000..55f8c2d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mutation-events.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","260":"E A B"},B:{"132":"q","260":"C K f L N I J"},C:{"2":"kB OB F O eB dB","260":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"16":"F O H D G E A B C K f","132":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"16":"WB RB","132":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"1":"9 C lB","2":"E gB hB iB jB","16":"7 B GB","132":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"16":"RB mB","132":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"4B 5B","132":"OB F QB 6B 7B CB 8B 9B"},J:{"132":"D A"},K:{"1":"9 C","2":"A","16":"7 B GB","132":"M"},L:{"132":"q"},M:{"260":"8"},N:{"260":"A B"},O:{"132":"AC"},P:{"132":"F BC CC DC EC FC PB"},Q:{"132":"GC"},R:{"132":"HC"},S:{"260":"IC"}},B:5,C:"Mutation events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/mutationobserver.js b/themes/piratecare/node_modules/caniuse-lite/data/features/mutationobserver.js new file mode 100644 index 0000000..8198263 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/mutationobserver.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G nB","8":"E A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K eB dB"},D:{"1":"0 1 2 3 4 5 6 8 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I","33":"J P Q R S T U V W"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","33":"H"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","33":"pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB 4B 5B 6B","8":"F 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","8":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Mutation Observer"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/namevalue-storage.js b/themes/piratecare/node_modules/caniuse-lite/data/features/namevalue-storage.js new file mode 100644 index 0000000..5c8b992 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/namevalue-storage.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","2":"nB","8":"H D"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","4":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Web Storage - name/value pairs"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/native-filesystem-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/native-filesystem-api.js new file mode 100644 index 0000000..03f6764 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/native-filesystem-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB","194":"QB XB q sB UB VB","450":"TB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"194":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Native Filesystem API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/nav-timing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/nav-timing.js new file mode 100644 index 0000000..f18e1e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/nav-timing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H eB dB"},D:{"1":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O","33":"H D G E A B C"},E:{"1":"7 9 G E A B C K bB PB fB","2":"F O H D WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"F QB 7B CB 8B 9B","2":"OB 4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"Navigation Timing API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/navigator-language.js b/themes/piratecare/node_modules/caniuse-lite/data/features/navigator-language.js new file mode 100644 index 0000000..86c86ae --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/navigator-language.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b eB dB"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"16":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"16":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"1":"IC"}},B:2,C:"Navigator Language API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/netinfo.js b/themes/piratecare/node_modules/caniuse-lite/data/features/netinfo.js new file mode 100644 index 0000000..613849a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/netinfo.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","1028":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","1028":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r gB hB iB jB GB lB","1028":"0 1 2 3 4 5 6 s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"4B 8B 9B","132":"OB F 5B 6B 7B CB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","516":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"EC FC PB","132":"F","516":"BC CC DC"},Q:{"2":"GC"},R:{"516":"HC"},S:{"260":"IC"}},B:7,C:"Network Information API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/node-contains.js b/themes/piratecare/node_modules/caniuse-lite/data/features/node-contains.js new file mode 100644 index 0000000..2450a38 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/node-contains.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"nB","644":"E A B","2308":"H D G"},B:{"1":"K f L N I J q","16":"C"},C:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G eB dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","16":"F O H WB RB","1668":"YB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"7 E B C gB hB iB jB GB","132":"lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB pB"},H:{"16":"3B"},I:{"1":"QB 8B 9B","16":"OB 4B 5B 6B","1668":"F 7B CB"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Node.contains()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/node-parentelement.js b/themes/piratecare/node_modules/caniuse-lite/data/features/node-parentelement.js new file mode 100644 index 0000000..646a7bc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/node-parentelement.js @@ -0,0 +1 @@ +module.exports={A:{A:{"16":"nB","132":"E A B","260":"H D G"},B:{"1":"K f L N I J q","16":"C"},C:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G eB dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"7 E B gB hB iB jB GB","132":"9 C lB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB"},H:{"16":"3B"},I:{"1":"F QB 7B CB 8B 9B","16":"OB 4B 5B 6B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Node.parentElement"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/notifications.js b/themes/piratecare/node_modules/caniuse-lite/data/features/notifications.js new file mode 100644 index 0000000..73c2af1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/notifications.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB"},D:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F","36":"O H D G E A B C K f L N I J P Q R"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","36":"QB 8B 9B"},J:{"1":"A","2":"D"},K:{"2":"7 9 A B C GB","36":"M"},L:{"513":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"36":"F","258":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"258":"HC"},S:{"1":"IC"}},B:1,C:"Web Notifications"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/object-entries.js b/themes/piratecare/node_modules/caniuse-lite/data/features/object-entries.js new file mode 100644 index 0000000..6eebaba --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/object-entries.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB"},D:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","16":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:6,C:"Object.entries"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/object-fit.js b/themes/piratecare/node_modules/caniuse-lite/data/features/object-fit.js new file mode 100644 index 0000000..97b9f67 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/object-fit.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L","260":"N I J"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a"},E:{"1":"7 9 A B C K PB fB","2":"F O H D WB RB YB ZB","132":"G E aB bB"},F:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E L N I J gB hB iB","33":"7 9 B C jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB","132":"G rB SB tB"},H:{"33":"3B"},I:{"1":"QB 9B","2":"OB F 4B 5B 6B 7B CB 8B"},J:{"2":"D A"},K:{"1":"M","2":"A","33":"7 9 B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 object-fit/object-position"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/object-observe.js b/themes/piratecare/node_modules/caniuse-lite/data/features/object-observe.js new file mode 100644 index 0000000..165ed36 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/object-observe.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"g h i j k l m n o p M r s t","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"T U V W X Y Z a b c d e AB g","2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"F","2":"BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:7,C:"Object.observe data binding"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/object-values.js b/themes/piratecare/node_modules/caniuse-lite/data/features/object-values.js new file mode 100644 index 0000000..c836bb8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/object-values.js @@ -0,0 +1 @@ +module.exports={A:{A:{"8":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB"},D:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x"},E:{"1":"7 9 B C K PB fB","8":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 l m n o p M r s t u v w x y z","8":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","8":"G RB mB CB oB pB qB rB SB tB uB"},H:{"8":"3B"},I:{"1":"QB","8":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"8":"D A"},K:{"1":"M","8":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","8":"F BC"},Q:{"1":"GC"},R:{"8":"HC"},S:{"1":"IC"}},B:6,C:"Object.values method"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/objectrtc.js b/themes/piratecare/node_modules/caniuse-lite/data/features/objectrtc.js new file mode 100644 index 0000000..7f35a81 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/objectrtc.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J","2":"C q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","130":"A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/offline-apps.js b/themes/piratecare/node_modules/caniuse-lite/data/features/offline-apps.js new file mode 100644 index 0000000..76ab503 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/offline-apps.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"E nB","8":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","4":"OB","8":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","8":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB","8":"hB iB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"Offline web applications"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/offscreencanvas.js b/themes/piratecare/node_modules/caniuse-lite/data/features/offscreencanvas.js new file mode 100644 index 0000000..73bf825 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/offscreencanvas.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n eB dB","194":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","322":"2 3 4 5 6 8 EB NB DB BB FB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o gB hB iB jB GB lB","322":"0 1 2 3 4 5 p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"194":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"PB","2":"F BC CC DC EC FC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"194":"IC"}},B:1,C:"OffscreenCanvas"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ogg-vorbis.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ogg-vorbis.js new file mode 100644 index 0000000..66560d0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ogg-vorbis.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"A","2":"D"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Ogg Vorbis audio format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ogv.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ogv.js new file mode 100644 index 0000000..3b4bcfc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ogv.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","8":"E A B"},B:{"1":"I J q","8":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"8":"A B"},O:{"1":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:6,C:"Ogg/Theora video format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ol-reversed.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ol-reversed.js new file mode 100644 index 0000000..26d2b30 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ol-reversed.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L","16":"N I J P"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","16":"H"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","16":"C"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Reversed attribute of ordered lists"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/once-event-listener.js b/themes/piratecare/node_modules/caniuse-lite/data/features/once-event-listener.js new file mode 100644 index 0000000..9044733 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/once-event-listener.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t eB dB"},D:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"\"once\" event listener option"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/online-status.js b/themes/piratecare/node_modules/caniuse-lite/data/features/online-status.js new file mode 100644 index 0000000..ee797c1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/online-status.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D nB","260":"G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB","516":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},D:{"1":"0 1 2 3 4 5 6 8 f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB","4":"9"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"A","132":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Online/offline status"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/opus.js b/themes/piratecare/node_modules/caniuse-lite/data/features/opus.js new file mode 100644 index 0000000..976f8e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/opus.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","132":"7 9 B C K fB"},F:{"1":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB","132":"wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Opus"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/orientation-sensor.js b/themes/piratecare/node_modules/caniuse-lite/data/features/orientation-sensor.js new file mode 100644 index 0000000..0cc100e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/orientation-sensor.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","194":"2 3 4 5 6 EB NB DB BB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"Orientation Sensor"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/outline.js b/themes/piratecare/node_modules/caniuse-lite/data/features/outline.js new file mode 100644 index 0000000..f43dcb5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/outline.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","260":"G","388":"E A B"},B:{"1":"L N I J q","388":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","129":"9","260":"7 E B gB hB iB jB GB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"9 C M","260":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"388":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS outline properties"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/pad-start-end.js b/themes/piratecare/node_modules/caniuse-lite/data/features/pad-start-end.js new file mode 100644 index 0000000..7e57413 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/pad-start-end.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C K f"},C:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB"},D:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/page-transition-events.js b/themes/piratecare/node_modules/caniuse-lite/data/features/page-transition-events.js new file mode 100644 index 0000000..2bba31e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/page-transition-events.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"PageTransitionEvent"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/pagevisibility.js b/themes/piratecare/node_modules/caniuse-lite/data/features/pagevisibility.js new file mode 100644 index 0000000..2d3f338 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/pagevisibility.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E eB dB","33":"A B C K f L N I"},D:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K","33":"f L N I J P Q R S T U V W X Y Z a b c"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O H WB RB YB"},F:{"1":"0 1 2 3 4 5 6 9 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB","33":"L N I J P"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB","33":"8B 9B"},J:{"1":"A","2":"D"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","33":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"Page Visibility"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/passive-event-listener.js b/themes/piratecare/node_modules/caniuse-lite/data/features/passive-event-listener.js new file mode 100644 index 0000000..911ea2b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/passive-event-listener.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s eB dB"},D:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"Passive event listeners"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/passwordrules.js b/themes/piratecare/node_modules/caniuse-lite/data/features/passwordrules.js new file mode 100644 index 0000000..9952808 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/passwordrules.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","16":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB eB dB","16":"LB MB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","16":"sB UB VB"},E:{"1":"9 C K","2":"7 F O H D G E A B WB RB YB ZB aB bB PB","16":"fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w gB hB iB jB GB lB","16":"0 1 2 3 4 5 6 x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","16":"QB"},J:{"2":"D","16":"A"},K:{"2":"7 9 A B C GB","16":"M"},L:{"16":"q"},M:{"16":"8"},N:{"2":"A","16":"B"},O:{"16":"AC"},P:{"2":"F BC CC","16":"DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"2":"IC"}},B:1,C:"Password Rules"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/path2d.js b/themes/piratecare/node_modules/caniuse-lite/data/features/path2d.js new file mode 100644 index 0000000..e8cf8e3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/path2d.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K","132":"f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB","132":"b c d e AB g h i j k l m n o p M r"},D:{"1":"8 HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB","132":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D WB RB YB ZB","132":"G E aB"},F:{"1":"0 1 2 3 4 5 6 z","2":"7 9 E B C L N I J P Q R S gB hB iB jB GB lB","132":"T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB","16":"G","132":"rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","2":"D"},K:{"2":"7 9 A B C GB","132":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"1":"PB","132":"F BC CC DC EC FC"},Q:{"132":"GC"},R:{"132":"HC"},S:{"1":"IC"}},B:1,C:"Path2D"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/payment-request.js b/themes/piratecare/node_modules/caniuse-lite/data/features/payment-request.js new file mode 100644 index 0000000..1952dff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/payment-request.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K","322":"f","8196":"L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y eB dB","4162":"0 1 2 3 4 5 6 z EB NB DB","16452":"8 BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w","194":"0 1 2 x y z","1090":"3 EB","8196":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"9 K fB","2":"F O H D G E WB RB YB ZB aB bB","514":"A B PB","8196":"7 C"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j gB hB iB jB GB lB","194":"k l m n o p M r","8196":"0 1 2 3 4 5 6 s t u v w x y z"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB","514":"uB vB wB","8196":"xB yB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2052":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","8196":"BC CC DC EC FC PB"},Q:{"194":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:4,C:"Payment Request API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/permissions-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/permissions-api.js new file mode 100644 index 0000000..5d99d88 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/permissions-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p eB dB"},D:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:7,C:"Permissions API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/picture-in-picture.js b/themes/piratecare/node_modules/caniuse-lite/data/features/picture-in-picture.js new file mode 100644 index 0000000..4aa2935 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/picture-in-picture.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB eB dB","132":"KB LB MB","1090":"FB","1412":"JB","1668":"8 HB IB"},D:{"1":"IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB","2114":"HB"},E:{"1":"fB","2":"F O H D G E WB RB YB ZB aB bB","4100":"7 9 A B C K PB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g gB hB iB jB GB lB","8196":"0 1 2 3 4 5 6 h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB","4100":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"16388":"q"},M:{"16388":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Picture-in-Picture"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/picture.js b/themes/piratecare/node_modules/caniuse-lite/data/features/picture.js new file mode 100644 index 0000000..498357b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/picture.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d eB dB","578":"e AB g h"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g","194":"h"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB","322":"U"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Picture element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ping.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ping.js new file mode 100644 index 0000000..8085ea9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ping.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"2":"kB","194":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"194":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"194":"IC"}},B:1,C:"Ping attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/png-alpha.js b/themes/piratecare/node_modules/caniuse-lite/data/features/png-alpha.js new file mode 100644 index 0000000..4bae5d9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/png-alpha.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"D G E A B","2":"nB","8":"H"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"PNG alpha transparency"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/pointer-events.js b/themes/piratecare/node_modules/caniuse-lite/data/features/pointer-events.js new file mode 100644 index 0000000..c1016ef --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/pointer-events.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"CSS pointer-events (for HTML)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/pointer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/pointer.js new file mode 100644 index 0000000..a393ce5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/pointer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E nB","164":"A"},B:{"1":"C K f L N I J q"},C:{"1":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB","8":"H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k","328":"0 1 2 l m n o p M r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R","8":"S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","584":"w x y"},E:{"1":"K fB","2":"F O H WB RB YB","8":"7 D G E A B C ZB aB bB PB","1096":"9"},F:{"1":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","8":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i","584":"j k l"},G:{"1":"1B 2B","8":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB","6148":"0B"},H:{"2":"3B"},I:{"1":"QB","8":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"8":"D A"},K:{"1":"M","2":"A","8":"7 9 B C GB"},L:{"1":"q"},M:{"328":"8"},N:{"1":"B","36":"A"},O:{"8":"AC"},P:{"1":"CC DC EC FC PB","2":"BC","8":"F"},Q:{"584":"GC"},R:{"2":"HC"},S:{"328":"IC"}},B:2,C:"Pointer events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/pointerlock.js b/themes/piratecare/node_modules/caniuse-lite/data/features/pointerlock.js new file mode 100644 index 0000000..fd1712f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/pointerlock.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K eB dB","33":"f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},D:{"1":"0 1 2 3 4 5 6 8 h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L","33":"S T U V W X Y Z a b c d e AB g","66":"N I J P Q R"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R S T"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:2,C:"Pointer Lock API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/prefers-color-scheme.js b/themes/piratecare/node_modules/caniuse-lite/data/features/prefers-color-scheme.js new file mode 100644 index 0000000..4d53a32 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/prefers-color-scheme.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"8 FB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB eB dB"},D:{"1":"QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB"},E:{"1":"9 K fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"1":"4 5 6","2":"0 1 2 3 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"prefers-color-scheme media query"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js b/themes/piratecare/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js new file mode 100644 index 0000000..40a3561 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB","2":"0 1 2 3 4 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB eB dB"},D:{"1":"MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"6","2":"0 1 2 3 4 5 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"prefers-reduced-motion media query"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/private-class-fields.js b/themes/piratecare/node_modules/caniuse-lite/data/features/private-class-fields.js new file mode 100644 index 0000000..09f0117 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/private-class-fields.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Private class fields"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js b/themes/piratecare/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js new file mode 100644 index 0000000..02841b5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Public class fields"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/progress.js b/themes/piratecare/node_modules/caniuse-lite/data/features/progress.js new file mode 100644 index 0000000..eeb5277 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/progress.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O eB dB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E gB hB iB jB"},G:{"2":"RB mB CB oB pB","132":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"progress element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/promise-finally.js b/themes/piratecare/node_modules/caniuse-lite/data/features/promise-finally.js new file mode 100644 index 0000000..2b1d299 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/promise-finally.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"J q","2":"C K f L N I"},C:{"1":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","2":"0 1 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB"},D:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"EC FC PB","2":"F BC CC DC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Promise.prototype.finally"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/promises.js b/themes/piratecare/node_modules/caniuse-lite/data/features/promises.js new file mode 100644 index 0000000..882903d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/promises.js @@ -0,0 +1 @@ +module.exports={A:{A:{"8":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","4":"X Y","8":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W eB dB"},D:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"c","8":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b"},E:{"1":"7 9 G E A B C K aB bB PB fB","8":"F O H D WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","4":"P","8":"7 9 E B C L N I J gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","8":"RB mB CB oB pB qB"},H:{"8":"3B"},I:{"1":"QB 9B","8":"OB F 4B 5B 6B 7B CB 8B"},J:{"8":"D A"},K:{"1":"M","8":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Promises"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/proximity.js b/themes/piratecare/node_modules/caniuse-lite/data/features/proximity.js new file mode 100644 index 0000000..efa6f5c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/proximity.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:4,C:"Proximity API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/proxy.js b/themes/piratecare/node_modules/caniuse-lite/data/features/proxy.js new file mode 100644 index 0000000..08e67aa --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/proxy.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J i j k l m n o p M r s","66":"P Q R S T U V W X Y Z a b c d e AB g h"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C V W X Y Z a b c d e AB gB hB iB jB GB lB","66":"L N I J P Q R S T U"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:6,C:"Proxy object"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/public-class-fields.js b/themes/piratecare/node_modules/caniuse-lite/data/features/public-class-fields.js new file mode 100644 index 0000000..b94e5f7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/public-class-fields.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Public class fields"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/publickeypinning.js b/themes/piratecare/node_modules/caniuse-lite/data/features/publickeypinning.js new file mode 100644 index 0000000..adcee97 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/publickeypinning.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e eB dB"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P gB hB iB jB GB lB","4":"T","16":"Q R S U"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Public Key Pinning"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/push-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/push-api.js new file mode 100644 index 0000000..771fcf7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/push-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J","2":"C K f L N","257":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n eB dB","257":"0 1 2 4 5 6 8 o M r s t u v x y z EB NB DB BB FB HB IB JB KB LB MB","1281":"3 p w"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n","257":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","388":"o p M r s t"},E:{"2":"F O H D G E WB RB YB ZB aB","514":"7 9 A B C K bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g gB hB iB jB GB lB","16":"h i j k l","257":"0 1 2 3 4 5 6 m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"2":"HC"},S:{"257":"IC"}},B:5,C:"Push API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/queryselector.js b/themes/piratecare/node_modules/caniuse-lite/data/features/queryselector.js new file mode 100644 index 0000000..048efbe --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/queryselector.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"nB","8":"H D","132":"G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","8":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","8":"E gB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"querySelector/querySelectorAll"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/readonly-attr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/readonly-attr.js new file mode 100644 index 0000000..262a8c7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/readonly-attr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","16":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","16":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"E gB","132":"7 9 B C hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB pB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"M","132":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"257":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"readonly attribute of input and textarea elements"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/referrer-policy.js b/themes/piratecare/node_modules/caniuse-lite/data/features/referrer-policy.js new file mode 100644 index 0000000..9ed50d8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/referrer-policy.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","132":"B"},B:{"1":"q","132":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q","260":"0 1 2 3 R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},E:{"1":"7 9 C K fB","2":"F O H D WB RB YB ZB","132":"G E A B aB bB PB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"RB mB CB oB pB qB","132":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Referrer Policy"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/registerprotocolhandler.js b/themes/piratecare/node_modules/caniuse-lite/data/features/registerprotocolhandler.js new file mode 100644 index 0000000..ea0c07c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/registerprotocolhandler.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","129":"q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB"},D:{"2":"F O H D G E A B C","129":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 E B gB hB iB jB GB","129":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","129":"A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"Custom protocol handling"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/rel-noopener.js b/themes/piratecare/node_modules/caniuse-lite/data/features/rel-noopener.js new file mode 100644 index 0000000..b5cbf6b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/rel-noopener.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:1,C:"rel=noopener"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/rel-noreferrer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/rel-noreferrer.js new file mode 100644 index 0000000..2bd4f0b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/rel-noreferrer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","132":"B"},B:{"1":"K f L N I J q","16":"C"},C:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB"},D:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Link type \"noreferrer\""}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/rellist.js b/themes/piratecare/node_modules/caniuse-lite/data/features/rellist.js new file mode 100644 index 0000000..950b94e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/rellist.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"J q","2":"C K f L N","132":"I"},C:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z eB dB"},D:{"1":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t","132":"0 1 2 3 4 5 6 u v w x y z EB NB"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g gB hB iB jB GB lB","132":"h i j k l m n o p M r s t u v"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"1":"FC PB","2":"F","132":"BC CC DC EC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:1,C:"relList (DOMTokenList)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/rem.js b/themes/piratecare/node_modules/caniuse-lite/data/features/rem.js new file mode 100644 index 0000000..c422ca9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/rem.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G nB","132":"E A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 E B gB hB iB jB GB"},G:{"1":"G mB CB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB","260":"oB"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"9 C M","2":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"rem (root em) units"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/replace-all.js b/themes/piratecare/node_modules/caniuse-lite/data/features/replace-all.js new file mode 100644 index 0000000..9fa8578 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/replace-all.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"KB LB MB","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"fB","2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB","16":"tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"16":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"16":"HC"},S:{"16":"IC"}},B:7,C:"String.prototype.replaceAll()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/requestanimationframe.js b/themes/piratecare/node_modules/caniuse-lite/data/features/requestanimationframe.js new file mode 100644 index 0000000..ed66d2b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/requestanimationframe.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","33":"B C K f L N I J P Q R S","164":"F O H D G E A"},D:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E","33":"S T","164":"J P Q R","420":"A B C K f L N I"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","33":"H"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","33":"pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"requestAnimationFrame"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/requestidlecallback.js b/themes/piratecare/node_modules/caniuse-lite/data/features/requestidlecallback.js new file mode 100644 index 0000000..b7a7b1f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/requestidlecallback.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB","194":"x y"},D:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:5,C:"requestIdleCallback"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/resizeobserver.js b/themes/piratecare/node_modules/caniuse-lite/data/features/resizeobserver.js new file mode 100644 index 0000000..8144ea1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/resizeobserver.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB eB dB"},D:{"1":"6 8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x","194":"0 1 2 3 4 5 y z EB NB"},E:{"1":"fB","2":"7 9 F O H D G E A B C WB RB YB ZB aB bB PB","66":"K"},F:{"1":"0 1 2 3 4 5 6 w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k gB hB iB jB GB lB","194":"l m n o p M r s t u v"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"FC PB","2":"F BC CC DC EC"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Resize Observer"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/resource-timing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/resource-timing.js new file mode 100644 index 0000000..9fe62e9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/resource-timing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB","194":"b c d e"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U"},E:{"1":"7 9 C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB","260":"B"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Resource Timing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/rest-parameters.js b/themes/piratecare/node_modules/caniuse-lite/data/features/rest-parameters.js new file mode 100644 index 0000000..741fc59 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/rest-parameters.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n","194":"o p M"},E:{"1":"7 9 A B C K PB fB","2":"F O H D G E WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a gB hB iB jB GB lB","194":"b c d"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Rest parameters"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/rtcpeerconnection.js b/themes/piratecare/node_modules/caniuse-lite/data/features/rtcpeerconnection.js new file mode 100644 index 0000000..cb12370 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/rtcpeerconnection.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f","516":"L N I J"},C:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB","33":"S T U V W X Y Z a b c d e AB g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S","33":"T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 n o p M r s t u v w x y z","2":"7 9 E B C L N I gB hB iB jB GB lB","33":"J P Q R S T U V W X Y Z a b c d e AB g h i j k l m"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","130":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"1":"IC"}},B:5,C:"WebRTC Peer-to-peer connections"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ruby.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ruby.js new file mode 100644 index 0000000..a30b14d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ruby.js @@ -0,0 +1 @@ +module.exports={A:{A:{"4":"H D G E A B nB"},B:{"4":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h eB dB"},D:{"4":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F"},E:{"4":"7 9 O H D G E A B C K YB ZB aB bB PB fB","8":"F WB RB"},F:{"4":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","8":"7 9 E B C gB hB iB jB GB lB"},G:{"4":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","8":"RB mB CB"},H:{"8":"3B"},I:{"4":"OB F QB 7B CB 8B 9B","8":"4B 5B 6B"},J:{"4":"A","8":"D"},K:{"4":"M","8":"7 9 A B C GB"},L:{"4":"q"},M:{"1":"8"},N:{"4":"A B"},O:{"4":"AC"},P:{"4":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"4":"HC"},S:{"1":"IC"}},B:1,C:"Ruby annotation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/run-in.js b/themes/piratecare/node_modules/caniuse-lite/data/features/run-in.js new file mode 100644 index 0000000..96b1b1e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/run-in.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","2":"H D nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b","2":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"O H YB","2":"7 9 D G E A B C K aB bB PB fB","16":"ZB","129":"F WB RB"},F:{"1":"7 9 E B C L N I J gB hB iB jB GB lB","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"mB CB oB pB qB","2":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","129":"RB"},H:{"1":"3B"},I:{"1":"OB F 4B 5B 6B 7B CB 8B","2":"QB 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C GB","2":"M"},L:{"2":"q"},M:{"2":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"display: run-in"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js b/themes/piratecare/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js new file mode 100644 index 0000000..8618c83 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","388":"B"},B:{"1":"J q","2":"C K f L","129":"N I"},C:{"1":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB","2":"0 1 2 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","513":"sB UB VB"},E:{"2":"7 F O H D G E A B WB RB YB ZB aB bB PB","2052":"fB","3076":"9 C K"},F:{"1":"0 1 2 3 4 5 6 j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i gB hB iB jB GB lB"},G:{"1":"0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB","2052":"yB zB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:6,C:"'SameSite' cookie attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/screen-orientation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/screen-orientation.js new file mode 100644 index 0000000..871a1d5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/screen-orientation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","164":"B"},B:{"1":"q","36":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I eB dB","36":"J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A","36":"B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"Screen Orientation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/script-async.js b/themes/piratecare/node_modules/caniuse-lite/data/features/script-async.js new file mode 100644 index 0000000..5221e47 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/script-async.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB","132":"O"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"async attribute for external scripts"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/script-defer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/script-defer.js new file mode 100644 index 0000000..373883f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/script-defer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","132":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","257":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"F WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"defer attribute for external scripts"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/scrollintoview.js b/themes/piratecare/node_modules/caniuse-lite/data/features/scrollintoview.js new file mode 100644 index 0000000..c68fb9c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/scrollintoview.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","132":"G E A B"},B:{"1":"q","132":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","132":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"0 1 2 3 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},E:{"2":"F O WB RB","132":"7 9 H D G E A B C K YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 s t u v w x y z","2":"E gB hB iB jB","16":"7 B GB","132":"9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r lB"},G:{"16":"RB mB CB","132":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"16":"4B 5B","132":"OB F QB 6B 7B CB 8B 9B"},J:{"132":"D A"},K:{"132":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"132":"AC"},P:{"132":"F BC CC DC EC FC PB"},Q:{"132":"GC"},R:{"132":"HC"},S:{"1":"IC"}},B:5,C:"scrollIntoView"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js b/themes/piratecare/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js new file mode 100644 index 0000000..04d84d0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sdch.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sdch.js new file mode 100644 index 0000000..4323ff1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sdch.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/selection-api.js b/themes/piratecare/node_modules/caniuse-lite/data/features/selection-api.js new file mode 100644 index 0000000..9a5d10f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/selection-api.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","16":"nB","260":"H D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 w x y z EB NB DB BB FB HB IB JB KB LB MB","132":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m eB dB","2180":"n o p M r s t u v"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","132":"7 9 E B C gB hB iB jB GB lB"},G:{"16":"CB","132":"RB mB","516":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 8B 9B","16":"OB F 4B 5B 6B 7B","1025":"CB"},J:{"1":"A","16":"D"},K:{"1":"M","16":"7 A B C GB","132":"9"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","16":"A"},O:{"1025":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2180":"IC"}},B:5,C:"Selection API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/server-timing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/server-timing.js new file mode 100644 index 0000000..ebf8a1e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/server-timing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB","2":"0 1 2 3 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB eB dB"},D:{"1":"8 DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","196":"3 4 5 NB","324":"6"},E:{"2":"7 F O H D G E A B C WB RB YB ZB aB bB PB","516":"9 K fB"},F:{"1":"0 1 2 3 4 5 6 w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Server Timing"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/serviceworkers.js b/themes/piratecare/node_modules/caniuse-lite/data/features/serviceworkers.js new file mode 100644 index 0000000..a72812c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/serviceworkers.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f","322":"L N"},C:{"1":"0 1 2 4 5 6 8 o M r s t u v x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB","194":"d e AB g h i j k l m n","513":"3 p w"},D:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j","4":"k l m n o"},E:{"1":"7 9 C K fB","2":"F O H D G E A B WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W gB hB iB jB GB lB","4":"X Y Z a b"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","4":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","4":"M"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"4":"HC"},S:{"2":"IC"}},B:5,C:"Service Workers"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/setimmediate.js b/themes/piratecare/node_modules/caniuse-lite/data/features/setimmediate.js new file mode 100644 index 0000000..0f3e465 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/setimmediate.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J","2":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"1":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sha-2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sha-2.js new file mode 100644 index 0000000..9cd78ee --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sha-2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","2":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"1":"OB F QB 5B 6B 7B CB 8B 9B","260":"4B"},J:{"1":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"16":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"SHA-2 SSL certificates"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/shadowdom.js b/themes/piratecare/node_modules/caniuse-lite/data/features/shadowdom.js new file mode 100644 index 0000000..8621771 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/shadowdom.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y NB DB BB FB HB IB JB KB LB MB eB dB","66":"0 1 2 3 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB"},D:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q","2":"F O H D G E A B C K f L N I J P Q R S T U sB UB VB","33":"V W X Y Z a b c d e"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB","33":"8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","33":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/shadowdomv1.js b/themes/piratecare/node_modules/caniuse-lite/data/features/shadowdomv1.js new file mode 100644 index 0000000..5db237d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/shadowdomv1.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB","2":"0 1 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB","322":"2","578":"3 4 EB NB"},D:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w"},E:{"2":"F O H D G E WB RB YB ZB aB bB","132":"7 9 A B C K PB fB"},F:{"1":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB","132":"uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","2":"F","4":"BC"},Q:{"1":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Shadow DOM (V1)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sharedarraybuffer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sharedarraybuffer.js new file mode 100644 index 0000000..36557af --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sharedarraybuffer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L","194":"N I J"},C:{"2":"0 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB","194":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"8 HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB","194":"3 4 5 6 NB DB BB FB"},E:{"2":"F O H D G E A WB RB YB ZB aB bB","194":"7 9 B C K PB fB"},F:{"1":"6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M gB hB iB jB GB lB","194":"0 1 2 3 4 5 r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB","194":"vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"194":"q"},M:{"194":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Shared Array Buffer"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sharedworkers.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sharedworkers.js new file mode 100644 index 0000000..9f7190f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sharedworkers.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"O H YB","2":"7 9 F D G E A B C K WB RB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB hB iB"},G:{"1":"oB pB","2":"G RB mB CB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C GB","2":"M","16":"A"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"F","2":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:1,C:"Shared Web Workers"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sni.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sni.js new file mode 100644 index 0000000..47baa9c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sni.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H nB","132":"D G"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Server Name Indication"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/spdy.js b/themes/piratecare/node_modules/caniuse-lite/data/features/spdy.js new file mode 100644 index 0000000..01e0d99 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/spdy.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E A nB"},B:{"2":"C K f L N I J q"},C:{"1":"K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","2":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 G E A B C bB PB","2":"F O H D WB RB YB ZB aB","129":"9 K fB"},F:{"1":"9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j m o","2":"0 1 2 3 4 5 6 7 E B C k l n p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB","2":"RB mB CB oB pB qB","257":"zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F 7B CB 8B 9B","2":"QB 4B 5B 6B"},J:{"2":"D A"},K:{"1":"9","2":"7 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"1":"B","2":"A"},O:{"2":"AC"},P:{"1":"F","2":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"16":"HC"},S:{"1":"IC"}},B:7,C:"SPDY protocol"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/speech-recognition.js b/themes/piratecare/node_modules/caniuse-lite/data/features/speech-recognition.js new file mode 100644 index 0000000..5af21b9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/speech-recognition.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","164":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB","322":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U","164":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W gB hB iB jB GB lB","1026":"0 1 2 3 4 5 6 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"164":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"164":"F BC CC DC EC FC PB"},Q:{"164":"GC"},R:{"164":"HC"},S:{"322":"IC"}},B:7,C:"Speech Recognition API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/speech-synthesis.js b/themes/piratecare/node_modules/caniuse-lite/data/features/speech-synthesis.js new file mode 100644 index 0000000..a88ea01 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/speech-synthesis.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J","2":"C K","257":"q"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a eB dB","194":"b c d e AB g h i j k l m n o p M r s"},D:{"1":"d e AB g h i j k l m n o p M r s t u v w x y","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c","257":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W gB hB iB jB GB lB","257":"6"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:7,C:"Speech Synthesis API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/spellcheck-attribute.js b/themes/piratecare/node_modules/caniuse-lite/data/features/spellcheck-attribute.js new file mode 100644 index 0000000..f28163b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/spellcheck-attribute.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"4":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"4":"3B"},I:{"4":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","4":"D"},K:{"4":"7 9 A B C M GB"},L:{"4":"q"},M:{"4":"8"},N:{"4":"A B"},O:{"4":"AC"},P:{"4":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"4":"HC"},S:{"2":"IC"}},B:1,C:"Spellcheck attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sql-storage.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sql-storage.js new file mode 100644 index 0000000..fb8cfef --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sql-storage.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C WB RB YB ZB aB bB PB","2":"K fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB","2":"0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:7,C:"Web SQL Database"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/srcset.js b/themes/piratecare/node_modules/caniuse-lite/data/features/srcset.js new file mode 100644 index 0000000..f9178af --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/srcset.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","260":"C","514":"K f L"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b eB dB","194":"c d e AB g h"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d","260":"e AB g h"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D WB RB YB ZB","260":"G aB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q gB hB iB jB GB lB","260":"R S T U"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB","260":"G rB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Srcset and sizes attributes"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/stopimmediatepropagation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/stopimmediatepropagation.js new file mode 100644 index 0000000..73da365 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/stopimmediatepropagation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E eB dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","16":"C"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB"},H:{"16":"3B"},I:{"1":"F QB 7B CB 8B 9B","16":"OB 4B 5B 6B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"1":"BC CC DC EC FC PB","16":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Event.stopImmediatePropagation()"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/stream.js b/themes/piratecare/node_modules/caniuse-lite/data/features/stream.js new file mode 100644 index 0000000..76cdf16 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/stream.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N eB dB","129":"g h i j k l","420":"I J P Q R S T U V W X Y Z a b c d e AB"},D:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q","420":"R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 k l m n o p M r s t u v w x y z","2":"7 E B L N I gB hB iB jB GB lB","420":"9 C J P Q R S T U V W X Y Z a b c d e AB g h i j"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB","513":"wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","420":"A"},K:{"1":"M","2":"7 A B GB","420":"9 C"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"CC DC EC FC PB","420":"F BC"},Q:{"420":"GC"},R:{"420":"HC"},S:{"2":"IC"}},B:4,C:"getUserMedia/Stream API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/streams.js b/themes/piratecare/node_modules/caniuse-lite/data/features/streams.js new file mode 100644 index 0000000..5be86b4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/streams.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","130":"B"},B:{"16":"C K","260":"f L","1028":"q","5124":"N I J"},C:{"2":"0 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z eB dB","6148":"8 DB BB FB HB IB JB KB LB MB","6722":"1 2 3 4 5 6 EB NB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v","260":"0 1 2 w x y z","1028":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E WB RB YB ZB aB bB","3076":"7 9 A B C K PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i gB hB iB jB GB lB","260":"j k l m n o p","1028":"0 1 2 3 4 5 6 M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB","16":"uB","1028":"vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","260":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","1028":"M"},L:{"1028":"q"},M:{"2626":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC","1028":"DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"Streams"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/stricttransportsecurity.js b/themes/piratecare/node_modules/caniuse-lite/data/features/stricttransportsecurity.js new file mode 100644 index 0000000..00c48ff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/stricttransportsecurity.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A nB","129":"B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Strict Transport Security"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/style-scoped.js b/themes/piratecare/node_modules/caniuse-lite/data/features/style-scoped.js new file mode 100644 index 0000000..52b762e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/style-scoped.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y","2":"4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q NB DB BB FB HB IB JB KB LB MB eB dB","322":"0 1 2 3 z EB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","194":"Q R S T U V W X Y Z a b c d e AB g"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"322":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:7,C:"Scoped CSS"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/subresource-integrity.js b/themes/piratecare/node_modules/caniuse-lite/data/features/subresource-integrity.js new file mode 100644 index 0000000..7b5f49b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/subresource-integrity.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m eB dB"},D:{"1":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB","194":"wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"Subresource Integrity"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-css.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-css.js new file mode 100644 index 0000000..c4d65da --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-css.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"N I J q","516":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","260":"F O H D G E A B C K f L N I J P Q R S T"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F"},E:{"1":"7 9 O H D G E A B C K YB ZB aB bB PB fB","2":"WB","132":"F RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","132":"RB mB"},H:{"260":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"M","260":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"SVG in CSS backgrounds"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-filters.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-filters.js new file mode 100644 index 0000000..f5f24bc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-filters.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F","4":"O H D"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"SVG filters"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-fonts.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-fonts.js new file mode 100644 index 0000000..c1b803b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-fonts.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"E A B nB","8":"H D G"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h","2":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","130":"i j k l m n o p M r s t u"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","2":"WB"},F:{"1":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB","2":"0 1 2 3 4 5 6 h i j k l m n o p M r s t u v w x y z","130":"V W X Y Z a b c d e AB g"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"258":"3B"},I:{"1":"OB F 7B CB 8B 9B","2":"QB 4B 5B 6B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"130":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"F","130":"BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"130":"HC"},S:{"2":"IC"}},B:2,C:"SVG fonts"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-fragment.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-fragment.js new file mode 100644 index 0000000..ed79ecc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-fragment.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","260":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB","132":"g h i j k l m n o p M r s t"},E:{"1":"7 9 C K fB","2":"F O H D E A B WB RB YB ZB bB PB","132":"G aB"},F:{"1":"0 1 2 3 4 5 6 9 h i j k l m n o p M r s t u v w x y z","2":"L N I J P Q R S","4":"7 B C hB iB jB GB lB","16":"E gB","132":"T U V W X Y Z a b c d e AB g"},G:{"1":"xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB SB tB uB vB wB","132":"G rB"},H:{"1":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D","132":"A"},K:{"1":"9 M","4":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","132":"F"},Q:{"132":"GC"},R:{"132":"HC"},S:{"1":"IC"}},B:4,C:"SVG fragment identifiers"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-html.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-html.js new file mode 100644 index 0000000..fa70cae --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-html.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","388":"E A B"},B:{"4":"q","260":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB","4":"OB"},D:{"4":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"WB RB","4":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"4":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"4":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","4":"QB 8B 9B"},J:{"1":"A","2":"D"},K:{"4":"7 9 A B C M GB"},L:{"4":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"4":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"4":"HC"},S:{"1":"IC"}},B:2,C:"SVG effects for HTML"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-html5.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-html5.js new file mode 100644 index 0000000..3046448 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-html5.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G","129":"E A B"},B:{"1":"I J q","129":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","8":"F O H"},E:{"1":"7 9 E A B C K bB PB fB","8":"F O WB RB","129":"H D G YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 B jB GB","8":"E gB hB iB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","8":"RB mB CB","129":"G oB pB qB rB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"4B 5B 6B","129":"OB F 7B CB"},J:{"1":"A","129":"D"},K:{"1":"9 C M","8":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"129":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Inline SVG in HTML5"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-img.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-img.js new file mode 100644 index 0000000..2c597b2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-img.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X"},E:{"1":"7 9 E A B C K bB PB fB","2":"WB","4":"RB","132":"F O H D G YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","132":"G RB mB CB oB pB qB rB"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"4B 5B 6B","132":"OB F 7B CB"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"SVG in HTML img element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg-smil.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-smil.js new file mode 100644 index 0000000..193a5ed --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg-smil.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G E A B"},B:{"1":"q","8":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","8":"WB RB","132":"F O YB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","132":"RB mB CB oB"},H:{"2":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"SVG SMIL animation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/svg.js b/themes/piratecare/node_modules/caniuse-lite/data/features/svg.js new file mode 100644 index 0000000..0f9c790 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/svg.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G","772":"E A B"},B:{"1":"q","513":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","4":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","4":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"QB 8B 9B","2":"4B 5B 6B","132":"OB F 7B CB"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"257":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"SVG (basic support)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/sxg.js b/themes/piratecare/node_modules/caniuse-lite/data/features/sxg.js new file mode 100644 index 0000000..2297117 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/sxg.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB","132":"JB KB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/symbols.js b/themes/piratecare/node_modules/caniuse-lite/data/features/symbols.js new file mode 100644 index 0000000..229767a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/symbols.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h"},E:{"1":"7 9 E A B C K WB RB YB ZB aB bB PB fB","2":"F O H D G"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"1":"IC"}},B:6,C:"Symbols"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/tabindex-attr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/tabindex-attr.js new file mode 100644 index 0000000..9dd32bc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/tabindex-attr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"D G E A B","16":"H nB"},B:{"1":"C K f L N I J q"},C:{"16":"kB OB eB dB","129":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f"},E:{"16":"F O WB RB","257":"7 9 H D G E A B C K YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"769":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"16":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"16":"D A"},K:{"16":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"16":"A B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"16":"HC"},S:{"129":"IC"}},B:1,C:"tabindex global attribute"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/template-literals.js b/themes/piratecare/node_modules/caniuse-lite/data/features/template-literals.js new file mode 100644 index 0000000..bf314a3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/template-literals.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"K f L N I J q","16":"C"},C:{"1":"0 1 2 3 4 5 6 8 e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d eB dB"},D:{"1":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},E:{"1":"7 9 A B K bB PB fB","2":"F O H D G E WB RB YB ZB aB","129":"C"},F:{"1":"0 1 2 3 4 5 6 Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y gB hB iB jB GB lB"},G:{"1":"SB tB uB vB wB xB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB","129":"yB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/template.js b/themes/piratecare/node_modules/caniuse-lite/data/features/template.js new file mode 100644 index 0000000..2953a50 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/template.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"L N I J q","2":"C","388":"K f"},C:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R eB dB"},D:{"1":"0 1 2 3 4 5 6 8 AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V","132":"W X Y Z a b c d e"},E:{"1":"7 9 E A B C K bB PB fB","2":"F O H D WB RB YB","388":"G aB","514":"ZB"},F:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","132":"L N I J P Q R"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB","388":"G rB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"HTML templates"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/testfeat.js b/themes/piratecare/node_modules/caniuse-lite/data/features/testfeat.js new file mode 100644 index 0000000..7a39200 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/testfeat.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G A B nB","16":"E"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","16":"F O"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"B C"},E:{"2":"F H WB RB YB","16":"7 9 O D G E A B C K ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"7"},G:{"2":"RB mB CB oB pB","16":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 7B CB 8B 9B","16":"6B"},J:{"2":"A","16":"D"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Test feature - updated"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/text-decoration.js b/themes/piratecare/node_modules/caniuse-lite/data/features/text-decoration.js new file mode 100644 index 0000000..2faf43d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/text-decoration.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","2052":"q"},C:{"2":"kB OB F O eB dB","1028":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","1060":"H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V","226":"0 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2052":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D WB RB YB ZB","772":"9 K fB","804":"7 G E A B C bB PB","1316":"aB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e gB hB iB jB GB lB","226":"AB g h i j k l m n","2052":"0 1 2 3 4 5 6 o p M r s t u v w x y z"},G:{"2":"RB mB CB oB pB qB","292":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","2052":"M"},L:{"2052":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2052":"AC"},P:{"2":"F BC CC","2052":"DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1028":"IC"}},B:4,C:"text-decoration styling"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/text-emphasis.js b/themes/piratecare/node_modules/caniuse-lite/data/features/text-emphasis.js new file mode 100644 index 0000000..5df66ab --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/text-emphasis.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","164":"q"},C:{"1":"0 1 2 3 4 5 6 8 M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o eB dB","322":"p"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U","164":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 G E A B C K aB bB PB fB","2":"F O H WB RB YB","164":"D ZB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","164":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","164":"QB 8B 9B"},J:{"2":"D","164":"A"},K:{"2":"7 9 A B C GB","164":"M"},L:{"164":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"164":"AC"},P:{"164":"F BC CC DC EC FC PB"},Q:{"164":"GC"},R:{"164":"HC"},S:{"1":"IC"}},B:4,C:"text-emphasis styling"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/text-overflow.js b/themes/piratecare/node_modules/caniuse-lite/data/features/text-overflow.js new file mode 100644 index 0000000..45fc150 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/text-overflow.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B","2":"nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","8":"kB OB F O H eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","33":"E gB hB iB jB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"9 M","33":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"CSS3 Text-overflow"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/text-size-adjust.js b/themes/piratecare/node_modules/caniuse-lite/data/features/text-size-adjust.js new file mode 100644 index 0000000..e7694f4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/text-size-adjust.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","33":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x","258":"W"},E:{"2":"7 9 F O H D G E A B C K WB RB ZB aB bB PB fB","258":"YB"},F:{"1":"0 1 2 3 4 5 6 n p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m o gB hB iB jB GB lB"},G:{"2":"RB mB CB","33":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"33":"8"},N:{"161":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"CSS text-size-adjust"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/text-stroke.js b/themes/piratecare/node_modules/caniuse-lite/data/features/text-stroke.js new file mode 100644 index 0000000..16e5a05 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/text-stroke.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f","33":"q","161":"L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r eB dB","161":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","450":"s"},D:{"33":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"33":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C gB hB iB jB GB lB","33":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"33":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","36":"RB"},H:{"2":"3B"},I:{"2":"OB","33":"F QB 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"2":"7 9 A B C GB","33":"M"},L:{"33":"q"},M:{"161":"8"},N:{"2":"A B"},O:{"33":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"33":"HC"},S:{"161":"IC"}},B:7,C:"CSS text-stroke and text-fill"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/text-underline-offset.js b/themes/piratecare/node_modules/caniuse-lite/data/features/text-underline-offset.js new file mode 100644 index 0000000..94e249f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/text-underline-offset.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"1":"IB JB KB LB MB","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB eB dB","130":"HB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"9 K fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"text-underline-offset"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/textcontent.js b/themes/piratecare/node_modules/caniuse-lite/data/features/textcontent.js new file mode 100644 index 0000000..6cb56bf --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/textcontent.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","16":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"1":"G mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Node.textContent"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/textencoder.js b/themes/piratecare/node_modules/caniuse-lite/data/features/textencoder.js new file mode 100644 index 0000000..7d4aa7d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/textencoder.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J eB dB","132":"P"},D:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"TextEncoder & TextDecoder"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-1.js b/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-1.js new file mode 100644 index 0000000..bd4a38c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-1.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D nB","66":"G E A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S eB dB","66":"T"},D:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R"},E:{"1":"7 9 D G E A B C K aB bB PB","2":"F O H WB RB YB ZB fB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B C gB hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","2":"D"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","66":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"TLS 1.1"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-2.js new file mode 100644 index 0000000..d4bbf9e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D nB","66":"G E A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T eB dB","66":"U V W"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 9 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E L N gB","66":"7 B C hB iB jB GB lB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","2":"D"},K:{"1":"9 M","2":"7 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","66":"A"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"TLS 1.2"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-3.js b/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-3.js new file mode 100644 index 0000000..edbf9ff --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/tls1-3.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"5 6 8 DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u eB dB","132":"3 4 NB","834":"0 1 2 v w x y z EB"},D:{"1":"IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x","1602":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB"},E:{"2":"7 F O H D G E A B C WB RB YB ZB aB bB PB","2052":"9 K fB"},F:{"1":"1 2 3 4 5 6","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB","1602":"0 y z"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:6,C:"TLS 1.3"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/token-binding.js b/themes/piratecare/node_modules/caniuse-lite/data/features/token-binding.js new file mode 100644 index 0000000..dfa556a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/token-binding.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f","194":"q","257":"L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB eB dB","16":"LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i","16":"0 1 j k l m n o p M r s t u v w x y z","194":"2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G WB RB YB ZB aB","16":"7 9 E A B C K bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB","16":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB","16":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"16":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","16":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","16":"M"},L:{"16":"q"},M:{"16":"8"},N:{"2":"A","16":"B"},O:{"16":"AC"},P:{"16":"F BC CC DC EC FC PB"},Q:{"16":"GC"},R:{"16":"HC"},S:{"2":"IC"}},B:6,C:"Token Binding"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/touch.js b/themes/piratecare/node_modules/caniuse-lite/data/features/touch.js new file mode 100644 index 0000000..7f93b1d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/touch.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","8":"A B"},B:{"1":"q","578":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","4":"F O H D G E A B C K f L N I","194":"V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v"},D:{"1":"0 1 2 3 4 5 6 8 S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A","260":"B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"2":"IC"}},B:2,C:"Touch events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/transforms2d.js b/themes/piratecare/node_modules/caniuse-lite/data/features/transforms2d.js new file mode 100644 index 0000000..a2645d2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/transforms2d.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G","129":"A B","161":"E"},B:{"1":"I J q","129":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","33":"F O H D G E A B C K f L eB dB"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"1":"7 9 E A B C K bB PB fB","33":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 9 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB","33":"7 B C L N I J P Q R S iB jB GB lB"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","33":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","33":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS3 2D Transforms"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/transforms3d.js b/themes/piratecare/node_modules/caniuse-lite/data/features/transforms3d.js new file mode 100644 index 0000000..473e62a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/transforms3d.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E eB dB","33":"A B C K f L"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B","33":"C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"2":"WB RB","33":"F O H D G YB ZB aB","257":"7 9 E A B C K bB PB fB"},F:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R S"},G:{"33":"G RB mB CB oB pB qB rB","257":"SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"4B 5B 6B","33":"OB F 7B CB 8B 9B"},J:{"33":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS3 3D Transforms"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/ttf.js b/themes/piratecare/node_modules/caniuse-lite/data/features/ttf.js new file mode 100644 index 0000000..cffc0d5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/ttf.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","132":"E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z hB iB jB GB lB","2":"E gB"},G:{"1":"G CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB"},H:{"2":"3B"},I:{"1":"OB F QB 5B 6B 7B CB 8B 9B","2":"4B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/typedarrays.js b/themes/piratecare/node_modules/caniuse-lite/data/features/typedarrays.js new file mode 100644 index 0000000..494fefd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/typedarrays.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"B","2":"H D G E nB","132":"A"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB","260":"YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 E B gB hB iB jB GB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB","260":"CB"},H:{"1":"3B"},I:{"1":"F QB 7B CB 8B 9B","2":"OB 4B 5B 6B"},J:{"1":"A","2":"D"},K:{"1":"9 C M","2":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Typed Arrays"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/u2f.js b/themes/piratecare/node_modules/caniuse-lite/data/features/u2f.js new file mode 100644 index 0000000..e9fd9ab --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/u2f.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","513":"q"},C:{"1":"8 FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB","322":"0 1 2 3 4 5 6 r s t u v w x y z EB NB DB BB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h","130":"i j k","513":"0 1 2 3 4 5 6 8 l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j l gB hB iB jB GB lB","513":"0 1 2 3 4 5 6 k m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"322":"IC"}},B:6,C:"FIDO U2F API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/unhandledrejection.js b/themes/piratecare/node_modules/caniuse-lite/data/features/unhandledrejection.js new file mode 100644 index 0000000..f922529 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/unhandledrejection.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB"},G:{"1":"xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB","16":"wB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js b/themes/piratecare/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js new file mode 100644 index 0000000..792e4cd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l eB dB"},D:{"1":"0 1 2 3 4 5 6 8 n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Upgrade Insecure Requests"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/url.js b/themes/piratecare/node_modules/caniuse-lite/data/features/url.js new file mode 100644 index 0000000..09f917e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/url.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V eB dB"},D:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S","130":"T U V W X Y Z a b"},E:{"1":"7 9 G E A B C K aB bB PB fB","2":"F O H WB RB YB ZB","130":"D"},F:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","130":"L N I J"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB","130":"qB"},H:{"2":"3B"},I:{"1":"QB 9B","2":"OB F 4B 5B 6B 7B CB","130":"8B"},J:{"2":"D","130":"A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"URL API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/urlsearchparams.js b/themes/piratecare/node_modules/caniuse-lite/data/features/urlsearchparams.js new file mode 100644 index 0000000..b68e8a7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/urlsearchparams.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB","132":"Z a b c d e AB g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s"},E:{"1":"7 9 B C K PB fB","2":"F O H D G E A WB RB YB ZB aB bB"},F:{"1":"0 1 2 3 4 5 6 g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB"},G:{"1":"vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","2":"F"},Q:{"2":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:1,C:"URLSearchParams"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/use-strict.js b/themes/piratecare/node_modules/caniuse-lite/data/features/use-strict.js new file mode 100644 index 0000000..adbff59 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/use-strict.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F WB RB","132":"O YB"},F:{"1":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","2":"7 E B gB hB iB jB GB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"1":"3B"},I:{"1":"OB F QB 7B CB 8B 9B","2":"4B 5B 6B"},J:{"1":"D A"},K:{"1":"9 C M GB","2":"7 A B"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"ECMAScript 5 Strict Mode"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/user-select-none.js b/themes/piratecare/node_modules/caniuse-lite/data/features/user-select-none.js new file mode 100644 index 0000000..e8784e6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/user-select-none.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","33":"A B"},B:{"1":"q","33":"C K f L N I J"},C:{"1":"HB IB JB KB LB MB","33":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","33":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x"},E:{"33":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","33":"L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k"},G:{"33":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","33":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"33":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"33":"8"},N:{"33":"A B"},O:{"2":"AC"},P:{"33":"F BC CC DC EC FC PB"},Q:{"33":"GC"},R:{"2":"HC"},S:{"33":"IC"}},B:5,C:"CSS user-select: none"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/user-timing.js b/themes/piratecare/node_modules/caniuse-lite/data/features/user-timing.js new file mode 100644 index 0000000..7f31263 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/user-timing.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h eB dB"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"User Timing API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/variable-fonts.js b/themes/piratecare/node_modules/caniuse-lite/data/features/variable-fonts.js new file mode 100644 index 0000000..368a597 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/variable-fonts.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"I J q","2":"C K f L N"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w eB dB","4609":"4 5 6 8 DB BB FB HB IB JB KB LB MB","4674":"NB","5698":"3","7490":"0 1 x y z","7746":"2 EB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","4097":"BB","4290":"3 EB NB","6148":"4 5 6 DB"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","4609":"7 9 B C K fB"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s gB hB iB jB GB lB","4097":"x","6148":"t u v w"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB","4097":"wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"4097":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC","4097":"EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"Variable fonts"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/vibration.js b/themes/piratecare/node_modules/caniuse-lite/data/features/vibration.js new file mode 100644 index 0000000..2579850 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/vibration.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A eB dB","33":"B C K f L"},D:{"1":"0 1 2 3 4 5 6 8 a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"Vibration API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/video.js b/themes/piratecare/node_modules/caniuse-lite/data/features/video.js new file mode 100644 index 0000000..1710f80 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/video.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","260":"F O H D G E A B C K f L N I J P eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"F O H D G E A YB ZB aB bB PB","2":"WB RB","513":"7 9 B C K fB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB","513":"wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","132":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Video element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/videotracks.js b/themes/piratecare/node_modules/caniuse-lite/data/features/videotracks.js new file mode 100644 index 0000000..6fa70df --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/videotracks.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J","322":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB","194":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o","322":"0 1 2 3 4 5 6 8 p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O H WB RB YB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b gB hB iB jB GB lB","322":"0 1 2 3 4 5 6 c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","322":"M"},L:{"322":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"194":"IC"}},B:1,C:"Video Tracks"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/viewport-units.js b/themes/piratecare/node_modules/caniuse-lite/data/features/viewport-units.js new file mode 100644 index 0000000..2aaaf78 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/viewport-units.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","132":"E","260":"A B"},B:{"1":"N I J q","260":"C K f L"},C:{"1":"0 1 2 3 4 5 6 8 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J eB dB"},D:{"1":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P","260":"Q R S T U V"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB","260":"H"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB","516":"qB","772":"pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"260":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/wai-aria.js b/themes/piratecare/node_modules/caniuse-lite/data/features/wai-aria.js new file mode 100644 index 0000000..761aaba --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/wai-aria.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","4":"G E A B"},B:{"4":"C K f L N I J q"},C:{"4":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"4":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"WB RB","4":"7 9 F O H D G E A B C K YB ZB aB bB PB fB"},F:{"2":"E","4":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"4":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"4":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB","4":"QB 8B 9B"},J:{"2":"D A"},K:{"4":"7 9 A B C M GB"},L:{"4":"q"},M:{"4":"8"},N:{"4":"A B"},O:{"2":"AC"},P:{"4":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"4":"HC"},S:{"4":"IC"}},B:2,C:"WAI-ARIA Accessibility features"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/wasm.js b/themes/piratecare/node_modules/caniuse-lite/data/features/wasm.js new file mode 100644 index 0000000..7bcb0b5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/wasm.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"N I J q","2":"C K f","578":"L"},C:{"1":"0 1 2 3 4 5 6 8 x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M eB dB","194":"r s t u v","1025":"w"},D:{"1":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u","322":"0 v w x y z"},E:{"1":"7 9 B C K fB","2":"F O H D G E A WB RB YB ZB aB bB PB"},F:{"1":"0 1 2 3 4 5 6 o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h gB hB iB jB GB lB","322":"i j k l m n"},G:{"1":"wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"322":"GC"},R:{"2":"HC"},S:{"194":"IC"}},B:6,C:"WebAssembly"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/wav.js b/themes/piratecare/node_modules/caniuse-lite/data/features/wav.js new file mode 100644 index 0000000..16212c0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/wav.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z iB jB GB lB","2":"E gB hB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","16":"A"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"Wav audio format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/wbr-element.js b/themes/piratecare/node_modules/caniuse-lite/data/features/wbr-element.js new file mode 100644 index 0000000..2315cb0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/wbr-element.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D nB","2":"G E A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K RB YB ZB aB bB PB fB","16":"WB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","16":"E"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB"},H:{"1":"3B"},I:{"1":"OB F QB 6B 7B CB 8B 9B","16":"4B 5B"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"wbr (word break opportunity) element"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/web-animation.js b/themes/piratecare/node_modules/caniuse-lite/data/features/web-animation.js new file mode 100644 index 0000000..52e2f13 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/web-animation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","260":"q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c eB dB","260":"3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB","516":"0 1 2 r s t u v w x y z","580":"d e AB g h i j k l m n o p M"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB","132":"g h i","260":"0 1 2 3 4 5 6 8 j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"F O H D G E A WB RB YB ZB aB bB PB","4":"fB","1090":"7 9 B C K"},F:{"2":"7 9 E B C L N I J P Q R S gB hB iB jB GB lB","132":"T U V","260":"0 1 2 3 4 5 6 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB","4":"zB 0B 1B 2B","1090":"wB xB yB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","260":"QB"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","260":"M"},L:{"260":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"260":"AC"},P:{"260":"F BC CC DC EC FC PB"},Q:{"260":"GC"},R:{"260":"HC"},S:{"516":"IC"}},B:5,C:"Web Animations API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/web-app-manifest.js b/themes/piratecare/node_modules/caniuse-lite/data/features/web-app-manifest.js new file mode 100644 index 0000000..417830d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/web-app-manifest.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N","514":"I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i","132":"0 1 2 3 4 5 6 j k l m n o p M r s t u v w x y z EB NB DB BB","260":"8 FB HB IB JB KB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB","132":"xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","132":"M"},L:{"1":"q"},M:{"132":"8"},N:{"2":"A B"},O:{"132":"AC"},P:{"132":"F BC CC DC EC FC PB"},Q:{"132":"GC"},R:{"132":"HC"},S:{"2":"IC"}},B:5,C:"Web App Manifest"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/web-bluetooth.js b/themes/piratecare/node_modules/caniuse-lite/data/features/web-bluetooth.js new file mode 100644 index 0000000..0a87250 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/web-bluetooth.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","1025":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o","194":"p M r s t u v w","706":"x y z","1025":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB gB hB iB jB GB lB","450":"g h i j","706":"k l m","1025":"0 1 2 3 4 5 6 n o p M r s t u v w x y z"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B 9B","1025":"QB"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1025":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1":"CC DC EC FC PB","2":"F BC"},Q:{"706":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"Web Bluetooth"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/web-share.js b/themes/piratecare/node_modules/caniuse-lite/data/features/web-share.js new file mode 100644 index 0000000..83f3e05 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/web-share.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","258":"J P Q R S T U"},E:{"1":"9 K fB","2":"7 F O H D G E A B C WB RB YB aB bB PB","16":"ZB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB"},H:{"2":"3B"},I:{"2":"OB F 4B 5B 6B 7B CB 8B","514":"QB 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"514":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F","514":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"16":"HC"},S:{"2":"IC"}},B:7,C:"Web Share API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webauthn.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webauthn.js new file mode 100644 index 0000000..0f95e9b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webauthn.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"J q","2":"C","226":"K f L N I"},C:{"1":"3 4 5 6 8 NB DB BB FB HB IB JB KB LB MB","2":"0 1 2 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB eB dB"},D:{"1":"8 FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB"},E:{"1":"K fB","2":"7 F O H D G E A B C WB RB YB ZB aB bB PB","322":"9"},F:{"1":"0 1 2 3 4 5 6 y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x gB hB iB jB GB lB"},G:{"1":"2B","2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B","578":"1B"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:2,C:"Web Authentication API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webgl.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webgl.js new file mode 100644 index 0000000..a7bdd88 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webgl.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"nB","8":"H D G E A","129":"B"},B:{"1":"q","129":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","129":"F O H D G E A B C K f L N I J P Q R S T"},D:{"1":"0 1 2 3 4 5 6 8 d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D","129":"G E A B C K f L N I J P Q R S T U V W X Y Z a b c"},E:{"1":"7 9 G E A B C K bB PB fB","2":"F O WB RB","129":"H D YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","129":"9 C L N I J"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB qB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"1":"A","2":"D"},K:{"1":"9 C M","2":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A","129":"B"},O:{"129":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"129":"IC"}},B:6,C:"WebGL - 3D Canvas graphics"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webgl2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webgl2.js new file mode 100644 index 0000000..439dc0c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webgl2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U eB dB","194":"m n o","450":"V W X Y Z a b c d e AB g h i j k l","2242":"p M r s t u"},D:{"1":"0 1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m","578":"n o p M r s t u v w x y z"},E:{"2":"F O H D G E A WB RB YB ZB aB bB","1090":"7 9 B C K PB fB"},F:{"1":"0 1 2 3 4 5 6 n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB","1090":"yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"DC EC FC PB","2":"F BC CC"},Q:{"578":"GC"},R:{"2":"HC"},S:{"2242":"IC"}},B:6,C:"WebGL 2.0"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webhid.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webhid.js new file mode 100644 index 0000000..3079074 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webhid.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB","194":"TB q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"WebHID API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webm.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webm.js new file mode 100644 index 0000000..6016724 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webm.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G nB","8":"E A B"},B:{"1":"q","4":"f L N I J","8":"C K"},C:{"1":"0 1 2 3 4 5 6 8 Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","4":"F O H D G E A B C K f L N I J P Q R S T U V W X"},D:{"1":"0 1 2 3 4 5 6 8 V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O","4":"H D G E A B C K f L N I J P Q R S T U"},E:{"2":"WB","8":"7 F O H D G E A B C RB YB ZB aB bB PB","132":"9 K fB"},F:{"1":"0 1 2 3 4 5 6 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB iB","4":"7 9 B C L jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB","132":"zB 0B 1B 2B"},H:{"2":"3B"},I:{"1":"QB","2":"4B 5B","4":"OB F 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C GB","4":"M"},L:{"1":"q"},M:{"1":"8"},N:{"8":"A B"},O:{"1":"AC"},P:{"1":"BC CC DC EC FC PB","4":"F"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:6,C:"WebM video format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webp.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webp.js new file mode 100644 index 0000000..fe2978b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webp.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"J q","2":"C K f L N I"},C:{"1":"8 DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","8":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB"},D:{"1":"0 1 2 3 4 5 6 8 c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O","8":"H D G","132":"E A B C K f L N I J P Q R S","260":"T U V W X Y Z a b"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB iB","8":"B jB","132":"7 GB lB","260":"9 C L N I J"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"QB CB 8B 9B","2":"OB 4B 5B 6B","132":"F 7B"},J:{"2":"D A"},K:{"1":"7 9 C M GB","2":"A","132":"B"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"8":"IC"}},B:7,C:"WebP image format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/websockets.js b/themes/piratecare/node_modules/caniuse-lite/data/features/websockets.js new file mode 100644 index 0000000..366ad17 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/websockets.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB eB dB","132":"F O","292":"H D G E A"},D:{"1":"0 1 2 3 4 5 6 8 N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f","260":"L"},E:{"1":"7 9 D G E A B C K aB bB PB fB","2":"F WB RB","132":"O YB","260":"H ZB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB iB jB","132":"7 B C GB lB"},G:{"1":"G pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB","132":"CB oB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","129":"D"},K:{"1":"9 M","2":"A","132":"7 B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Web Sockets"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webusb.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webusb.js new file mode 100644 index 0000000..9cc1ddd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webusb.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"4 5 6 8 NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x","66":"0 1 2 3 y z EB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 s t u v w x y z","2":"7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k gB hB iB jB GB lB","66":"l m n o p M r"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"1":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:7,C:"WebUSB"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webvr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webvr.js new file mode 100644 index 0000000..d0ac8f0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webvr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f","322":"q","513":"L N I J"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x eB dB","129":"0 1 2 3 4 5 6 8 z EB NB DB BB FB HB IB JB KB LB MB","194":"y"},D:{"2":"0 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z sB UB VB","322":"1 2 3 4 5 6 8 EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"2049":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"1025":"F","1028":"BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"322":"HC"},S:{"2":"IC"}},B:7,C:"WebVR API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webvtt.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webvtt.js new file mode 100644 index 0000000..01f3416 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webvtt.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"2":"kB OB F O H D G E A B C K f L N I J P Q R S T eB dB","66":"U V W X Y Z a","129":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I"},E:{"1":"7 9 H D G E A B C K ZB aB bB PB fB","2":"F O WB RB YB"},F:{"1":"0 1 2 3 4 5 6 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB oB pB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","2":"D"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"B","2":"A"},O:{"2":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"129":"IC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webworkers.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webworkers.js new file mode 100644 index 0000000..0943c00 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webworkers.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","2":"nB","8":"H D G E"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","8":"kB OB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","8":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z jB GB lB","2":"E gB","8":"hB iB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"QB 4B 8B 9B","2":"OB F 5B 6B 7B CB"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","8":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Web Workers"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/webxr.js b/themes/piratecare/node_modules/caniuse-lite/data/features/webxr.js new file mode 100644 index 0000000..a9cbe43 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/webxr.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"2":"C K f L N I J","516":"q"},C:{"2":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"2":"0 1 2 3 4 5 6 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB","66":"8 BB FB HB IB JB KB LB MB cB QB XB","450":"TB","516":"q sB UB VB"},E:{"2":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"2":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"2":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"2":"3B"},I:{"2":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"2":"7 9 A B C M GB"},L:{"450":"q"},M:{"2":"8"},N:{"2":"A B"},O:{"2":"AC"},P:{"2":"F BC CC DC EC FC PB"},Q:{"2":"GC"},R:{"2":"HC"},S:{"2":"IC"}},B:5,C:"WebXR Device API"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/will-change.js b/themes/piratecare/node_modules/caniuse-lite/data/features/will-change.js new file mode 100644 index 0000000..a1a6fa3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/will-change.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"q","2":"C K f L N I J"},C:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y eB dB","194":"Z a b c d e AB"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"1":"7 9 A B C K bB PB fB","2":"F O H D G E WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S T gB hB iB jB GB lB"},G:{"1":"tB uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS will-change property"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/woff.js b/themes/piratecare/node_modules/caniuse-lite/data/features/woff.js new file mode 100644 index 0000000..1a7aa02 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/woff.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB dB","2":"kB OB eB"},D:{"1":"0 1 2 3 4 5 6 8 O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F"},E:{"1":"7 9 H D G E A B C K YB ZB aB bB PB fB","2":"F O WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z GB lB","2":"E B gB hB iB jB"},G:{"1":"G oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB"},H:{"2":"3B"},I:{"1":"QB 8B 9B","2":"OB 4B 5B 6B 7B CB","130":"F"},J:{"1":"D A"},K:{"1":"7 9 B C M GB","2":"A"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:2,C:"WOFF - Web Open Font Format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/woff2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/woff2.js new file mode 100644 index 0000000..a7b7cb9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/woff2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E A B nB"},B:{"1":"f L N I J q","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i eB dB"},D:{"1":"0 1 2 3 4 5 6 8 g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","2":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB"},E:{"1":"9 C K fB","2":"F O H D G E WB RB YB ZB aB bB","132":"7 A B PB"},F:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C L N I J P Q R S gB hB iB jB GB lB"},G:{"1":"uB vB wB xB yB zB 0B 1B 2B","2":"G RB mB CB oB pB qB rB SB tB"},H:{"2":"3B"},I:{"1":"QB","2":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"2":"D A"},K:{"1":"M","2":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"2":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/word-break.js b/themes/piratecare/node_modules/caniuse-lite/data/features/word-break.js new file mode 100644 index 0000000..c363e1e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/word-break.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"H D G E A B nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB F O H D G E A B C K f eB dB"},D:{"1":"0 1 2 3 4 5 6 8 o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n"},E:{"1":"7 9 E A B C K bB PB fB","4":"F O H D G WB RB YB ZB aB"},F:{"1":"0 1 2 3 4 5 6 b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 9 E B C gB hB iB jB GB lB","4":"L N I J P Q R S T U V W X Y Z a"},G:{"1":"SB tB uB vB wB xB yB zB 0B 1B 2B","4":"G RB mB CB oB pB qB rB"},H:{"2":"3B"},I:{"1":"QB","4":"OB F 4B 5B 6B 7B CB 8B 9B"},J:{"4":"D A"},K:{"2":"7 9 A B C GB","4":"M"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"4":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:5,C:"CSS3 word-break"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/wordwrap.js b/themes/piratecare/node_modules/caniuse-lite/data/features/wordwrap.js new file mode 100644 index 0000000..f5e5147 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/wordwrap.js @@ -0,0 +1 @@ +module.exports={A:{A:{"4":"H D G E A B nB"},B:{"1":"J q","4":"C K f L N I"},C:{"1":"0 1 2 3 4 5 6 8 t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","4":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s eB dB"},D:{"1":"0 1 2 3 4 5 6 8 T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","4":"F O H D G E A B C K f L N I J P Q R S"},E:{"1":"7 9 D G E A B C K ZB aB bB PB fB","4":"F O H WB RB YB"},F:{"1":"0 1 2 3 4 5 6 9 L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"E gB hB","4":"7 B C iB jB GB lB"},G:{"1":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","4":"RB mB CB oB pB"},H:{"4":"3B"},I:{"1":"QB 8B 9B","4":"OB F 4B 5B 6B 7B CB"},J:{"1":"A","4":"D"},K:{"1":"M","4":"7 9 A B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"4":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"4":"IC"}},B:5,C:"CSS3 Overflow-wrap"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/x-doc-messaging.js b/themes/piratecare/node_modules/caniuse-lite/data/features/x-doc-messaging.js new file mode 100644 index 0000000..a924ea7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/x-doc-messaging.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D nB","132":"G E","260":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB","2":"kB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K YB ZB aB bB PB fB","2":"WB RB"},F:{"1":"0 1 2 3 4 5 6 7 9 B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB","2":"E"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"4":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"Cross-document messaging"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/x-frame-options.js b/themes/piratecare/node_modules/caniuse-lite/data/features/x-frame-options.js new file mode 100644 index 0000000..7d2d655 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/x-frame-options.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"G E A B","2":"H D nB"},B:{"1":"C K f L N I J","4":"q"},C:{"1":"0 1 2 3 4 5 6 8 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB","4":"F O H D G E A B C K f L N I IB JB KB LB MB","16":"kB OB eB dB"},D:{"4":"0 1 2 3 4 5 6 8 W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H D G E A B C K f L N I J P Q R S T U V"},E:{"4":"7 9 H D G E A B C K YB ZB aB bB PB fB","16":"F O WB RB"},F:{"4":"0 1 2 3 4 5 6 9 C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z lB","16":"7 E B gB hB iB jB GB"},G:{"4":"G qB rB SB tB uB vB wB xB yB zB 0B 1B 2B","16":"RB mB CB oB pB"},H:{"2":"3B"},I:{"4":"F QB 7B CB 8B 9B","16":"OB 4B 5B 6B"},J:{"4":"D A"},K:{"4":"9 M","16":"7 A B C GB"},L:{"4":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"4":"AC"},P:{"4":"F BC CC DC EC FC PB"},Q:{"4":"GC"},R:{"4":"HC"},S:{"1":"IC"}},B:6,C:"X-Frame-Options HTTP header"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/xhr2.js b/themes/piratecare/node_modules/caniuse-lite/data/features/xhr2.js new file mode 100644 index 0000000..f86f72d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/xhr2.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"H D G E nB","132":"A B"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","2":"kB OB","260":"A B","388":"H D G E","900":"F O eB dB"},D:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","16":"F O H","132":"Z a","388":"D G E A B C K f L N I J P Q R S T U V W X Y"},E:{"1":"7 9 G E A B C K aB bB PB fB","2":"F WB RB","132":"D ZB","388":"O H YB"},F:{"1":"0 1 2 3 4 5 6 9 C J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","2":"7 E B gB hB iB jB GB lB","132":"L N I"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","2":"RB mB CB","132":"qB","388":"oB pB"},H:{"2":"3B"},I:{"1":"QB 9B","2":"4B 5B 6B","388":"8B","900":"OB F 7B CB"},J:{"132":"A","388":"D"},K:{"1":"9 C M","2":"7 A B GB"},L:{"1":"q"},M:{"1":"8"},N:{"132":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:1,C:"XMLHttpRequest advanced features"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/xhtml.js b/themes/piratecare/node_modules/caniuse-lite/data/features/xhtml.js new file mode 100644 index 0000000..59ef8c0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/xhtml.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"E A B","2":"H D G nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"1":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"1":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"1":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"1":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"1":"3B"},I:{"1":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"1":"D A"},K:{"1":"7 9 A B C M GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"2":"HC"},S:{"1":"IC"}},B:1,C:"XHTML served as application/xhtml+xml"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/xhtmlsmil.js b/themes/piratecare/node_modules/caniuse-lite/data/features/xhtmlsmil.js new file mode 100644 index 0000000..748e645 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/xhtmlsmil.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"E A B nB","4":"H D G"},B:{"2":"C K f L N I J","8":"q"},C:{"8":"0 1 2 3 4 5 6 8 kB OB F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB eB dB"},D:{"8":"0 1 2 3 4 5 6 8 F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB"},E:{"8":"7 9 F O H D G E A B C K WB RB YB ZB aB bB PB fB"},F:{"8":"0 1 2 3 4 5 6 7 9 E B C L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z gB hB iB jB GB lB"},G:{"8":"G RB mB CB oB pB qB rB SB tB uB vB wB xB yB zB 0B 1B 2B"},H:{"8":"3B"},I:{"8":"OB F QB 4B 5B 6B 7B CB 8B 9B"},J:{"8":"D A"},K:{"8":"7 9 A B C M GB"},L:{"8":"q"},M:{"8":"8"},N:{"2":"A B"},O:{"8":"AC"},P:{"8":"F BC CC DC EC FC PB"},Q:{"8":"GC"},R:{"8":"HC"},S:{"8":"IC"}},B:7,C:"XHTML+SMIL animation"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/features/xml-serializer.js b/themes/piratecare/node_modules/caniuse-lite/data/features/xml-serializer.js new file mode 100644 index 0000000..1d3a9b7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/features/xml-serializer.js @@ -0,0 +1 @@ +module.exports={A:{A:{"1":"A B","260":"H D G E nB"},B:{"1":"C K f L N I J q"},C:{"1":"0 1 2 3 4 5 6 8 C K f L N I J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB","132":"B","260":"kB OB F O H D eB dB","516":"G E A"},D:{"1":"0 1 2 3 4 5 6 8 b c d e AB g h i j k l m n o p M r s t u v w x y z EB NB DB BB FB HB IB JB KB LB MB cB QB XB TB q sB UB VB","132":"F O H D G E A B C K f L N I J P Q R S T U V W X Y Z a"},E:{"1":"7 9 G E A B C K aB bB PB fB","132":"F O H D WB RB YB ZB"},F:{"1":"0 1 2 3 4 5 6 J P Q R S T U V W X Y Z a b c d e AB g h i j k l m n o p M r s t u v w x y z","16":"E gB","132":"7 9 B C L N I hB iB jB GB lB"},G:{"1":"G rB SB tB uB vB wB xB yB zB 0B 1B 2B","132":"RB mB CB oB pB qB"},H:{"132":"3B"},I:{"1":"QB 8B 9B","132":"OB F 4B 5B 6B 7B CB"},J:{"132":"D A"},K:{"1":"M","16":"A","132":"7 9 B C GB"},L:{"1":"q"},M:{"1":"8"},N:{"1":"A B"},O:{"1":"AC"},P:{"1":"F BC CC DC EC FC PB"},Q:{"1":"GC"},R:{"1":"HC"},S:{"1":"IC"}},B:4,C:"DOM Parsing and Serialization"}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AD.js new file mode 100644 index 0000000..f3c2670 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AD.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.005754,"42":0,"43":0.005754,"44":0,"45":0,"46":0.005754,"47":0.005754,"48":0,"49":0.155358,"50":0.005754,"51":0.005754,"52":0.005754,"53":0.005754,"54":0.005754,"55":0.005754,"56":0.005754,"57":0.017262,"58":0.017262,"59":0.005754,"60":0.005754,"61":0.005754,"62":0.005754,"63":0.011508,"64":0,"65":0.23016,"66":0.005754,"67":0.011508,"68":0.005754,"69":0.005754,"70":0.092064,"71":0.017262,"72":0.02877,"73":0.339486,"74":0.080556,"75":0.37401,"76":0.05754,"77":0.235914,"78":10.44351,"79":7.25004,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005754,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.005754,"47":0,"48":0.017262,"49":0.005754,"50":0.005754,"51":0.005754,"52":0.023016,"53":0.005754,"54":0.005754,"55":0.005754,"56":0.011508,"57":0.005754,"58":0.005754,"59":0,"60":0.005754,"61":0,"62":0.005754,"63":0,"64":0,"65":0.166866,"66":0.017262,"67":0.005754,"68":0.109326,"69":0.034524,"70":0.955164,"71":2.79069,"72":0.011508,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.011508,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.005754,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005754},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005754,"9":0,"10":0.005754,"11":0.184128,"12":0.184128,"13":4.3155,_:"0","3.1":0,"3.2":0,"5.1":0.017262,"6.1":0.092064,"7.1":0,"9.1":0.034524,"10.1":0.189882,"11.1":0.483336,"12.1":0.512106},G:{"8":0.0024680230023002,"3.2":0.0098720920092009,"4.0-4.1":0.0049360460046005,"4.2-4.3":0,"5.0-5.1":0.014808138013801,"6.0-6.1":0.0049360460046005,"7.0-7.1":0.017276161016102,"8.1-8.4":0.032084299029903,"9.0-9.2":0.029616276027603,"9.3":0.31343892129213,"10.0-10.2":0.10859301210121,"10.3":0.35045926632663,"11.0-11.2":0.29616276027603,"11.3-11.4":0.52815692249225,"12.0-12.1":0.75521503870387,"12.2-12.4":5.3457378229823,"13.0-13.1":7.7619323422342,"13.2":3.5342089392939,"13.3":5.5678598931893},I:{"3":0.0015174366197183,"4":0.006575558685446,_:"76","2.1":0,"2.2":0.0010116244131455,"2.3":0.0010116244131455,"4.1":0.011633680751174,"4.2-4.3":0.2544235399061,"4.4":0,"4.4.3-4.4.4":0.15477853521127},P:{"4":0.18806747142857,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.010448192857143,"9.2":0.11493012142857,"10.1":2.6016000214286},B:{"12":0,"13":0,"14":0.005754,"15":0.011508,"16":0.05754,"17":0.063294,"18":1.104768,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.011508,"9":0.011508,"10":0.005754,"11":0.477582,"5.5":0},N:{"10":0,"11":0.04246},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.178332},O:{"0":0.004246},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.10049596219931},L:{"0":38.0018}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AE.js new file mode 100644 index 0000000..eeac7b4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00444,"32":0,"33":0,"34":0.00444,"35":0,"36":0.00444,"37":0,"38":0.01332,"39":0,"40":0,"41":0,"42":0,"43":0.00444,"44":0,"45":0,"46":0,"47":0,"48":0.00444,"49":0.20868,"50":0,"51":0,"52":0,"53":0.00444,"54":0,"55":0.00444,"56":0.00444,"57":0.00444,"58":0.00888,"59":0,"60":0.00444,"61":0.00444,"62":0.01332,"63":0.05772,"64":0.00444,"65":0.02664,"66":0.01332,"67":0.03552,"68":0.00888,"69":0.05328,"70":0.03996,"71":0.0444,"72":0.04884,"73":0.05328,"74":0.05772,"75":0.07104,"76":0.111,"77":0.18204,"78":6.7044,"79":6.49572,"80":0.02664,"81":0.00888},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00444,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00888,"46":0,"47":0.00444,"48":0.00888,"49":0,"50":0,"51":0,"52":0.01332,"53":0,"54":0,"55":0.00444,"56":0.00444,"57":0,"58":0,"59":0,"60":0.00444,"61":0,"62":0.00444,"63":0.00888,"64":0.00444,"65":0.00444,"66":0.00888,"67":0.01332,"68":0.07548,"69":0.01776,"70":0.19092,"71":0.59496,"72":0.0222,"73":0.00444,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00444,"36":0,"37":0.00444,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.03108,"46":0.0222,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00444,"54":0,"55":0.01776,"56":0.00444,"57":0,"58":0,"60":0,"62":0,"63":0.00444,"64":0.01332,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00444,"9":0.00444,"10":0.00888,"11":0.03552,"12":0.11544,"13":1.26984,_:"0","3.1":0,"3.2":0,"5.1":0.40848,"6.1":0,"7.1":0,"9.1":0.00888,"10.1":0.05328,"11.1":0.08436,"12.1":0.30192},G:{"8":0.0016360116011601,"3.2":0.0065440464046405,"4.0-4.1":0.0032720232023202,"4.2-4.3":0,"5.0-5.1":0.0098160696069607,"6.0-6.1":0.0032720232023202,"7.0-7.1":0.011452081208121,"8.1-8.4":0.021268150815082,"9.0-9.2":0.019632139213921,"9.3":0.20777347334733,"10.0-10.2":0.071984510451045,"10.3":0.23231364736474,"11.0-11.2":0.19632139213921,"11.3-11.4":0.35010648264826,"12.0-12.1":0.500619549955,"12.2-12.4":3.5436011281128,"13.0-13.1":5.1452564856486,"13.2":2.3427686128613,"13.3":3.6908421722172},I:{"3":0.00060253521126761,"4":0.002610985915493,_:"76","2.1":0,"2.2":0.00040169014084507,"2.3":0.00040169014084507,"4.1":0.0046194366197183,"4.2-4.3":0.10102507042254,"4.4":0,"4.4.3-4.4.4":0.061458591549296},P:{"4":0.2631265615142,"5.0-5.4":0.020240504731861,"6.2-6.4":0.040481009463722,"7.2-7.4":0.080962018927445,"8.2":0.050601261829653,"9.2":0.24288605678233,"10.1":2.479461829653},B:{"12":0.00444,"13":0.00444,"14":0.00888,"15":0.00888,"16":0.01332,"17":0.07992,"18":0.5772,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.018227368421053,"9":0.0045568421052632,"10":0.0045568421052632,"11":0.31897894736842,"5.5":0},N:{"10":0,"11":0.01112},J:{"7":0,"10":0.01668},R:{_:"0"},M:{"0":0.13344},O:{"0":8.68472},Q:{"1.2":0.03336},S:{"2.5":0},H:{"0":2.6687713402062},L:{"0":42.80528}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AF.js new file mode 100644 index 0000000..22b9900 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.006852,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002284,"30":0.006852,"31":0,"32":0,"33":0.002284,"34":0.002284,"35":0,"36":0.004568,"37":0.004568,"38":0.002284,"39":0.002284,"40":0.004568,"41":0,"42":0.002284,"43":0.013704,"44":0.002284,"45":0,"46":0.002284,"47":0,"48":0.009136,"49":0.03426,"50":0.002284,"51":0.002284,"52":0.02284,"53":0.004568,"54":0.002284,"55":0.004568,"56":0,"57":0,"58":0.002284,"59":0,"60":0.004568,"61":0.002284,"62":0.004568,"63":0.020556,"64":0.006852,"65":0.002284,"66":0.002284,"67":0.006852,"68":0.004568,"69":0.09136,"70":0.093644,"71":0.036544,"72":0.03426,"73":0.015988,"74":0.018272,"75":0.013704,"76":0.043396,"77":0.066236,"78":1.493736,"79":1.311016,"80":0.002284,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.002284,"26":0,"27":0,"28":0,"29":0.002284,"30":0,"31":0,"32":0,"33":0.002284,"34":0,"35":0,"36":0,"37":0,"38":0.002284,"39":0,"40":0,"41":0.002284,"42":0,"43":0.004568,"44":0.002284,"45":0,"46":0,"47":0.004568,"48":0.004568,"49":0,"50":0.002284,"51":0,"52":0.004568,"53":0,"54":0,"55":0,"56":0.004568,"57":0.002284,"58":0.006852,"59":0,"60":0.004568,"61":0,"62":0.002284,"63":0.004568,"64":0.018272,"65":0.009136,"66":0.004568,"67":0.013704,"68":0.031976,"69":0.013704,"70":0.118768,"71":0.287784,"72":0.04568,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.009136,"30":0,"31":0,"32":0,"33":0.002284,"34":0,"35":0,"36":0,"37":0.002284,"38":0,"39":0,"40":0,"41":0,"42":0.002284,"43":0,"44":0,"45":0.01142,"46":0.004568,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.002284,"54":0.004568,"55":0.002284,"56":0.004568,"57":0,"58":0.002284,"60":0.002284,"62":0,"63":0.004568,"64":0.004568,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.002284},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.002284,"11":0.002284,"12":0.01142,"13":0.1142,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004568,"11.1":0.004568,"12.1":0.015988},G:{"8":0.00062624742474247,"3.2":0.0025049896989699,"4.0-4.1":0.0012524948494849,"4.2-4.3":0,"5.0-5.1":0.0037574845484548,"6.0-6.1":0.0012524948494849,"7.0-7.1":0.0043837319731973,"8.1-8.4":0.0081412165216522,"9.0-9.2":0.0075149690969097,"9.3":0.079533422942294,"10.0-10.2":0.027554886688669,"10.3":0.088927134313431,"11.0-11.2":0.075149690969097,"11.3-11.4":0.13401694889489,"12.0-12.1":0.1916317119712,"12.2-12.4":1.3564519219922,"13.0-13.1":1.9695481508151,"13.2":0.89678631223122,"13.3":1.412814190219},I:{"3":0.0010572112676056,"4":0.0045812488262911,_:"76","2.1":0,"2.2":0.00070480751173709,"2.3":0.00070480751173709,"4.1":0.0081052863849765,"4.2-4.3":0.17725908920188,"4.4":0,"4.4.3-4.4.4":0.10783554929577},P:{"4":2.5818406956522,"5.0-5.4":0.63537485869565,"6.2-6.4":0.3529860326087,"7.2-7.4":0.89759305434783,"8.2":0.24204756521739,"9.2":0.95810494565217,"10.1":1.7447595326087},B:{"12":0.004568,"13":0.009136,"14":0.006852,"15":0.004568,"16":0.025124,"17":0.029692,"18":0.123336,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0046785161290323,"7":0,"8":0.023392580645161,"9":0.0023392580645161,"10":0.011696290322581,"11":0.24796135483871,"5.5":0},N:{"10":0.010288,"11":0.020576},J:{"7":0,"10":0.007716},R:{_:"0"},M:{"0":0.123456},O:{"0":4.6296},Q:{"1.2":0},S:{"2.5":0},H:{"0":2.1622830515464},L:{"0":70.576584}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AG.js new file mode 100644 index 0000000..4f4aeab --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004702,"27":0,"28":0.004702,"29":0,"30":0.004702,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.009404,"37":0.244504,"38":0.004702,"39":0.009404,"40":0.009404,"41":0.037616,"42":0.042318,"43":0.004702,"44":0.009404,"45":0.009404,"46":0.018808,"47":0.018808,"48":0.018808,"49":0.042318,"50":0.014106,"51":0.02351,"52":0.02351,"53":0.014106,"54":0.014106,"55":0.032914,"56":0.018808,"57":0.009404,"58":0.018808,"59":0.009404,"60":0.014106,"61":0.02351,"62":0.018808,"63":0.02351,"64":0.004702,"65":0.018808,"66":0.004702,"67":0.065828,"68":0,"69":0.079934,"70":0.07053,"71":0.004702,"72":0.004702,"73":0.056424,"74":0.112848,"75":0.103444,"76":0.216292,"77":0.155166,"78":6.474654,"79":4.485708,"80":0.009404,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.004702,"16":0,"17":0,"18":0.004702,"19":0.004702,"20":0.004702,"21":0.004702,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.004702,"32":0,"33":0,"34":0,"35":0.004702,"36":0.004702,"37":0,"38":0.004702,"39":0.004702,"40":0.009404,"41":0.004702,"42":0.004702,"43":0.004702,"44":0.004702,"45":0.018808,"46":0.004702,"47":0.263312,"48":0.004702,"49":0.004702,"50":0.009404,"51":0.014106,"52":0.028212,"53":0.018808,"54":0.028212,"55":0.028212,"56":0.11755,"57":0.014106,"58":0.032914,"59":0.004702,"60":0,"61":0.009404,"62":0.014106,"63":0,"64":0,"65":0,"66":0.051722,"67":0.004702,"68":0.230398,"69":0.178676,"70":0.4702,"71":0.851062,"72":0.004702,"73":0,"3.5":0,"3.6":0.004702},F:{"9":0,"11":0.004702,"12":0,"15":0.004702,"16":0,"17":0,"18":0,"19":0.004702,"20":0,"21":0,"22":0.004702,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004702,"29":0,"30":0,"31":0,"32":0.004702,"33":0,"34":0.004702,"35":0.004702,"36":0.004702,"37":0.004702,"38":0,"39":0,"40":0,"41":0.004702,"42":0.004702,"43":0,"44":0.004702,"45":0.004702,"46":0.004702,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.009404,"54":0,"55":0.004702,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.004702,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.004702,"12.1":0.014106},E:{"4":0,"5":0,"6":0.004702,"7":0,"8":0.032914,"9":0.014106,"10":0.004702,"11":0.004702,"12":0.037616,"13":1.636296,_:"0","3.1":0,"3.2":0,"5.1":0.018808,"6.1":0,"7.1":0,"9.1":0.009404,"10.1":0.065828,"11.1":0.089338,"12.1":0.677088},G:{"8":0.0017373383338334,"3.2":0.0069493533353335,"4.0-4.1":0.0034746766676668,"4.2-4.3":0,"5.0-5.1":0.010424030003,"6.0-6.1":0.0034746766676668,"7.0-7.1":0.012161368336834,"8.1-8.4":0.022585398339834,"9.0-9.2":0.020848060006001,"9.3":0.22064196839684,"10.0-10.2":0.076442886688669,"10.3":0.24670204340434,"11.0-11.2":0.20848060006001,"11.3-11.4":0.37179040344034,"12.0-12.1":0.53162553015302,"12.2-12.4":3.7630748310831,"13.0-13.1":5.463929059906,"13.2":2.4878684940494,"13.3":3.9194352811281},I:{"3":0.0031193521126761,"4":0.013517192488263,_:"76","2.1":0,"2.2":0.0020795680751174,"2.3":0.0020795680751174,"4.1":0.02391503286385,"4.2-4.3":0.52301137089202,"4.4":0,"4.4.3-4.4.4":0.31817391549296},P:{"4":0.55056685185185,"5.0-5.4":0.010587824074074,"6.2-6.4":0.05293912037037,"7.2-7.4":0.095290416666667,"8.2":0.031763472222222,"9.2":0.16940518518519,"10.1":5.9080058333333},B:{"12":0.009404,"13":0.037616,"14":0.09404,"15":0.028212,"16":0.032914,"17":0.098742,"18":1.227222,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.032914,"9":0.037616,"10":0.014106,"11":0.460796,"5.5":0},N:{"10":0.09835852173913,"11":0.22481947826087},J:{"7":0,"10":0.005298},R:{_:"0"},M:{"0":0.148344},O:{"0":0.063576},Q:{"1.2":0.010596},S:{"2.5":0},H:{"0":0.19561636082474},L:{"0":50.35049}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AI.js new file mode 100644 index 0000000..bd8e533 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02368,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.009472,"50":0,"51":0,"52":0,"53":0.004736,"54":0,"55":0.009472,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.009472,"69":0.018944,"70":0.004736,"71":0,"72":0.018944,"73":0.009472,"74":0.037888,"75":0.037888,"76":0.014208,"77":0.07104,"78":6.123648,"79":4.28608,"80":0.009472,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.04736,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.004736,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.004736,"61":0,"62":0,"63":0.04736,"64":0,"65":0,"66":0,"67":0.009472,"68":0.089984,"69":0,"70":0.123136,"71":0.525696,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.009472,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.056832,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.014208,"6":0.080512,"7":0,"8":0,"9":0.004736,"10":0,"11":0.009472,"12":0.037888,"13":2.10752,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.359936,"10.1":0.014208,"11.1":0.37888,"12.1":0.303104},G:{"8":0.0026498505850585,"3.2":0.010599402340234,"4.0-4.1":0.005299701170117,"4.2-4.3":0,"5.0-5.1":0.015899103510351,"6.0-6.1":0.005299701170117,"7.0-7.1":0.01854895409541,"8.1-8.4":0.034448057605761,"9.0-9.2":0.031798207020702,"9.3":0.33653102430243,"10.0-10.2":0.11659342574257,"10.3":0.37627878307831,"11.0-11.2":0.31798207020702,"11.3-11.4":0.56706802520252,"12.0-12.1":0.8108542790279,"12.2-12.4":5.7395763672367,"13.0-13.1":8.333780090009,"13.2":3.7945860378038,"13.3":5.978062919892},I:{"3":0.0047379718309859,"4":0.020531211267606,_:"76","2.1":0,"2.2":0.0031586478873239,"2.3":0.0031586478873239,"4.1":0.036324450704225,"4.2-4.3":0.79439994366197,"4.4":0,"4.4.3-4.4.4":0.48327312676056},P:{"4":0.14099351724138,"5.0-5.4":0.010845655172414,"6.2-6.4":0.010845655172414,"7.2-7.4":0.097610896551724,"8.2":0.08676524137931,"9.2":0.13014786206897,"10.1":4.5443295172414},B:{"12":0.009472,"13":0.312576,"14":0.009472,"15":0.018944,"16":0.009472,"17":0.279424,"18":2.851072,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.009472,"11":1.108224,"5.5":0},N:{"10":0,"11":0.010528},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.2632},O:{"0":0.057904},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.034885305841924},L:{"0":44.159072}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AL.js new file mode 100644 index 0000000..c5be703 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.002369,"37":0,"38":0.002369,"39":0,"40":0,"41":0,"42":0.002369,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.130295,"50":0.002369,"51":0,"52":0,"53":0.002369,"54":0,"55":0.002369,"56":0.004738,"57":0.002369,"58":0.004738,"59":0.002369,"60":0,"61":0.002369,"62":0.004738,"63":0.004738,"64":0.002369,"65":0.004738,"66":0.002369,"67":0.004738,"68":0.002369,"69":0.016583,"70":0.033166,"71":0.035535,"72":0.049749,"73":0.028428,"74":0.021321,"75":0.033166,"76":0.026059,"77":0.059225,"78":2.508771,"79":1.520898,"80":0.004738,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.002369,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004738,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.002369,"46":0,"47":0,"48":0.002369,"49":0,"50":0,"51":0,"52":0.026059,"53":0,"54":0.004738,"55":0,"56":0,"57":0,"58":0,"59":0.002369,"60":0.002369,"61":0,"62":0.002369,"63":0.002369,"64":0.007107,"65":0.002369,"66":0.007107,"67":0.002369,"68":0.035535,"69":0.009476,"70":0.101867,"71":0.158723,"72":0.002369,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.002369,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.002369,"56":0,"57":0,"58":0.002369,"60":0,"62":0,"63":0,"64":0.002369,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.002369},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.002369,"11":0.002369,"12":0.004738,"13":0.082915,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004738,"11.1":0.004738,"12.1":0.018952},G:{"8":0.0027226650665067,"3.2":0.010890660266027,"4.0-4.1":0.0054453301330133,"4.2-4.3":0,"5.0-5.1":0.01633599039904,"6.0-6.1":0.0054453301330133,"7.0-7.1":0.019058655465547,"8.1-8.4":0.035394645864586,"9.0-9.2":0.03267198079808,"9.3":0.34577846344634,"10.0-10.2":0.11979726292629,"10.3":0.38661843944394,"11.0-11.2":0.3267198079808,"11.3-11.4":0.58265032423242,"12.0-12.1":0.83313551035104,"12.2-12.4":5.8972925340534,"13.0-13.1":8.5627816341634,"13.2":3.8988563752375,"13.3":6.142332390039},I:{"3":0.00044755985915493,"4":0.001939426056338,_:"76","2.1":0,"2.2":0.00029837323943662,"2.3":0.00029837323943662,"4.1":0.0034312922535211,"4.2-4.3":0.07504086971831,"4.4":0,"4.4.3-4.4.4":0.045651105633803},P:{"4":0.3126434515442,"5.0-5.4":0.020170545260916,"6.2-6.4":0.090767453674121,"7.2-7.4":0.1210232715655,"8.2":0.10085272630458,"9.2":0.59503108519702,"10.1":8.2094119211928},B:{"12":0.004738,"13":0.002369,"14":0.009476,"15":0.004738,"16":0.002369,"17":0.014214,"18":0.068701,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.019605517241379,"9":0.0024506896551724,"10":0.0049013793103448,"11":0.044112413793103,"5.5":0},N:{"10":0.011022555555556,"11":0.088180444444444},J:{"7":0,"10":0.091572},R:{_:"0"},M:{"0":0.129727},O:{"0":0.053417},Q:{"1.2":0.007631},S:{"2.5":0},H:{"0":0.19506252061856},L:{"0":54.792581}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AM.js new file mode 100644 index 0000000..de6a37e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.024552,"37":0,"38":0.016368,"39":0,"40":0,"41":0.008184,"42":0,"43":0.008184,"44":0,"45":0.008184,"46":0.008184,"47":0,"48":0.032736,"49":1.088472,"50":0,"51":0.016368,"52":0,"53":0,"54":0,"55":0.016368,"56":0.008184,"57":0.008184,"58":0.008184,"59":0.008184,"60":0.016368,"61":0.008184,"62":0.016368,"63":0.049104,"64":0.008184,"65":0.016368,"66":0.016368,"67":0.049104,"68":0.016368,"69":0.049104,"70":0.12276,"71":0.12276,"72":0.065472,"73":0.171864,"74":0.155496,"75":0.106392,"76":0.180048,"77":0.294624,"78":18.733176,"79":14.706648,"80":0.04092,"81":0.008184},C:{"2":0,"3":0,"4":0.016368,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.008184,"39":0,"40":0,"41":0,"42":0.016368,"43":0.008184,"44":0,"45":0.073656,"46":0,"47":0,"48":0,"49":0.008184,"50":0.008184,"51":0,"52":24.290112,"53":0,"54":0,"55":0.008184,"56":0.008184,"57":0.008184,"58":0,"59":0,"60":0.008184,"61":0.008184,"62":0,"63":0,"64":0,"65":0,"66":0.016368,"67":0.008184,"68":0.032736,"69":0.04092,"70":0.343728,"71":1.006632,"72":0.008184,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.04092,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.008184,"43":0,"44":0,"45":0,"46":0.008184,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.008184,"56":0,"57":0.008184,"58":0,"60":0,"62":0,"63":0,"64":0.04092,"9.5-9.6":0,"10.0-10.1":0.008184,"10.5":0.008184,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.008184},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.016368,"12":0.057288,"13":0.77748,_:"0","3.1":0,"3.2":0,"5.1":0.008184,"6.1":0,"7.1":0,"9.1":0,"10.1":0.008184,"11.1":0.073656,"12.1":0.12276},G:{"8":0.00071846464646465,"3.2":0.0028738585858586,"4.0-4.1":0.0014369292929293,"4.2-4.3":0,"5.0-5.1":0.0043107878787879,"6.0-6.1":0.0014369292929293,"7.0-7.1":0.0050292525252525,"8.1-8.4":0.0093400404040404,"9.0-9.2":0.0086215757575758,"9.3":0.09124501010101,"10.0-10.2":0.031612444444444,"10.3":0.10202197979798,"11.0-11.2":0.086215757575758,"11.3-11.4":0.15375143434343,"12.0-12.1":0.21985018181818,"12.2-12.4":1.5561944242424,"13.0-13.1":2.2595713131313,"13.2":1.0288413737374,"13.3":1.6208562424242},I:{"3":0.00054718309859155,"4":0.0023711267605634,_:"76","2.1":0,"2.2":0.00036478873239437,"2.3":0.00036478873239437,"4.1":0.0041950704225352,"4.2-4.3":0.091744366197183,"4.4":0,"4.4.3-4.4.4":0.055812676056338},P:{"4":0.08172,"5.0-5.4":0.010215,"6.2-6.4":0.010215,"7.2-7.4":0.071505,"8.2":0.02043,"9.2":0.173655,"10.1":1.18494},B:{"12":0,"13":0,"14":0.008184,"15":0.008184,"16":0.008184,"17":0.024552,"18":0.507408,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.018886153846154,"7":0.0094430769230769,"8":0.056658461538462,"9":0.018886153846154,"10":0.028329230769231,"11":0.11331692307692,"5.5":0},N:{"10":0,"11":0.01816},J:{"7":0,"10":0.083536},R:{_:"0"},M:{"0":0.08172},O:{"0":0.237896},Q:{"1.2":0.030872},S:{"2.5":0},H:{"0":0.33353866666667},L:{"0":21.768192}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AN.js new file mode 100644 index 0000000..9ce90e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AN.js @@ -0,0 +1 @@ +module.exports={D:{"11":0.080201,"21":0.051037,"22":0.080201,"24":0.029164,"26":0.131238,"28":0.102074,"31":0.51037,"32":0.306222,"33":2.223755,"34":0.204148,"35":1.407163,"36":28.87236,"38":0.080201,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 23 25 27 29 30 37 39 40"},C:{"10":0.029164,"12":0.051037,"21":0.029164,"26":0.051037,"27":0.029164,"29":0.029164,"30":4.031923,"31":10.827135,"32":0.051037,_:"2 3 4 5 6 7 8 9 11 13 14 15 16 17 18 19 20 22 23 24 25 28 33 34 3.5 3.6"},F:{"21":0.051037,"23":0.051037,"24":0.051037,_:"9 11 12 15 16 17 18 19 20 22 25 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.539534},E:{"4":0,"5":0.233312,"6":0.102074,"7":6.05153,"8":0.029164,_:"3.1 3.2","5.1":0.765555,"6.1":0.561407},I:{"3":0,"4":0.648893454545,"2.1":0.00612163636364,"2.2":0.0428514545455,"2.3":0.832542545455,"4.1":1.62223363636,"4.2-4.3":1.69569327273,"4.4":1.279422,_:"4.4.3"},K:{"10":0,"11":0,"12":0.0000648307692308,_:"0","11.1":0,"11.5":0,"12.1":0.000356569230769},A:{"8":1.4582,"9":2.47894,"10":1.633184,"11":9.471009,_:"6 7 5.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0939043474576,"6.0-6.1":0.473354567797,"7.0-7.1":8.93049508475},J:{"7":0.40838175,_:"10"},M:{"0":0.051471},N:{"10":0.09419193},H:{"5.0-7.0":0.0239596},L:{"0":8.88552}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AO.js new file mode 100644 index 0000000..81c67a0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004399,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004399,"26":0.021995,"27":0,"28":0,"29":0.004399,"30":0,"31":0,"32":0,"33":0.017596,"34":0,"35":0.004399,"36":0.013197,"37":0,"38":0.004399,"39":0,"40":0.035192,"41":0,"42":0.008798,"43":0.109975,"44":0,"45":0.004399,"46":0.013197,"47":0.008798,"48":0.008798,"49":0.092379,"50":0.004399,"51":0.008798,"52":0.004399,"53":0.008798,"54":0.004399,"55":0.017596,"56":0.008798,"57":0.008798,"58":0.021995,"59":0.013197,"60":0.017596,"61":0.008798,"62":0.017596,"63":0.250743,"64":0.008798,"65":0.026394,"66":0.013197,"67":0.021995,"68":0.021995,"69":0.153965,"70":0.057187,"71":0.109975,"72":0.030793,"73":0.061586,"74":0.079182,"75":0.08798,"76":0.092379,"77":0.184758,"78":5.489952,"79":4.297823,"80":0.017596,"81":0.004399},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.004399,"21":0.004399,"22":0,"23":0,"24":0.004399,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.004399,"36":0.004399,"37":0,"38":0.004399,"39":0,"40":0,"41":0.008798,"42":0,"43":0.017596,"44":0,"45":0.004399,"46":0.004399,"47":0.017596,"48":0.004399,"49":0.004399,"50":0,"51":0,"52":0.021995,"53":0.004399,"54":0.004399,"55":0.004399,"56":0.004399,"57":0.008798,"58":0.004399,"59":0,"60":0.008798,"61":0.008798,"62":0.004399,"63":0.004399,"64":0.017596,"65":0.017596,"66":0.017596,"67":0.008798,"68":0.079182,"69":0.030793,"70":0.277137,"71":0.673047,"72":0.008798,"73":0,"3.5":0,"3.6":0.013197},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.004399,"21":0,"22":0,"23":0.013197,"24":0,"25":0,"26":0,"27":0,"28":0.004399,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004399,"35":0.004399,"36":0.004399,"37":0.004399,"38":0,"39":0,"40":0,"41":0,"42":0.008798,"43":0,"44":0,"45":0.008798,"46":0.004399,"47":0,"48":0,"49":0.030793,"50":0,"51":0,"52":0,"53":0.004399,"54":0.004399,"55":0.004399,"56":0,"57":0,"58":0,"60":0.004399,"62":0.004399,"63":0.017596,"64":0.039591,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.04399},E:{"4":0,"5":0,"6":0,"7":0,"8":0.008798,"9":0.004399,"10":0.008798,"11":0.017596,"12":0.030793,"13":0.721436,_:"0","3.1":0,"3.2":0,"5.1":0.004399,"6.1":0.004399,"7.1":0.004399,"9.1":0.004399,"10.1":0.035192,"11.1":0.096778,"12.1":0.255142},G:{"8":0.00082507660766077,"3.2":0.0033003064306431,"4.0-4.1":0.0016501532153215,"4.2-4.3":0,"5.0-5.1":0.0049504596459646,"6.0-6.1":0.0016501532153215,"7.0-7.1":0.0057755362536254,"8.1-8.4":0.01072599589959,"9.0-9.2":0.0099009192919292,"9.3":0.10478472917292,"10.0-10.2":0.036303370737074,"10.3":0.11716087828783,"11.0-11.2":0.099009192919292,"11.3-11.4":0.1765663940394,"12.0-12.1":0.25247344194419,"12.2-12.4":1.7871159321932,"13.0-13.1":2.5948659310931,"13.2":1.1815097021702,"13.3":1.8613728268827},I:{"3":0.0066791478873239,"4":0.028942974178404,_:"76","2.1":0,"2.2":0.004452765258216,"2.3":0.004452765258216,"4.1":0.051206800469484,"4.2-4.3":1.1198704624413,"4.4":0,"4.4.3-4.4.4":0.68127308450704},P:{"4":1.021015625,"5.0-5.4":0.1021015625,"6.2-6.4":0.07147109375,"7.2-7.4":0.285884375,"8.2":0.11231171875,"9.2":0.39819609375,"10.1":1.919509375},B:{"12":0.061586,"13":0.04399,"14":0.061586,"15":0.021995,"16":0.04399,"17":0.215551,"18":0.985376,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.083891185897436,"9":0.0098695512820513,"10":0.069086858974359,"11":0.60697740384615,"5.5":0},N:{"10":0.0532095,"11":0.0532095},J:{"7":0,"10":0.028005},R:{_:"0"},M:{"0":0.151227},O:{"0":0.733731},Q:{"1.2":0.100818},S:{"2.5":0},H:{"0":6.0238273814433},L:{"0":55.582266}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AR.js new file mode 100644 index 0000000..a5030e3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005024,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005024,"35":0.005024,"36":0.005024,"37":0,"38":0.015072,"39":0,"40":0,"41":0.005024,"42":0,"43":0.005024,"44":0,"45":0,"46":0.005024,"47":0.005024,"48":0.005024,"49":0.512448,"50":0.005024,"51":0.005024,"52":0,"53":0.005024,"54":0.005024,"55":0.005024,"56":0.005024,"57":0.005024,"58":0.02512,"59":0.005024,"60":0.010048,"61":0.005024,"62":0.010048,"63":0.020096,"64":0.005024,"65":0.02512,"66":0.030144,"67":0.030144,"68":0.045216,"69":0.02512,"70":0.065312,"71":0.07536,"72":0.065312,"73":0.080384,"74":0.060288,"75":0.085408,"76":0.105504,"77":0.155744,"78":10.188672,"79":8.148928,"80":0.010048,"81":0.005024},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.005024,"48":0.010048,"49":0,"50":0,"51":0,"52":0.065312,"53":0.005024,"54":0.005024,"55":0.005024,"56":0.020096,"57":0.005024,"58":0,"59":0.005024,"60":0.010048,"61":0.005024,"62":0,"63":0.005024,"64":0.005024,"65":0.005024,"66":0.015072,"67":0.010048,"68":0.065312,"69":0.020096,"70":0.306464,"71":0.899296,"72":0.010048,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005024,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005024,"56":0.005024,"57":0.005024,"58":0.005024,"60":0,"62":0,"63":0,"64":0.05024,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.005024,"10":0.005024,"11":0.015072,"12":0.040192,"13":0.447136,_:"0","3.1":0,"3.2":0,"5.1":1.396672,"6.1":0,"7.1":0,"9.1":0.005024,"10.1":0.030144,"11.1":0.065312,"12.1":0.115552},G:{"8":0.00046801160116012,"3.2":0.0018720464046405,"4.0-4.1":0.00093602320232023,"4.2-4.3":0,"5.0-5.1":0.0028080696069607,"6.0-6.1":0.00093602320232023,"7.0-7.1":0.0032760812081208,"8.1-8.4":0.0060841508150815,"9.0-9.2":0.0056161392139214,"9.3":0.059437473347335,"10.0-10.2":0.020592510451045,"10.3":0.066457647364736,"11.0-11.2":0.056161392139214,"11.3-11.4":0.10015448264826,"12.0-12.1":0.143211549955,"12.2-12.4":1.0137131281128,"13.0-13.1":1.4718964856486,"13.2":0.67019261286129,"13.3":1.0558341722172},I:{"3":0.00058140845070423,"4":0.0025194366197183,_:"76","2.1":0,"2.2":0.00038760563380282,"2.3":0.00038760563380282,"4.1":0.0044574647887324,"4.2-4.3":0.097482816901408,"4.4":0,"4.4.3-4.4.4":0.059303661971831},P:{"4":0.33528662761506,"5.0-5.4":0.02032040167364,"6.2-6.4":0.04064080334728,"7.2-7.4":0.1016020083682,"8.2":0.0508010041841,"9.2":0.1524030125523,"10.1":1.7272341422594},B:{"12":0,"13":0.005024,"14":0.015072,"15":0.035168,"16":0.010048,"17":0.045216,"18":0.361728,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.005024,"7":0.005024,"8":0.040192,"9":0.005024,"10":0.010048,"11":0.236128,"5.5":0},N:{"10":0,"11":0.258752},J:{"7":0,"10":0.009952},R:{_:"0"},M:{"0":0.089568},O:{"0":0.044784},Q:{"1.2":0.009952},S:{"2.5":0},H:{"0":0.26852445360825},L:{"0":65.584928}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AS.js new file mode 100644 index 0000000..ae3f055 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.005903,"36":0,"37":0,"38":0.005903,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.005903,"45":0,"46":0.171187,"47":0,"48":0,"49":0.365986,"50":0,"51":0,"52":0,"53":0.005903,"54":0,"55":0.005903,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.005903,"62":0.005903,"63":0.005903,"64":0,"65":0.141672,"66":0.011806,"67":0.64933,"68":0,"69":0.029515,"70":0,"71":0.005903,"72":0.035418,"73":0.005903,"74":0.029515,"75":0.064933,"76":0.389598,"77":0.17709,"78":15.11168,"79":6.652681,"80":0.029515,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.053127,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.005903,"44":0,"45":0.017709,"46":0,"47":0.041321,"48":0.011806,"49":0,"50":0,"51":0,"52":0.005903,"53":0,"54":0.005903,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.005903,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.005903,"68":0.035418,"69":0.017709,"70":0.283344,"71":0.838226,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.011806,"46":0.011806,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.011806,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.005903,"10":0.023612,"11":0,"12":0.035418,"13":2.166401,_:"0","3.1":0,"3.2":0,"5.1":0.005903,"6.1":0,"7.1":0,"9.1":0.005903,"10.1":0.023612,"11.1":0.070836,"12.1":0.342374},G:{"8":0.0016274096409641,"3.2":0.0065096385638564,"4.0-4.1":0.0032548192819282,"4.2-4.3":0,"5.0-5.1":0.0097644578457846,"6.0-6.1":0.0032548192819282,"7.0-7.1":0.011391867486749,"8.1-8.4":0.021156325332533,"9.0-9.2":0.019528915691569,"9.3":0.20668102440244,"10.0-10.2":0.07160602420242,"10.3":0.2310921690169,"11.0-11.2":0.19528915691569,"11.3-11.4":0.34826566316632,"12.0-12.1":0.49798735013501,"12.2-12.4":3.5249692823282,"13.0-13.1":5.1182033208321,"13.2":2.3304506058606,"13.3":3.671436150015},I:{"3":0.0034033591549296,"4":0.014747889671362,_:"76","2.1":0,"2.2":0.0022689061032864,"2.3":0.0022689061032864,"4.1":0.026092420187793,"4.2-4.3":0.57062988497653,"4.4":0,"4.4.3-4.4.4":0.34714263380282},P:{"4":0.031697842105263,"5.0-5.4":0,"6.2-6.4":0.010565947368421,"7.2-7.4":0.073961631578947,"8.2":0.031697842105263,"9.2":0.095093526315789,"10.1":1.1622542105263},B:{"12":0.017709,"13":0.011806,"14":0.064933,"15":0.011806,"16":0.171187,"17":0.100351,"18":1.995214,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.47224,"5.5":0},N:{"10":0,"11":0.188462},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.032776},O:{"0":0.401506},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.34521096735395},L:{"0":47.314171}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AT.js new file mode 100644 index 0000000..da515d1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005337,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005337,"35":0,"36":0,"37":0,"38":0.026685,"39":0,"40":0.005337,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.186795,"50":0,"51":0.005337,"52":0,"53":0.016011,"54":0,"55":0.005337,"56":0.005337,"57":0.005337,"58":0.010674,"59":0,"60":0.005337,"61":0.005337,"62":0.005337,"63":0.042696,"64":0.005337,"65":0.016011,"66":0.005337,"67":0.016011,"68":0.016011,"69":0.032022,"70":0.026685,"71":0.037359,"72":0.074718,"73":0.256176,"74":0.037359,"75":0.080055,"76":0.090729,"77":0.154773,"78":6.553836,"79":5.166216,"80":0.021348,"81":0.005337},C:{"2":0,"3":0.005337,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.016011,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.005337,"30":0,"31":0.005337,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005337,"39":0,"40":0,"41":0,"42":0,"43":0.005337,"44":0,"45":0.016011,"46":0,"47":0.005337,"48":0.026685,"49":0.005337,"50":0.005337,"51":0.005337,"52":0.133425,"53":0.005337,"54":0.005337,"55":0.005337,"56":0.026685,"57":0.010674,"58":0.005337,"59":0.005337,"60":0.080055,"61":0.016011,"62":0.016011,"63":0.005337,"64":0.010674,"65":0.058707,"66":0.032022,"67":0.026685,"68":0.592407,"69":0.101403,"70":1.115433,"71":3.645171,"72":0.021348,"73":0,"3.5":0,"3.6":0.005337},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005337,"37":0.005337,"38":0,"39":0,"40":0.005337,"41":0,"42":0,"43":0,"44":0,"45":0.005337,"46":0.005337,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.010674,"56":0,"57":0.005337,"58":0,"60":0,"62":0,"63":0.005337,"64":0.032022,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005337},E:{"4":0,"5":0.005337,"6":0,"7":0,"8":0.005337,"9":0.010674,"10":0.010674,"11":0.037359,"12":0.149436,"13":2.225529,_:"0","3.1":0,"3.2":0,"5.1":0.186795,"6.1":0.005337,"7.1":0,"9.1":0.037359,"10.1":0.090729,"11.1":0.181458,"12.1":0.389601},G:{"8":0.0022589220922092,"3.2":0.0090356883688369,"4.0-4.1":0.0045178441844184,"4.2-4.3":0,"5.0-5.1":0.013553532553255,"6.0-6.1":0.0045178441844184,"7.0-7.1":0.015812454645465,"8.1-8.4":0.02936598719872,"9.0-9.2":0.027107065106511,"9.3":0.28688310571057,"10.0-10.2":0.099392572057206,"10.3":0.32076693709371,"11.0-11.2":0.27107065106511,"11.3-11.4":0.48340932773277,"12.0-12.1":0.69123016021602,"12.2-12.4":4.8928252517252,"13.0-13.1":7.104309979998,"13.2":3.2347764360436,"13.3":5.096128240024},I:{"3":0.0012185422535211,"4":0.0052803497652582,_:"76","2.1":0,"2.2":0.00081236150234742,"2.3":0.00081236150234742,"4.1":0.0093421572769953,"4.2-4.3":0.20430891784038,"4.4":0,"4.4.3-4.4.4":0.12429130985915},P:{"4":0.32279082752294,"5.0-5.4":0.041650429357798,"6.2-6.4":0.031237822018349,"7.2-7.4":0.083300858715596,"8.2":0.041650429357798,"9.2":0.32279082752294,"10.1":4.7897993761468},B:{"12":0.005337,"13":0.005337,"14":0.016011,"15":0.032022,"16":0.048033,"17":0.170784,"18":2.02806,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.016107451807229,"9":0.0053691506024096,"10":0.010738301204819,"11":1.7503430963855,"5.5":0},N:{"10":0,"11":0.023315},J:{"7":0,"10":0.004663},R:{_:"0"},M:{"0":0.484952},O:{"0":0.09326},Q:{"1.2":0.009326},S:{"2.5":0},H:{"0":0.20748747594502},L:{"0":39.780403}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AU.js new file mode 100644 index 0000000..c253270 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004888,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004888,"35":0,"36":0,"37":0,"38":0.014664,"39":0,"40":0.009776,"41":0,"42":0,"43":0,"44":0,"45":0.004888,"46":0,"47":0,"48":0.004888,"49":0.239512,"50":0.004888,"51":0.004888,"52":0.004888,"53":0.014664,"54":0.004888,"55":0.02444,"56":0.014664,"57":0.014664,"58":0.014664,"59":0.019552,"60":0.014664,"61":0.014664,"62":0.014664,"63":0.229736,"64":0.014664,"65":0.034216,"66":0.019552,"67":0.043992,"68":0.04888,"69":0.102648,"70":0.068432,"71":0.063544,"72":0.092872,"73":0.151528,"74":0.112424,"75":0.17108,"76":0.185744,"77":0.332384,"78":7.336888,"79":4.677816,"80":0.014664,"81":0.004888},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.014664,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004888,"46":0,"47":0.004888,"48":0.014664,"49":0,"50":0.004888,"51":0,"52":0.039104,"53":0,"54":0.004888,"55":0,"56":0.009776,"57":0,"58":0.004888,"59":0,"60":0.009776,"61":0.004888,"62":0.004888,"63":0.009776,"64":0.009776,"65":0.004888,"66":0.019552,"67":0.014664,"68":0.161304,"69":0.039104,"70":0.356824,"71":1.041144,"72":0.019552,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004888,"37":0.02444,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004888,"56":0,"57":0,"58":0,"60":0,"62":0.004888,"63":0,"64":0.009776,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004888},E:{"4":0,"5":0,"6":0,"7":0,"8":0.019552,"9":0.009776,"10":0.014664,"11":0.029328,"12":0.09776,"13":2.307136,_:"0","3.1":0,"3.2":0,"5.1":0.009776,"6.1":0.004888,"7.1":0,"9.1":0.029328,"10.1":0.083096,"11.1":0.141752,"12.1":0.337272},G:{"8":0.0040361420142014,"3.2":0.016144568056806,"4.0-4.1":0.0080722840284028,"4.2-4.3":0,"5.0-5.1":0.024216852085209,"6.0-6.1":0.0080722840284028,"7.0-7.1":0.02825299409941,"8.1-8.4":0.052469846184618,"9.0-9.2":0.048433704170417,"9.3":0.51259003580358,"10.0-10.2":0.17759024862486,"10.3":0.5731321660166,"11.0-11.2":0.48433704170417,"11.3-11.4":0.8637343910391,"12.0-12.1":1.2350594563456,"12.2-12.4":8.7422836027603,"13.0-13.1":12.693666634663,"13.2":5.7797553643364,"13.3":9.1055363840384},I:{"3":0.0012339718309859,"4":0.0053472112676056,_:"76","2.1":0,"2.2":0.00082264788732394,"2.3":0.00082264788732394,"4.1":0.0094604507042254,"4.2-4.3":0.20689594366197,"4.4":0,"4.4.3-4.4.4":0.12586512676056},P:{"4":0.15178707692308,"5.0-5.4":0.043367736263736,"6.2-6.4":0.032525802197802,"7.2-7.4":0.05420967032967,"8.2":0.065051604395604,"9.2":0.24936448351648,"10.1":3.3393156923077},B:{"12":0.004888,"13":0.004888,"14":0.009776,"15":0.014664,"16":0.034216,"17":0.09776,"18":1.476176,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0051595555555556,"9":0.015478666666667,"10":0.0051595555555556,"11":0.90292222222222,"5.5":0},N:{"10":0,"11":0.020448},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.322056},O:{"0":0.296496},Q:{"1.2":0.117576},S:{"2.5":0},H:{"0":0.30490181443299},L:{"0":29.946136}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AW.js new file mode 100644 index 0000000..892366d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.003658,"38":0,"39":0,"40":0.007316,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.003658,"47":0,"48":0,"49":0.051212,"50":0,"51":0,"52":0,"53":0.01829,"54":0.003658,"55":0.003658,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.003658,"63":0.003658,"64":0,"65":0.003658,"66":0.025606,"67":0.010974,"68":0.007316,"69":0.01829,"70":0.040238,"71":0.003658,"72":0.051212,"73":0.014632,"74":0.014632,"75":0.014632,"76":0.03658,"77":0.051212,"78":3.807978,"79":2.7435,"80":0.003658,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.007316,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.003658,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.003658,"49":0,"50":0,"51":0,"52":0.01829,"53":0.003658,"54":0,"55":0,"56":0.003658,"57":0.003658,"58":0,"59":0,"60":0.010974,"61":0,"62":0,"63":0.003658,"64":0,"65":0,"66":0,"67":0,"68":0.069502,"69":0.01829,"70":0.139004,"71":0.38409,"72":0.003658,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.003658,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.007316,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.014632,"11":0.007316,"12":0.021948,"13":1.15227,_:"0","3.1":0,"3.2":0,"5.1":0.003658,"6.1":0.003658,"7.1":0.003658,"9.1":0.021948,"10.1":0.032922,"11.1":0.102424,"12.1":0.212164},G:{"8":0.0025617069706971,"3.2":0.010246827882788,"4.0-4.1":0.0051234139413941,"4.2-4.3":0,"5.0-5.1":0.015370241824182,"6.0-6.1":0.0051234139413941,"7.0-7.1":0.017931948794879,"8.1-8.4":0.033302190619062,"9.0-9.2":0.030740483648365,"9.3":0.32533678527853,"10.0-10.2":0.11271510671067,"10.3":0.36376238983898,"11.0-11.2":0.30740483648365,"11.3-11.4":0.54820529172917,"12.0-12.1":0.7838823330333,"12.2-12.4":5.5486572985299,"13.0-13.1":8.0565684228423,"13.2":3.6683643820382,"13.3":5.7792109258926},I:{"3":0.0013826126760563,"4":0.0059913215962441,_:"76","2.1":0,"2.2":0.00092174178403756,"2.3":0.00092174178403756,"4.1":0.010600030516432,"4.2-4.3":0.23181805868545,"4.4":0,"4.4.3-4.4.4":0.14102649295775},P:{"4":0.24410839835729,"5.0-5.4":0.08490726899384,"6.2-6.4":0.02122681724846,"7.2-7.4":0.24410839835729,"8.2":0.07429386036961,"9.2":0.67925815195072,"10.1":8.9152632443532},B:{"12":0,"13":0,"14":0.007316,"15":0.03658,"16":0.051212,"17":0.09145,"18":1.404672,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.01829,"11":1.232746,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.177576},O:{"0":0.183918},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.078054546391753},L:{"0":47.111338}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AX.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AX.js new file mode 100644 index 0000000..adeae40 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AX.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.006728,"47":0,"48":0,"49":0.080736,"50":0.006728,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.006728,"65":0,"66":0,"67":0,"68":0.006728,"69":0,"70":0,"71":0.047096,"72":0.013456,"73":0.006728,"74":0.13456,"75":0.20184,"76":0.30276,"77":0.181656,"78":15.111088,"79":12.083488,"80":0.10092,"81":0.026912},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.242208,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.013456,"49":0,"50":0,"51":0,"52":0.275848,"53":0,"54":0,"55":0.013456,"56":0,"57":0,"58":0.006728,"59":0,"60":0,"61":0.020184,"62":0,"63":0.10092,"64":0,"65":0.006728,"66":0,"67":0.013456,"68":0.565152,"69":0.020184,"70":0.719896,"71":1.776192,"72":0.013456,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.080736,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.10092,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.006728,"10":0,"11":0.006728,"12":0.127832,"13":3.054512,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.026912,"10.1":0.087464,"11.1":0.37004,"12.1":0.5046},G:{"8":0.0022988850885089,"3.2":0.0091955403540354,"4.0-4.1":0.0045977701770177,"4.2-4.3":0,"5.0-5.1":0.013793310531053,"6.0-6.1":0.0045977701770177,"7.0-7.1":0.016092195619562,"8.1-8.4":0.029885506150615,"9.0-9.2":0.027586621062106,"9.3":0.29195840624062,"10.0-10.2":0.10115094389439,"10.3":0.32644168256826,"11.0-11.2":0.27586621062106,"11.3-11.4":0.49196140894089,"12.0-12.1":0.70345883708371,"12.2-12.4":4.9793851017102,"13.0-13.1":7.2299936033603,"13.2":3.2920034467447,"13.3":5.186284759676},I:{"3":0.00065684507042254,"4":0.0028463286384977,_:"76","2.1":0,"2.2":0.00043789671361502,"2.3":0.00043789671361502,"4.1":0.0050358122065728,"4.2-4.3":0.11013102347418,"4.4":0,"4.4.3-4.4.4":0.066998197183099},P:{"4":0.021725198653199,"5.0-5.4":0,"6.2-6.4":0.054312996632997,"7.2-7.4":0.032587797979798,"8.2":0.010862599326599,"9.2":0.10862599326599,"10.1":2.9872148148148},B:{"12":0,"13":0,"14":0,"15":0.006728,"16":0.006728,"17":0.107648,"18":3.485104,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.020184,"11":1.809832,"5.5":0},N:{"10":0,"11":0.035992},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.961968},O:{"0":0.386096},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.44297370446735},L:{"0":26.728808}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/AZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/AZ.js new file mode 100644 index 0000000..a27b4f2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/AZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004824,"26":0.004824,"27":0,"28":0.004824,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004824,"35":0,"36":0,"37":0.004824,"38":0.014472,"39":0.009648,"40":0.004824,"41":0.009648,"42":0.004824,"43":0.009648,"44":0.009648,"45":0.014472,"46":0.014472,"47":0.014472,"48":0.014472,"49":0.294264,"50":0.014472,"51":0.02412,"52":0.009648,"53":0.028944,"54":0.014472,"55":0.014472,"56":0.014472,"57":0.019296,"58":0.038592,"59":0.019296,"60":0.019296,"61":0.038592,"62":0.067536,"63":0.04824,"64":0.009648,"65":0.014472,"66":0.009648,"67":0.02412,"68":0.004824,"69":0.019296,"70":0.101304,"71":0.101304,"72":0.115776,"73":0.091656,"74":0.062712,"75":0.082008,"76":0.164016,"77":0.207432,"78":6.628176,"79":6.700536,"80":0.014472,"81":0.009648},C:{"2":0,"3":0.004824,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.004824,"16":0,"17":0,"18":0.004824,"19":0.004824,"20":0.004824,"21":0,"22":0,"23":0,"24":0.004824,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.004824,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004824,"39":0.004824,"40":0.004824,"41":0.004824,"42":0.004824,"43":0.004824,"44":0.004824,"45":0.009648,"46":0.004824,"47":0.009648,"48":0.033768,"49":0.004824,"50":0.009648,"51":0.019296,"52":0.033768,"53":0.038592,"54":0.014472,"55":0.019296,"56":0.038592,"57":0.028944,"58":0.009648,"59":0.004824,"60":0.004824,"61":0.004824,"62":0,"63":0.009648,"64":0.014472,"65":0.014472,"66":0.019296,"67":0,"68":0.067536,"69":0.009648,"70":0.101304,"71":0.2412,"72":0.004824,"73":0,"3.5":0,"3.6":0.004824},F:{"9":0,"11":0.004824,"12":0.004824,"15":0.004824,"16":0,"17":0,"18":0.014472,"19":0.004824,"20":0.004824,"21":0,"22":0.004824,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.004824,"30":0,"31":0.004824,"32":0.004824,"33":0,"34":0.004824,"35":0,"36":0.009648,"37":0.004824,"38":0,"39":0,"40":0.004824,"41":0.004824,"42":0.004824,"43":0.004824,"44":0,"45":0.009648,"46":0.009648,"47":0.004824,"48":0.004824,"49":0.004824,"50":0,"51":0,"52":0,"53":0.004824,"54":0.014472,"55":0.014472,"56":0.02412,"57":0.019296,"58":0.004824,"60":0,"62":0,"63":0.004824,"64":0.043416,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.019296},E:{"4":0,"5":0,"6":0,"7":0,"8":0.009648,"9":0.009648,"10":0.004824,"11":0.019296,"12":0.028944,"13":0.260496,_:"0","3.1":0,"3.2":0,"5.1":3.06324,"6.1":0,"7.1":0,"9.1":0.02412,"10.1":0.014472,"11.1":0.02412,"12.1":0.110952},G:{"8":0.00080753675367537,"3.2":0.0032301470147015,"4.0-4.1":0.0016150735073507,"4.2-4.3":0,"5.0-5.1":0.0048452205220522,"6.0-6.1":0.0016150735073507,"7.0-7.1":0.0056527572757276,"8.1-8.4":0.01049797779778,"9.0-9.2":0.0096904410441044,"9.3":0.10255716771677,"10.0-10.2":0.035531617161716,"10.3":0.1146702190219,"11.0-11.2":0.096904410441044,"11.3-11.4":0.17281286528653,"12.0-12.1":0.24710624662466,"12.2-12.4":1.7491246084608,"13.0-13.1":2.539703090309,"13.2":1.1563926312631,"13.3":1.8218029162916},I:{"3":0.0019187605633803,"4":0.0083146291079812,_:"76","2.1":0,"2.2":0.0012791737089202,"2.3":0.0012791737089202,"4.1":0.014710497652582,"4.2-4.3":0.32171218779343,"4.4":0,"4.4.3-4.4.4":0.19571357746479},P:{"4":1.2236721269841,"5.0-5.4":0.040451971139971,"6.2-6.4":0.17192087734488,"7.2-7.4":0.21237284848485,"8.2":0.080903942279942,"9.2":0.65734453102453,"10.1":4.6115247099567},B:{"12":0.004824,"13":0.009648,"14":0.019296,"15":0.009648,"16":0.004824,"17":0.019296,"18":0.149544,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.095050666666667,"9":0.060032,"10":0.025013333333333,"11":0.090048,"5.5":0},N:{"10":0.08198784,"11":0.25962816},J:{"7":0,"10":0.020704},R:{_:"0"},M:{"0":0.046584},O:{"0":0.357144},Q:{"1.2":0.015528},S:{"2.5":0.005176},H:{"0":2.3815469690722},L:{"0":53.362912}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BA.js new file mode 100644 index 0000000..a9db814 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.446622,"34":0,"35":0,"36":0,"37":0,"38":0.003333,"39":0,"40":0.003333,"41":0,"42":0,"43":0.003333,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.109989,"50":0,"51":0,"52":0,"53":0.003333,"54":0,"55":0.003333,"56":0.003333,"57":0.003333,"58":0.003333,"59":0.003333,"60":0.003333,"61":0.006666,"62":0.009999,"63":0.006666,"64":0.003333,"65":0.003333,"66":0.003333,"67":0.013332,"68":0.006666,"69":0.106656,"70":0.023331,"71":0.019998,"72":0.019998,"73":0.016665,"74":0.013332,"75":0.029997,"76":0.046662,"77":0.059994,"78":3.719628,"79":3.243009,"80":0.006666,"81":0.003333},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.003333,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003333,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.003333,"44":0,"45":0.036663,"46":0,"47":0.009999,"48":0.003333,"49":0,"50":0,"51":0.006666,"52":0.086658,"53":0,"54":0,"55":0,"56":0.006666,"57":0.003333,"58":0,"59":0.003333,"60":0.003333,"61":0.006666,"62":0,"63":0,"64":0,"65":0.003333,"66":0.006666,"67":0.006666,"68":0.076659,"69":0.019998,"70":0.253308,"71":0.813252,"72":0.009999,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.003333,"37":0,"38":0,"39":0,"40":0.003333,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006666,"56":0.006666,"57":0.003333,"58":0,"60":0,"62":0,"63":0,"64":0.009999,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.009999,"6":0,"7":0,"8":0,"9":0,"10":0.003333,"11":0.003333,"12":0.009999,"13":0.149985,_:"0","3.1":0,"3.2":0,"5.1":0.006666,"6.1":0,"7.1":0,"9.1":0,"10.1":0.009999,"11.1":0.016665,"12.1":0.029997},G:{"8":0.00060606600660066,"3.2":0.0024242640264026,"4.0-4.1":0.0012121320132013,"4.2-4.3":0,"5.0-5.1":0.003636396039604,"6.0-6.1":0.0012121320132013,"7.0-7.1":0.0042424620462046,"8.1-8.4":0.0078788580858086,"9.0-9.2":0.0072727920792079,"9.3":0.076970382838284,"10.0-10.2":0.026666904290429,"10.3":0.086061372937294,"11.0-11.2":0.072727920792079,"11.3-11.4":0.12969812541254,"12.0-12.1":0.1854561980198,"12.2-12.4":1.312738970297,"13.0-13.1":1.9060775907591,"13.2":0.86788652145215,"13.3":1.3672849108911},I:{"3":0.0010680457746479,"4":0.0046281983568075,_:"76","2.1":0,"2.2":0.00071203051643192,"2.3":0.00071203051643192,"4.1":0.0081883509389671,"4.2-4.3":0.17907567488263,"4.4":0,"4.4.3-4.4.4":0.10894066901408},P:{"4":0.15316971343874,"5.0-5.4":0.010211314229249,"6.2-6.4":0.040845256916996,"7.2-7.4":0.071479199604743,"8.2":0.051056571146245,"9.2":0.33697336956522,"10.1":4.4827669466403},B:{"12":0,"13":0.003333,"14":0.006666,"15":0.026664,"16":0.009999,"17":0.039996,"18":0.213312,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.003333,"9":0,"10":0.006666,"11":0.226644,"5.5":0},N:{"10":0,"11":0.060003},J:{"7":0,"10":0.006667},R:{_:"0"},M:{"0":0.166675},O:{"0":0.020001},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.18935654639175},L:{"0":75.630895}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BB.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BB.js new file mode 100644 index 0000000..e90bed6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BB.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00537,"39":0,"40":0.01611,"41":0.00537,"42":0,"43":0.00537,"44":0,"45":0.00537,"46":0.00537,"47":0.00537,"48":0.00537,"49":0.17721,"50":0.00537,"51":0.00537,"52":0.00537,"53":0.01074,"54":0.08055,"55":0.03759,"56":0.00537,"57":0.00537,"58":0.01074,"59":0.00537,"60":0.00537,"61":0.00537,"62":0.01611,"63":0.01611,"64":0,"65":0.04296,"66":0,"67":0.02685,"68":0.00537,"69":0.20943,"70":0.01074,"71":0.08055,"72":0.03222,"73":0.01611,"74":0.02685,"75":0.06444,"76":0.09129,"77":0.20943,"78":8.28591,"79":6.55677,"80":0.01074,"81":0.00537},C:{"2":0,"3":0.00537,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00537,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00537,"44":0.01074,"45":0.00537,"46":0,"47":0.00537,"48":0.01074,"49":0,"50":0.01074,"51":0.00537,"52":0.03222,"53":0.00537,"54":0.00537,"55":0.00537,"56":0.00537,"57":0.00537,"58":0,"59":0,"60":0.00537,"61":0,"62":0,"63":0,"64":0.00537,"65":0.00537,"66":0.00537,"67":0,"68":0.12351,"69":0.01611,"70":0.60144,"71":1.34787,"72":0.00537,"73":0,"3.5":0.00537,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00537,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00537,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00537,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01074,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00537},E:{"4":0.00537,"5":0,"6":0,"7":0,"8":0.00537,"9":0.00537,"10":0,"11":0.01074,"12":0.07518,"13":1.85265,_:"0","3.1":0,"3.2":0,"5.1":0.15036,"6.1":0,"7.1":0,"9.1":0.01074,"10.1":0.04296,"11.1":0.1611,"12.1":0.50478},G:{"8":0.0018137753775378,"3.2":0.007255101510151,"4.0-4.1":0.0036275507550755,"4.2-4.3":0,"5.0-5.1":0.010882652265227,"6.0-6.1":0.0036275507550755,"7.0-7.1":0.012696427642764,"8.1-8.4":0.023579079907991,"9.0-9.2":0.021765304530453,"9.3":0.23034947294729,"10.0-10.2":0.079806116611661,"10.3":0.25755610361036,"11.0-11.2":0.21765304530453,"11.3-11.4":0.38814793079308,"12.0-12.1":0.55501526552655,"12.2-12.4":3.9286374677468,"13.0-13.1":5.7043235623562,"13.2":2.5973263406341,"13.3":4.0918772517252},I:{"3":0.0064641549295775,"4":0.028011338028169,_:"76","2.1":0,"2.2":0.0043094366197183,"2.3":0.0043094366197183,"4.1":0.049558521126761,"4.2-4.3":1.0838233098592,"4.4":0,"4.4.3-4.4.4":0.6593438028169},P:{"4":0.30515261538462,"5.0-5.4":0,"6.2-6.4":0.010898307692308,"7.2-7.4":0.19616953846154,"8.2":0.032694923076923,"9.2":0.32694923076923,"10.1":4.7625604615385},B:{"12":0.01611,"13":0.01611,"14":0.01074,"15":0.19332,"16":0.03222,"17":0.2148,"18":3.34551,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01074,"9":0.01074,"10":0.01074,"11":0.49941,"5.5":0},N:{"10":0.013118333333333,"11":0.065591666666667},J:{"7":0,"10":0.01389},R:{_:"0"},M:{"0":0.20835},O:{"0":0.14816},Q:{"1.2":0.00463},S:{"2.5":0},H:{"0":0.11835139175258},L:{"0":44.14883}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BD.js new file mode 100644 index 0000000..62b5d04 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BD.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003704,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.003704,"29":0.003704,"30":0,"31":0.003704,"32":0,"33":0.007408,"34":0,"35":0,"36":0.007408,"37":0,"38":0.003704,"39":0,"40":0.007408,"41":0.003704,"42":0,"43":0.007408,"44":0.003704,"45":0,"46":0.003704,"47":0,"48":0.003704,"49":0.151864,"50":0,"51":0.003704,"52":0.003704,"53":0.003704,"54":0,"55":0.003704,"56":0.003704,"57":0.003704,"58":0.003704,"59":0,"60":0.003704,"61":0.022224,"62":0.003704,"63":0.022224,"64":0.003704,"65":0.007408,"66":0.003704,"67":0.011112,"68":0.003704,"69":0.025928,"70":0.029632,"71":0.05556,"72":0.040744,"73":0.03704,"74":0.044448,"75":0.033336,"76":0.05556,"77":0.085192,"78":4.211448,"79":3.959576,"80":0.033336,"81":0.011112},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003704,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.003704,"37":0,"38":0.003704,"39":0.003704,"40":0.011112,"41":0.003704,"42":0.003704,"43":0.01852,"44":0.007408,"45":0.003704,"46":0.003704,"47":0.022224,"48":0.022224,"49":0.007408,"50":0.007408,"51":0.003704,"52":0.07408,"53":0.003704,"54":0.003704,"55":0.003704,"56":0.011112,"57":0.007408,"58":0.003704,"59":0.003704,"60":0.003704,"61":0.003704,"62":0.011112,"63":0.003704,"64":0.007408,"65":0.011112,"66":0.011112,"67":0.007408,"68":0.085192,"69":0.022224,"70":0.344472,"71":1.348256,"72":0.248168,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0.003704,"12":0,"15":0.003704,"16":0,"17":0,"18":0.003704,"19":0.003704,"20":0.003704,"21":0,"22":0,"23":0,"24":0.007408,"25":0.003704,"26":0.011112,"27":0.011112,"28":0.025928,"29":0.007408,"30":0.011112,"31":0.003704,"32":0.01852,"33":0.007408,"34":0,"35":0.003704,"36":0.003704,"37":0.014816,"38":0.025928,"39":0,"40":0,"41":0,"42":0.01852,"43":0.003704,"44":0.007408,"45":0.437072,"46":0.274096,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.014816,"54":0.011112,"55":0.025928,"56":0.003704,"57":0,"58":0,"60":0,"62":0,"63":0.003704,"64":0.014816,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.014816},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.007408,"12":0.003704,"13":0.044448,_:"0","3.1":0,"3.2":0,"5.1":0.003704,"6.1":0,"7.1":0,"9.1":0,"10.1":0.003704,"11.1":0.007408,"12.1":0.011112},G:{"8":0.00012486368636864,"3.2":0.00049945474547455,"4.0-4.1":0.00024972737273727,"4.2-4.3":0,"5.0-5.1":0.00074918211821182,"6.0-6.1":0.00024972737273727,"7.0-7.1":0.00087404580458046,"8.1-8.4":0.0016232279227923,"9.0-9.2":0.0014983642364236,"9.3":0.015857688168817,"10.0-10.2":0.00549400220022,"10.3":0.017730643464346,"11.0-11.2":0.014983642364236,"11.3-11.4":0.026720828882888,"12.0-12.1":0.038208288028803,"12.2-12.4":0.27045474467447,"13.0-13.1":0.39269629362936,"13.2":0.17880479887989,"13.3":0.28169247644764},I:{"3":0.0019770422535211,"4":0.0085671830985916,_:"76","2.1":0,"2.2":0.0013180281690141,"2.3":0.0013180281690141,"4.1":0.015157323943662,"4.2-4.3":0.33148408450704,"4.4":0,"4.4.3-4.4.4":0.20165830985915},P:{"4":0.7865037635468,"5.0-5.4":0.029867231527094,"6.2-6.4":0.059734463054187,"7.2-7.4":0.15929190147783,"8.2":0.059734463054187,"9.2":0.18915913300493,"10.1":0.73672504433498},B:{"12":0.01852,"13":0.011112,"14":0.01852,"15":0.011112,"16":0.011112,"17":0.025928,"18":0.140752,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.053502222222222,"9":0.0041155555555556,"10":0.0082311111111111,"11":0.045271111111111,"5.5":0},N:{"10":0.019460363636364,"11":0.087571636363636},J:{"7":0,"10":0.012592},R:{_:"0"},M:{"0":0.176288},O:{"0":7.328544},Q:{"1.2":0.012592},S:{"2.5":0},H:{"0":7.9515018281787},L:{"0":60.720064}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BE.js new file mode 100644 index 0000000..be98105 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.012508,"30":0,"31":0,"32":0,"33":0,"34":0.006254,"35":0,"36":0,"37":0,"38":0.006254,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.018762,"49":0.43778,"50":0,"51":0,"52":0,"53":0.012508,"54":0,"55":0.006254,"56":0.006254,"57":0.006254,"58":0.006254,"59":0.006254,"60":0.006254,"61":0.006254,"62":0.006254,"63":0.050032,"64":0.006254,"65":0.025016,"66":0.037524,"67":0.037524,"68":0.025016,"69":0.050032,"70":0.037524,"71":0.050032,"72":0.068794,"73":0.06254,"74":0.081302,"75":0.15635,"76":0.15635,"77":0.206382,"78":11.451074,"79":8.94322,"80":0.018762,"81":0.006254},C:{"2":0,"3":0.006254,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.012508,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006254,"46":0,"47":0.006254,"48":0.03127,"49":0,"50":0.006254,"51":0,"52":0.068794,"53":0,"54":0.050032,"55":0,"56":0.03127,"57":0.006254,"58":0.006254,"59":0.006254,"60":0.06254,"61":0.006254,"62":0.006254,"63":0.012508,"64":0.012508,"65":0.037524,"66":0.012508,"67":0.018762,"68":0.243906,"69":0.056286,"70":0.81302,"71":2.476584,"72":0.018762,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006254,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006254,"46":0.006254,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006254,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.006254,"64":0.037524,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.006254},E:{"4":0.006254,"5":0.006254,"6":0,"7":0,"8":0.006254,"9":0.037524,"10":0.018762,"11":0.056286,"12":0.181366,"13":3.339636,_:"0","3.1":0,"3.2":0,"5.1":0.12508,"6.1":0.006254,"7.1":0,"9.1":0.037524,"10.1":0.15635,"11.1":0.243906,"12.1":0.637908},G:{"8":0.0021391609160916,"3.2":0.0085566436643664,"4.0-4.1":0.0042783218321832,"4.2-4.3":0,"5.0-5.1":0.01283496549655,"6.0-6.1":0.0042783218321832,"7.0-7.1":0.014974126412641,"8.1-8.4":0.027809091909191,"9.0-9.2":0.025669930993099,"9.3":0.27167343634363,"10.0-10.2":0.094123080308031,"10.3":0.30376085008501,"11.0-11.2":0.25669930993099,"11.3-11.4":0.4577804360436,"12.0-12.1":0.65458324032403,"12.2-12.4":4.6334225442544,"13.0-13.1":6.7276610811081,"13.2":3.0632784318432,"13.3":4.8259470267027},I:{"3":0.001241338028169,"4":0.0053791314553991,_:"76","2.1":0,"2.2":0.00082755868544601,"2.3":0.00082755868544601,"4.1":0.0095169248826291,"4.2-4.3":0.20813100938967,"4.4":0,"4.4.3-4.4.4":0.12661647887324},P:{"4":0.12618105263158,"5.0-5.4":0.010515087719298,"6.2-6.4":0.021030175438596,"7.2-7.4":0.031545263157895,"8.2":0.021030175438596,"9.2":0.15772631578947,"10.1":3.806461754386},B:{"12":0.006254,"13":0.006254,"14":0.018762,"15":0.018762,"16":0.09381,"17":0.212636,"18":2.826808,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.13755099408284,"9":0.026200189349112,"10":0.072050520710059,"11":1.978114295858,"5.5":0},N:{"10":0,"11":0.041206},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.202284},O:{"0":0.05619},Q:{"1.2":0.011238},S:{"2.5":0},H:{"0":0.10994059450172},L:{"0":33.562398}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BF.js new file mode 100644 index 0000000..524fff0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.002521,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.012605,"27":0,"28":0,"29":0.002521,"30":0.007563,"31":0.002521,"32":0.002521,"33":0,"34":0,"35":0,"36":0.002521,"37":0.005042,"38":0,"39":0,"40":0.002521,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.005042,"47":0,"48":0.002521,"49":0.065546,"50":0.002521,"51":0,"52":0.005042,"53":0,"54":0,"55":0.005042,"56":0,"57":0,"58":0.002521,"59":0,"60":0,"61":0.002521,"62":0,"63":0.022689,"64":0.002521,"65":0.010084,"66":0,"67":0.045378,"68":0.002521,"69":0.030252,"70":0.002521,"71":0.005042,"72":0.005042,"73":0.005042,"74":0.007563,"75":0.015126,"76":0.010084,"77":0.035294,"78":0.963022,"79":0.804199,"80":0.012605,"81":0.007563},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.118487,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.002521,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.005042,"44":0.002521,"45":0,"46":0,"47":0.010084,"48":0.015126,"49":0,"50":0.002521,"51":0,"52":0.012605,"53":0,"54":0.002521,"55":0,"56":0.002521,"57":0.002521,"58":0,"59":0.002521,"60":0.002521,"61":0.015126,"62":0.005042,"63":0.002521,"64":0.012605,"65":0.002521,"66":0.002521,"67":0.020168,"68":0.078151,"69":0.022689,"70":0.461343,"71":0.927728,"72":0.015126,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0.005042,"16":0,"17":0,"18":0.002521,"19":0.005042,"20":0.005042,"21":0,"22":0,"23":0.007563,"24":0,"25":0,"26":0,"27":0,"28":0.002521,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.002521,"37":0,"38":0.002521,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.012605,"46":0.002521,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005042,"54":0.002521,"55":0.002521,"56":0,"57":0,"58":0.002521,"60":0,"62":0,"63":0.005042,"64":0.010084,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.040336},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.005042,"10":0.015126,"11":0.060504,"12":0.027731,"13":0.115966,_:"0","3.1":0,"3.2":0,"5.1":0.678149,"6.1":0,"7.1":0,"9.1":0.012605,"10.1":0.027731,"11.1":0.017647,"12.1":0.02521},G:{"8":0.00028694469446945,"3.2":0.0011477787778778,"4.0-4.1":0.00057388938893889,"4.2-4.3":0,"5.0-5.1":0.0017216681668167,"6.0-6.1":0.00057388938893889,"7.0-7.1":0.0020086128612861,"8.1-8.4":0.0037302810281028,"9.0-9.2":0.0034433363336334,"9.3":0.03644197619762,"10.0-10.2":0.012625566556656,"10.3":0.040746146614661,"11.0-11.2":0.034433363336334,"11.3-11.4":0.061406164616462,"12.0-12.1":0.087805076507651,"12.2-12.4":0.62152220822082,"13.0-13.1":0.90244106410641,"13.2":0.41090480248025,"13.3":0.64734723072307},I:{"3":0.0013398028169014,"4":0.0058058122065728,_:"76","2.1":0,"2.2":0.00089320187793427,"2.3":0.00089320187793427,"4.1":0.010271821596244,"4.2-4.3":0.22464027230047,"4.4":0,"4.4.3-4.4.4":0.13665988732394},P:{"4":0.29904668181818,"5.0-5.4":0.030935863636364,"6.2-6.4":0.020623909090909,"7.2-7.4":0.23717495454545,"8.2":0.041247818181818,"9.2":0.453726,"10.1":0.95901177272727},B:{"12":0.012605,"13":0.015126,"14":0.007563,"15":0.017647,"16":0.005042,"17":0.040336,"18":0.131092,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.015434693877551,"9":0,"10":0.0051448979591837,"11":0.10547040816327,"5.5":0},N:{"10":0.00934875,"11":0.02804625},J:{"7":0,"10":0.044874},R:{_:"0"},M:{"0":0.172017},O:{"0":1.966977},Q:{"1.2":0.044874},S:{"2.5":0.022437},H:{"0":18.579583670103},L:{"0":61.131692}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BG.js new file mode 100644 index 0000000..4a4bd0c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005228,"27":0,"28":0,"29":0,"30":0,"31":0.005228,"32":0,"33":0,"34":0.005228,"35":0.005228,"36":0.005228,"37":0,"38":0.010456,"39":0,"40":0.005228,"41":0.005228,"42":0.036596,"43":0.005228,"44":0,"45":0,"46":0.005228,"47":0.005228,"48":0.005228,"49":0.747604,"50":0.005228,"51":0.005228,"52":0.005228,"53":0.010456,"54":0.005228,"55":0.010456,"56":0.010456,"57":0.010456,"58":0.02614,"59":0.005228,"60":0.005228,"61":0.067964,"62":0.020912,"63":0.057508,"64":0.010456,"65":0.015684,"66":0.109788,"67":0.020912,"68":0.031368,"69":0.047052,"70":0.062736,"71":0.109788,"72":0.067964,"73":0.062736,"74":0.047052,"75":0.120244,"76":0.088876,"77":0.1307,"78":8.840548,"79":7.099624,"80":0.031368,"81":0.005228},C:{"2":0.005228,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005228,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005228,"39":0,"40":0.005228,"41":0,"42":0,"43":0.005228,"44":0,"45":0.005228,"46":0,"47":0.015684,"48":0.015684,"49":0.005228,"50":0.010456,"51":0.005228,"52":0.282312,"53":0.005228,"54":0.005228,"55":0.005228,"56":0.031368,"57":0.010456,"58":0.010456,"59":0.005228,"60":0.109788,"61":0.010456,"62":0.020912,"63":0.015684,"64":0.020912,"65":0.015684,"66":0.036596,"67":0.02614,"68":0.271856,"69":0.135928,"70":0.988092,"71":3.05838,"72":0.031368,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.020912,"37":0,"38":0.005228,"39":0,"40":0.010456,"41":0,"42":0,"43":0,"44":0,"45":0.010456,"46":0.005228,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005228,"54":0,"55":0.010456,"56":0.010456,"57":0.005228,"58":0,"60":0,"62":0,"63":0.005228,"64":0.036596,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.010456,"12":0.02614,"13":0.3921,_:"0","3.1":0,"3.2":0,"5.1":0.318908,"6.1":0,"7.1":0,"9.1":0.005228,"10.1":0.015684,"11.1":0.02614,"12.1":0.057508},G:{"8":0.00083420622062206,"3.2":0.0033368248824882,"4.0-4.1":0.0016684124412441,"4.2-4.3":0,"5.0-5.1":0.0050052373237324,"6.0-6.1":0.0016684124412441,"7.0-7.1":0.0058394435443544,"8.1-8.4":0.010844680868087,"9.0-9.2":0.010010474647465,"9.3":0.105944190019,"10.0-10.2":0.036705073707371,"10.3":0.11845728332833,"11.0-11.2":0.10010474647465,"11.3-11.4":0.17852013121312,"12.0-12.1":0.25526710351035,"12.2-12.4":1.8068906738674,"13.0-13.1":2.6235785638564,"13.2":1.1945833079308,"13.3":1.8819692337234},I:{"3":0.0019430422535211,"4":0.0084198497652582,_:"76","2.1":0,"2.2":0.0012953615023474,"2.3":0.0012953615023474,"4.1":0.014896657276995,"4.2-4.3":0.32578341784038,"4.4":0,"4.4.3-4.4.4":0.19819030985915},P:{"4":0.18580975,"5.0-5.4":0.010322763888889,"6.2-6.4":0.010322763888889,"7.2-7.4":0.051613819444444,"8.2":0.041291055555556,"9.2":0.21677804166667,"10.1":2.4464950416667},B:{"12":0.005228,"13":0.005228,"14":0.015684,"15":0.020912,"16":0.015684,"17":0.073192,"18":0.616904,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0052548102564103,"7":0,"8":0.021019241025641,"9":0.0052548102564103,"10":0.010509620512821,"11":0.98264951794872,"5.5":0},N:{"10":0.011134666666667,"11":0.055673333333333},J:{"7":0,"10":0.004772},R:{_:"0"},M:{"0":0.209968},O:{"0":0.07158},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.24396235051546},L:{"0":58.611}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BH.js new file mode 100644 index 0000000..87c4440 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.027966,"34":0,"35":0,"36":0.004661,"37":0,"38":0.004661,"39":0,"40":0,"41":0,"42":0.004661,"43":0.009322,"44":0,"45":0,"46":0.004661,"47":0,"48":0.004661,"49":0.074576,"50":0,"51":0.004661,"52":0,"53":0,"54":0,"55":0.004661,"56":0.004661,"57":0,"58":0.009322,"59":0.004661,"60":0.009322,"61":0.009322,"62":0.013983,"63":0.023305,"64":0.009322,"65":0.027966,"66":0.004661,"67":0.051271,"68":0.004661,"69":0.065254,"70":0.013983,"71":0.027966,"72":0.009322,"73":0.04661,"74":0.04661,"75":0.04661,"76":0.079237,"77":0.13983,"78":7.005483,"79":6.133876,"80":0.027966,"81":0.013983},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.004661,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004661,"46":0,"47":0,"48":0.023305,"49":0,"50":0,"51":0,"52":0.027966,"53":0,"54":0,"55":0,"56":0.004661,"57":0,"58":0,"59":0,"60":0.023305,"61":0,"62":0,"63":0,"64":0,"65":0.004661,"66":0.009322,"67":0.004661,"68":0.037288,"69":0.009322,"70":0.274999,"71":0.65254,"72":0.037288,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004661,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.023305,"46":0.009322,"47":0,"48":0,"49":0,"50":0,"51":0.013983,"52":0,"53":0.009322,"54":0.004661,"55":0.004661,"56":0.004661,"57":0,"58":0,"60":0,"62":0,"63":0.018644,"64":0.018644,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.069915,"11":0.069915,"12":0.191101,"13":2.046179,_:"0","3.1":0,"3.2":0,"5.1":0.4661,"6.1":0,"7.1":0,"9.1":0.027966,"10.1":0.205084,"11.1":0.274999,"12.1":0.680506},G:{"8":0.0016837714771477,"3.2":0.0067350859085909,"4.0-4.1":0.0033675429542954,"4.2-4.3":0,"5.0-5.1":0.010102628862886,"6.0-6.1":0.0033675429542954,"7.0-7.1":0.011786400340034,"8.1-8.4":0.02188902920292,"9.0-9.2":0.020205257725773,"9.3":0.21383897759776,"10.0-10.2":0.074085944994499,"10.3":0.23909554975498,"11.0-11.2":0.20205257725773,"11.3-11.4":0.36032709610961,"12.0-12.1":0.5152340720072,"12.2-12.4":3.647049019502,"13.0-13.1":5.2954612956296,"13.2":2.4111607552755,"13.3":3.7985884524452},I:{"3":0.00027452816901408,"4":0.0011896220657277,_:"76","2.1":0,"2.2":0.00018301877934272,"2.3":0.00018301877934272,"4.1":0.0021047159624413,"4.2-4.3":0.046029223004695,"4.4":0,"4.4.3-4.4.4":0.028001873239437},P:{"4":0.34221457836645,"5.0-5.4":0.040260538631347,"6.2-6.4":0.040260538631347,"7.2-7.4":0.16104215452539,"8.2":0.20130269315673,"9.2":0.52338700220751,"10.1":3.2208430905077},B:{"12":0.004661,"13":0.004661,"14":0.009322,"15":0.027966,"16":0.037288,"17":0.149152,"18":1.277114,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.014514,"9":0.004838,"10":0.004838,"11":0.358012,"5.5":0},N:{"10":0,"11":0.016017},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.074746},O:{"0":6.145189},Q:{"1.2":0.005339},S:{"2.5":0},H:{"0":1.293982790378},L:{"0":43.487672}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BI.js new file mode 100644 index 0000000..f5caf99 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0.005103,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.005103,"32":0,"33":0.020412,"34":0,"35":0,"36":0.005103,"37":0,"38":0,"39":0,"40":0.005103,"41":0,"42":0,"43":0.025515,"44":0.005103,"45":0,"46":0,"47":0,"48":0,"49":0.040824,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005103,"56":0,"57":0.015309,"58":0.005103,"59":0,"60":0.015309,"61":0,"62":0,"63":0.030618,"64":0.005103,"65":0.025515,"66":0.005103,"67":0.010206,"68":0.005103,"69":0.173502,"70":0.005103,"71":0.030618,"72":0.010206,"73":0.096957,"74":0.030618,"75":0.015309,"76":0.045927,"77":0.117369,"78":3.669057,"79":2.148363,"80":0,"81":0},C:{"2":0,"3":0.005103,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.005103,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.005103,"21":0.005103,"22":0,"23":0.010206,"24":0.010206,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.020412,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.010206,"41":0,"42":0.005103,"43":0.020412,"44":0.005103,"45":0.010206,"46":0,"47":0.035721,"48":0.025515,"49":0.010206,"50":0,"51":0,"52":0.040824,"53":0,"54":0.005103,"55":0,"56":0.015309,"57":0,"58":0,"59":0.005103,"60":0.005103,"61":0.005103,"62":0,"63":0.010206,"64":0.005103,"65":0,"66":0.005103,"67":0.010206,"68":0.066339,"69":0.015309,"70":0.61236,"71":1.68399,"72":0.10206,"73":0,"3.5":0,"3.6":0.005103},F:{"9":0,"11":0,"12":0,"15":0,"16":0.005103,"17":0,"18":0,"19":0.010206,"20":0.025515,"21":0.005103,"22":0,"23":0.040824,"24":0,"25":0,"26":0,"27":0,"28":0.005103,"29":0,"30":0.005103,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005103,"37":0.005103,"38":0.010206,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.025515,"46":0.005103,"47":0,"48":0,"49":0,"50":0,"51":0.005103,"52":0,"53":0.010206,"54":0.005103,"55":0.020412,"56":0.040824,"57":0,"58":0,"60":0,"62":0,"63":0.035721,"64":0.040824,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.045927},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.209223,"12":0.005103,"13":0.158193,_:"0","3.1":0,"3.2":0,"5.1":12.85956,"6.1":0,"7.1":0,"9.1":0.005103,"10.1":0,"11.1":0.035721,"12.1":0.081648},G:{"8":0.00016104790479048,"3.2":0.00064419161916192,"4.0-4.1":0.00032209580958096,"4.2-4.3":0,"5.0-5.1":0.00096628742874287,"6.0-6.1":0.00032209580958096,"7.0-7.1":0.0011273353335334,"8.1-8.4":0.0020936227622762,"9.0-9.2":0.0019325748574857,"9.3":0.020453083908391,"10.0-10.2":0.0070861078107811,"10.3":0.022868802480248,"11.0-11.2":0.019325748574857,"11.3-11.4":0.034464251625163,"12.0-12.1":0.049280658865887,"12.2-12.4":0.34882976177618,"13.0-13.1":0.50649566056606,"13.2":0.23062059965997,"13.3":0.36332407320732},I:{"3":0.0018417007042254,"4":0.0079807030516432,_:"76","2.1":0,"2.2":0.0012278004694836,"2.3":0.0012278004694836,"4.1":0.014119705399061,"4.2-4.3":0.30879181807512,"4.4":0,"4.4.3-4.4.4":0.18785347183099},P:{"4":0.3000714893617,"5.0-5.4":0.06001429787234,"6.2-6.4":0.040009531914894,"7.2-7.4":0.26006195744681,"8.2":0.020004765957447,"9.2":0.28006672340426,"10.1":0.45010723404255},B:{"12":0.030618,"13":0.020412,"14":0.045927,"15":0.122472,"16":0.015309,"17":0.091854,"18":0.403137,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0828144,"9":0,"10":0.0103518,"11":0.2691468,"5.5":0},N:{"10":0.01346675,"11":0.14813425},J:{"7":0,"10":0.019588},R:{_:"0"},M:{"0":0.09794},O:{"0":1.660083},Q:{"1.2":0.024485},S:{"2.5":0},H:{"0":21.126995840206},L:{"0":34.223953}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BJ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BJ.js new file mode 100644 index 0000000..c1d0f92 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BJ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005097,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005097,"27":0.035679,"28":0,"29":0.005097,"30":0.005097,"31":0,"32":0.005097,"33":0,"34":0,"35":0,"36":0.010194,"37":0.035679,"38":0,"39":0,"40":0.005097,"41":0,"42":0.005097,"43":0.010194,"44":0.010194,"45":0.005097,"46":0.005097,"47":0.015291,"48":0.005097,"49":0.066261,"50":0.015291,"51":0,"52":0,"53":0,"54":0,"55":0.010194,"56":0.020388,"57":0.005097,"58":0.086649,"59":0.005097,"60":0.015291,"61":0.005097,"62":0.015291,"63":0.127425,"64":0.010194,"65":0.020388,"66":0.010194,"67":0.045873,"68":0.010194,"69":0.107037,"70":0.035679,"71":0.091746,"72":0.096843,"73":0.066261,"74":0.117231,"75":0.173298,"76":0.193686,"77":0.397566,"78":6.213243,"79":5.550633,"80":0.025485,"81":0.005097},C:{"2":0,"3":0,"4":0.005097,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.005097,"41":0.005097,"42":0.005097,"43":0.020388,"44":0,"45":0.005097,"46":0,"47":0.025485,"48":0.005097,"49":0.005097,"50":0.010194,"51":0,"52":0.020388,"53":0.005097,"54":0,"55":0.005097,"56":0.020388,"57":0,"58":0.005097,"59":0.005097,"60":0.020388,"61":0.010194,"62":0.005097,"63":0.005097,"64":0.005097,"65":0.010194,"66":0.020388,"67":0.020388,"68":0.127425,"69":0.112134,"70":0.733968,"71":2.278359,"72":0.056067,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0.030582,"12":0,"15":0.005097,"16":0.005097,"17":0,"18":0,"19":0,"20":0.010194,"21":0,"22":0,"23":0.015291,"24":0,"25":0,"26":0,"27":0,"28":0.025485,"29":0,"30":0.010194,"31":0,"32":0.005097,"33":0.005097,"34":0,"35":0,"36":0.010194,"37":0.005097,"38":0.005097,"39":0,"40":0.005097,"41":0,"42":0.015291,"43":0.005097,"44":0,"45":0.030582,"46":0.015291,"47":0,"48":0,"49":0.005097,"50":0,"51":0,"52":0,"53":0.025485,"54":0.005097,"55":0.005097,"56":0,"57":0,"58":0.005097,"60":0.005097,"62":0.010194,"63":0.015291,"64":0.025485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.091746},E:{"4":0,"5":0,"6":0,"7":0,"8":0.025485,"9":0.025485,"10":0,"11":0.005097,"12":0.071358,"13":0.596349,_:"0","3.1":0,"3.2":0,"5.1":3.348729,"6.1":0,"7.1":0,"9.1":0.005097,"10.1":0.015291,"11.1":0.076455,"12.1":0.183492},G:{"8":0.00032002850285029,"3.2":0.0012801140114011,"4.0-4.1":0.00064005700570057,"4.2-4.3":0,"5.0-5.1":0.0019201710171017,"6.0-6.1":0.00064005700570057,"7.0-7.1":0.002240199519952,"8.1-8.4":0.0041603705370537,"9.0-9.2":0.0038403420342034,"9.3":0.040643619861986,"10.0-10.2":0.014081254125413,"10.3":0.04544404740474,"11.0-11.2":0.038403420342034,"11.3-11.4":0.068486099609961,"12.0-12.1":0.097928721872187,"12.2-12.4":0.69318173717372,"13.0-13.1":1.0064896414641,"13.2":0.45828081608161,"13.3":0.72198430243024},I:{"3":0.00082712323943662,"4":0.0035842007042254,_:"76","2.1":0,"2.2":0.00055141549295775,"2.3":0.00055141549295775,"4.1":0.0063412781690141,"4.2-4.3":0.13868099647887,"4.4":0,"4.4.3-4.4.4":0.084366570422535},P:{"4":0.102963,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0411852,"8.2":0.0205926,"9.2":0.1132593,"10.1":0.3397779},B:{"12":0.030582,"13":0.010194,"14":0.025485,"15":0.015291,"16":0.030582,"17":0.081552,"18":0.494409,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.005097,"8":0.061164,"9":0,"10":0.010194,"11":0.10194,"5.5":0},N:{"10":0.011588909090909,"11":0.11588909090909},J:{"7":0,"10":0.024515},R:{_:"0"},M:{"0":0.201023},O:{"0":1.475803},Q:{"1.2":0.029418},S:{"2.5":0.014709},H:{"0":14.152981266323},L:{"0":45.845825}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BM.js new file mode 100644 index 0000000..b158212 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.034628,"46":0,"47":0,"48":0,"49":0.225082,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.051942,"58":0.008657,"59":0.008657,"60":0.008657,"61":0.043285,"62":0.008657,"63":0.077913,"64":0.008657,"65":0.051942,"66":0.069256,"67":0.112541,"68":0.164483,"69":0.034628,"70":0.121198,"71":0.129855,"72":0.060599,"73":0.372251,"74":0.190454,"75":0.190454,"76":0.467478,"77":2.501873,"78":20.075583,"79":12.353539,"80":0.034628,"81":0.008657},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.017314,"49":0,"50":0,"51":0,"52":0.051942,"53":0,"54":0,"55":0,"56":0.008657,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.008657,"63":0,"64":0.008657,"65":0.017314,"66":0,"67":0.060599,"68":0.121198,"69":0.103884,"70":0.77913,"71":1.887226,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.051942,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.008657,"64":0.051942,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.017314,"10":0.008657,"11":0.077913,"12":0.155826,"13":7.722044,_:"0","3.1":0,"3.2":0,"5.1":0.008657,"6.1":0.008657,"7.1":0,"9.1":0.121198,"10.1":0.216425,"11.1":0.597333,"12.1":0.848386},G:{"8":0.0018394300430043,"3.2":0.0073577201720172,"4.0-4.1":0.0036788600860086,"4.2-4.3":0,"5.0-5.1":0.011036580258026,"6.0-6.1":0.0036788600860086,"7.0-7.1":0.01287601030103,"8.1-8.4":0.023912590559056,"9.0-9.2":0.022073160516052,"9.3":0.23360761546155,"10.0-10.2":0.080934921892189,"10.3":0.26119906610661,"11.0-11.2":0.22073160516052,"11.3-11.4":0.39363802920292,"12.0-12.1":0.56286559315932,"12.2-12.4":3.9842054731473,"13.0-13.1":5.7850074852485,"13.2":2.6340638215822,"13.3":4.1497541770177},I:{"3":0.0015177922535211,"4":0.0065770997652582,_:"76","2.1":0,"2.2":0.0010118615023474,"2.3":0.0010118615023474,"4.1":0.011636407276995,"4.2-4.3":0.25448316784038,"4.4":0,"4.4.3-4.4.4":0.15481480985915},P:{"4":0.033329098591549,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.022219399061033,"8.2":0.022219399061033,"9.2":0.055548497652582,"10.1":2.2108302065728},B:{"12":0.017314,"13":0.034628,"14":0.051942,"15":0.138512,"16":0.441507,"17":0.753159,"18":6.804402,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.008657,"9":0,"10":0.008657,"11":9.600613,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.042976},R:{_:"0"},M:{"0":0.056406},O:{"0":0.002686},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.0089002594501718},L:{"0":8.131415}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BN.js new file mode 100644 index 0000000..f927c15 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004618,"34":0.004618,"35":0,"36":0.004618,"37":0,"38":0.041562,"39":0,"40":0.032326,"41":0,"42":0,"43":0,"44":0.004618,"45":0.004618,"46":0.004618,"47":0.004618,"48":0.004618,"49":0.152394,"50":0.004618,"51":0.004618,"52":0.004618,"53":0.009236,"54":0.004618,"55":0.009236,"56":0.018472,"57":0.009236,"58":0.009236,"59":0.004618,"60":0.009236,"61":0.004618,"62":0.013854,"63":0.13854,"64":0.004618,"65":0.060034,"66":0.009236,"67":0.055416,"68":0.009236,"69":0.050798,"70":0.018472,"71":0.02309,"72":0.036944,"73":0.050798,"74":0.055416,"75":0.087742,"76":0.087742,"77":0.170866,"78":7.282586,"79":6.012636,"80":0.027708,"81":0.009236},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.004618,"17":0,"18":0,"19":0,"20":0,"21":0.004618,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.013854,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.004618,"40":0,"41":0,"42":0,"43":0.009236,"44":0,"45":0.018472,"46":0,"47":0.004618,"48":0.027708,"49":0,"50":0,"51":0.004618,"52":0.04618,"53":0.004618,"54":0.004618,"55":0.004618,"56":0.013854,"57":0.004618,"58":0,"59":0,"60":0.009236,"61":0.004618,"62":0.009236,"63":0,"64":0.004618,"65":0.004618,"66":0.013854,"67":0.009236,"68":0.09236,"69":0.018472,"70":0.350968,"71":1.075994,"72":0.087742,"73":0,"3.5":0,"3.6":0.004618},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004618,"35":0,"36":0.004618,"37":0.032326,"38":0.004618,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.027708,"46":0.027708,"47":0,"48":0,"49":0.004618,"50":0,"51":0,"52":0,"53":0.009236,"54":0.004618,"55":0.036944,"56":0,"57":0,"58":0,"60":0.009236,"62":0,"63":0.009236,"64":0.018472,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02309},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004618,"9":0.004618,"10":0.018472,"11":0.02309,"12":0.175484,"13":1.126792,_:"0","3.1":0,"3.2":0,"5.1":0.064652,"6.1":0,"7.1":0,"9.1":0.013854,"10.1":0.212428,"11.1":0.11545,"12.1":0.503362},G:{"8":0.0017060074007401,"3.2":0.0068240296029603,"4.0-4.1":0.0034120148014801,"4.2-4.3":0,"5.0-5.1":0.01023604440444,"6.0-6.1":0.0034120148014801,"7.0-7.1":0.011942051805181,"8.1-8.4":0.022178096209621,"9.0-9.2":0.020472088808881,"9.3":0.21666293989399,"10.0-10.2":0.075064325632563,"10.3":0.24225305090509,"11.0-11.2":0.20472088808881,"11.3-11.4":0.36508558375838,"12.0-12.1":0.52203826462646,"12.2-12.4":3.695212030003,"13.0-13.1":5.3653932753275,"13.2":2.4430025978598,"13.3":3.8487526960696},I:{"3":0.00095070422535211,"4":0.0041197183098592,_:"76","2.1":0,"2.2":0.00063380281690141,"2.3":0.00063380281690141,"4.1":0.0072887323943662,"4.2-4.3":0.1594014084507,"4.4":0,"4.4.3-4.4.4":0.096971830985916},P:{"4":0.78175253164557,"5.0-5.4":0.020846734177215,"6.2-6.4":0.083386936708861,"7.2-7.4":0.11465703797468,"8.2":0.052116835443038,"9.2":0.29185427848101,"10.1":1.9491696455696},B:{"12":0.004618,"13":0,"14":0.004618,"15":0.009236,"16":0.036944,"17":0.064652,"18":0.452564,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.016163,"9":0.010775333333333,"10":0.010775333333333,"11":0.38252433333333,"5.5":0},N:{"10":0.012558,"11":0.025116},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.209898},O:{"0":2.34117},Q:{"1.2":0.069966},S:{"2.5":0},H:{"0":4.1017405670103},L:{"0":47.304082}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BO.js new file mode 100644 index 0000000..35f2d70 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.012724,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.006362,"27":0,"28":0,"29":0,"30":0,"31":0.019086,"32":0,"33":0.025448,"34":0.006362,"35":0,"36":0.006362,"37":0,"38":0.012724,"39":0,"40":0.006362,"41":0,"42":0,"43":0,"44":0.006362,"45":0.012724,"46":0,"47":0.012724,"48":0.012724,"49":0.400806,"50":0.006362,"51":0.006362,"52":0.006362,"53":0.019086,"54":0,"55":0.006362,"56":0.006362,"57":0.006362,"58":0.019086,"59":0.006362,"60":0.006362,"61":0.012724,"62":0.012724,"63":0.050896,"64":0.012724,"65":0.050896,"66":0.025448,"67":0.101792,"68":0.019086,"69":0.050896,"70":0.15905,"71":0.133602,"72":0.108154,"73":0.152688,"74":0.171774,"75":0.171774,"76":0.184498,"77":0.28629,"78":13.048462,"79":10.56092,"80":0.012724,"81":0.006362},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.006362,"39":0,"40":0,"41":0,"42":0,"43":0.006362,"44":0,"45":0,"46":0,"47":0.012724,"48":0.06362,"49":0,"50":0,"51":0.006362,"52":0.06362,"53":0.006362,"54":0,"55":0.006362,"56":0.025448,"57":0.006362,"58":0.012724,"59":0.006362,"60":0.012724,"61":0.006362,"62":0.006362,"63":0.012724,"64":0.012724,"65":0.025448,"66":0.050896,"67":0.025448,"68":0.12724,"69":0.050896,"70":0.820698,"71":2.532076,"72":0.03181,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006362,"46":0.006362,"47":0.006362,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006362,"54":0,"55":0.006362,"56":0.006362,"57":0,"58":0,"60":0,"62":0.006362,"63":0.012724,"64":0.050896,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.012724},E:{"4":0,"5":0,"6":0,"7":0,"8":0.012724,"9":0.006362,"10":0.019086,"11":0.03181,"12":0.165412,"13":0.79525,_:"0","3.1":0,"3.2":0,"5.1":6.342914,"6.1":0,"7.1":0,"9.1":0.025448,"10.1":0.12724,"11.1":0.165412,"12.1":0.305376},G:{"8":0.00026615581558156,"3.2":0.0010646232623262,"4.0-4.1":0.00053231163116312,"4.2-4.3":0,"5.0-5.1":0.0015969348934893,"6.0-6.1":0.00053231163116312,"7.0-7.1":0.0018630907090709,"8.1-8.4":0.0034600256025603,"9.0-9.2":0.0031938697869787,"9.3":0.033801788578858,"10.0-10.2":0.011710855885589,"10.3":0.037794125812581,"11.0-11.2":0.031938697869787,"11.3-11.4":0.056957344534453,"12.0-12.1":0.081443679567957,"12.2-12.4":0.57649349654965,"13.0-13.1":0.837060040004,"13.2":0.38113512791279,"13.3":0.600447519952},I:{"3":0.001248485915493,"4":0.0054101056338028,_:"76","2.1":0,"2.2":0.00083232394366197,"2.3":0.00083232394366197,"4.1":0.0095717253521127,"4.2-4.3":0.20932947183099,"4.4":0,"4.4.3-4.4.4":0.12734556338028},P:{"4":0.79311898076923,"5.0-5.4":0.050197403846154,"6.2-6.4":0.080315846153846,"7.2-7.4":0.22086857692308,"8.2":0.10039480769231,"9.2":0.36142130769231,"10.1":1.5159615961538},B:{"12":0,"13":0.006362,"14":0.006362,"15":0.019086,"16":0.012724,"17":0.06362,"18":0.324462,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0197222,"9":0.0065740666666667,"10":0.013148133333333,"11":0.1577776,"5.5":0},N:{"10":0.010914,"11":0.043656},J:{"7":0,"10":0.003638},R:{_:"0"},M:{"0":0.116416},O:{"0":0.331058},Q:{"1.2":0.007276},S:{"2.5":0},H:{"0":0.79561559793814},L:{"0":49.91941}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BR.js new file mode 100644 index 0000000..8d5ad71 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.013732,"37":0,"38":0.006866,"39":0,"40":0,"41":0.006866,"42":0,"43":0.006866,"44":0,"45":0,"46":0,"47":0.006866,"48":0.006866,"49":0.322702,"50":0.006866,"51":0.006866,"52":0,"53":0.006866,"54":0.013732,"55":0.006866,"56":0.006866,"57":0.006866,"58":0.03433,"59":0.006866,"60":0.006866,"61":0.027464,"62":0.013732,"63":0.041196,"64":0.006866,"65":0.020598,"66":0.020598,"67":0.048062,"68":0.020598,"69":0.061794,"70":0.151052,"71":0.192248,"72":0.164784,"73":0.144186,"74":0.109856,"75":0.13732,"76":0.157918,"77":0.267774,"78":20.865774,"79":15.565222,"80":0.061794,"81":0.020598},C:{"2":0,"3":0.006866,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006866,"46":0,"47":0.006866,"48":0.006866,"49":0,"50":0.006866,"51":0.006866,"52":0.109856,"53":0.006866,"54":0.006866,"55":0.006866,"56":0.013732,"57":0.006866,"58":0.006866,"59":0.006866,"60":0.03433,"61":0.006866,"62":0.006866,"63":0.020598,"64":0.027464,"65":0.027464,"66":0.020598,"67":0.013732,"68":0.10299,"69":0.03433,"70":0.542414,"71":1.572314,"72":0.027464,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.013732,"46":0.006866,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006866,"56":0.006866,"57":0.006866,"58":0.013732,"60":0,"62":0,"63":0.006866,"64":0.24031,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.013732,"12":0.054928,"13":0.796456,_:"0","3.1":0,"3.2":0,"5.1":0.020598,"6.1":0,"7.1":0,"9.1":0.006866,"10.1":0.027464,"11.1":0.075526,"12.1":0.178516},G:{"8":0.00059535093509351,"3.2":0.002381403740374,"4.0-4.1":0.001190701870187,"4.2-4.3":0,"5.0-5.1":0.0035721056105611,"6.0-6.1":0.001190701870187,"7.0-7.1":0.0041674565456546,"8.1-8.4":0.0077395621562156,"9.0-9.2":0.0071442112211221,"9.3":0.075609568756876,"10.0-10.2":0.026195441144114,"10.3":0.084539832783278,"11.0-11.2":0.071442112211221,"11.3-11.4":0.12740510011001,"12.0-12.1":0.18217738613861,"12.2-12.4":1.2895301254125,"13.0-13.1":1.8723786908691,"13.2":0.85254253905391,"13.3":1.343111709571},I:{"3":0.00041832394366197,"4":0.0018127370892019,_:"76","2.1":0,"2.2":0.00027888262910798,"2.3":0.00027888262910798,"4.1":0.0032071502347418,"4.2-4.3":0.070138981220657,"4.4":0,"4.4.3-4.4.4":0.042669042253521},P:{"4":0.1130989122807,"5.0-5.4":0,"6.2-6.4":0.010281719298246,"7.2-7.4":0.092535473684211,"8.2":0.010281719298246,"9.2":0.082253754385965,"10.1":1.4497224210526},B:{"12":0.006866,"13":0.006866,"14":0.013732,"15":0.013732,"16":0.013732,"17":0.061794,"18":0.672868,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.07132640776699,"9":0.007132640776699,"10":0.007132640776699,"11":0.64907031067961,"5.5":0},N:{"10":0,"11":0.040742},J:{"7":0,"10":0.003134},R:{_:"0"},M:{"0":0.087752},O:{"0":0.137896},Q:{"1.2":0.003134},S:{"2.5":0},H:{"0":0.14538636769759},L:{"0":43.458606}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BS.js new file mode 100644 index 0000000..2903705 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004179,"29":0,"30":0,"31":0,"32":0,"33":0.004179,"34":0,"35":0,"36":0.004179,"37":0,"38":0,"39":0,"40":0.004179,"41":0,"42":0,"43":0.004179,"44":0,"45":0,"46":0,"47":0.008358,"48":0,"49":0.071043,"50":0,"51":0,"52":0,"53":0.004179,"54":0,"55":0,"56":0.004179,"57":0,"58":0.008358,"59":0,"60":0,"61":0,"62":0.008358,"63":0.117012,"64":0.004179,"65":0.020895,"66":0.008358,"67":0.029253,"68":0.012537,"69":0.075222,"70":0.004179,"71":0.050148,"72":0.020895,"73":0.016716,"74":0.012537,"75":0.045969,"76":0.267456,"77":0.16716,"78":5.194497,"79":3.430959,"80":0.004179,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.012537,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.012537,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.020895,"49":0,"50":0,"51":0,"52":0.012537,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.004179,"61":0,"62":0,"63":0.004179,"64":0,"65":0,"66":0.012537,"67":0.004179,"68":0.054327,"69":0.008358,"70":0.188055,"71":0.551628,"72":0.004179,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004179,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.004179,"10":0.008358,"11":0.008358,"12":0.058506,"13":1.445934,_:"0","3.1":0,"3.2":0,"5.1":0.029253,"6.1":0,"7.1":0,"9.1":0.008358,"10.1":0.04179,"11.1":0.133728,"12.1":0.213129},G:{"8":0.0025287700770077,"3.2":0.010115080308031,"4.0-4.1":0.0050575401540154,"4.2-4.3":0,"5.0-5.1":0.015172620462046,"6.0-6.1":0.0050575401540154,"7.0-7.1":0.017701390539054,"8.1-8.4":0.0328740110011,"9.0-9.2":0.030345240924092,"9.3":0.32115379977998,"10.0-10.2":0.11126588338834,"10.3":0.35908535093509,"11.0-11.2":0.30345240924092,"11.3-11.4":0.54115679647965,"12.0-12.1":0.77380364356436,"12.2-12.4":5.4773159867987,"13.0-13.1":7.9529818921892,"13.2":3.621198750275,"13.3":5.7049052937294},I:{"3":0.0022003943661972,"4":0.0095350422535211,_:"76","2.1":0,"2.2":0.0014669295774648,"2.3":0.0014669295774648,"4.1":0.016869690140845,"4.2-4.3":0.36893278873239,"4.4":0,"4.4.3-4.4.4":0.22444022535211},P:{"4":0.20002866015625,"5.0-5.4":0.03158347265625,"6.2-6.4":0.042111296875,"7.2-7.4":0.3579460234375,"8.2":0.042111296875,"9.2":0.547446859375,"10.1":6.8536135664063},B:{"12":0.008358,"13":0.045969,"14":0.016716,"15":0.075222,"16":0.071043,"17":0.225666,"18":1.859655,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.008358,"9":0,"10":0.016716,"11":0.789831,"5.5":0},N:{"10":0,"11":0.023284},J:{"7":0,"10":0.005821},R:{_:"0"},M:{"0":0.139704},O:{"0":0.064031},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.093686094501718},L:{"0":46.563973}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BT.js new file mode 100644 index 0000000..d02280b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.004114,"30":0.002057,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004114,"37":0,"38":0,"39":0,"40":0.002057,"41":0,"42":0,"43":0.02057,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.008228,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.002057,"56":0.002057,"57":0,"58":0.004114,"59":0.002057,"60":0,"61":0,"62":0,"63":0.008228,"64":0,"65":0.006171,"66":0,"67":0.014399,"68":0.002057,"69":0.063767,"70":0.002057,"71":0.004114,"72":0.006171,"73":0.008228,"74":0.014399,"75":0.016456,"76":0.016456,"77":0.037026,"78":1.575662,"79":1.380247,"80":0.012342,"81":0.008228},C:{"2":0,"3":0,"4":0,"5":0.004114,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.002057,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.004114,"44":0,"45":0,"46":0,"47":0.002057,"48":0,"49":0,"50":0.002057,"51":0,"52":0.002057,"53":0,"54":0,"55":0,"56":0.002057,"57":0,"58":0,"59":0,"60":0.004114,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.002057,"67":0,"68":0.016456,"69":0.004114,"70":0.047311,"71":0.162503,"72":0.037026,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.022627,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.002057,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.002057,"54":0.002057,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.002057,"11":0,"12":0.006171,"13":0.10285,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.002057,"11.1":0.014399,"12.1":0.034969},G:{"8":0.00069057215721572,"3.2":0.0027622886288629,"4.0-4.1":0.0013811443144314,"4.2-4.3":0,"5.0-5.1":0.0041434329432943,"6.0-6.1":0.0013811443144314,"7.0-7.1":0.0048340051005101,"8.1-8.4":0.0089774380438044,"9.0-9.2":0.0082868658865887,"9.3":0.087702663966397,"10.0-10.2":0.030385174917492,"10.3":0.098061246324632,"11.0-11.2":0.082868658865887,"11.3-11.4":0.14778244164416,"12.0-12.1":0.21131508010801,"12.2-12.4":1.4957792925293,"13.0-13.1":2.1718494344434,"13.2":0.98889932913291,"13.3":1.5579307866787},I:{"3":0.00051468661971831,"4":0.002230308685446,_:"76","2.1":0,"2.2":0.00034312441314554,"2.3":0.00034312441314554,"4.1":0.0039459307511737,"4.2-4.3":0.086295789906103,"4.4":0,"4.4.3-4.4.4":0.052498035211268},P:{"4":3.4291834529486,"5.0-5.4":0.05072756587202,"6.2-6.4":0.17247372396487,"7.2-7.4":1.004405804266,"8.2":0.20291026348808,"9.2":1.1768795282309,"10.1":2.0493936612296},B:{"12":0.002057,"13":0.004114,"14":0.002057,"15":0.006171,"16":0.006171,"17":0.010285,"18":0.131648,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.004114,"9":0,"10":0,"11":0.053482,"5.5":0},N:{"10":0,"11":0.007943},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.071487},O:{"0":3.359889},Q:{"1.2":0.023829},S:{"2.5":0},H:{"0":1.5415834450172},L:{"0":73.078453}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BW.js new file mode 100644 index 0000000..b164bef --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005512,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.077168,"29":0.011024,"30":0.033072,"31":0.016536,"32":0,"33":0.011024,"34":0.005512,"35":0,"36":0.016536,"37":0,"38":0,"39":0.005512,"40":0.022048,"41":0.005512,"42":0,"43":0.071656,"44":0,"45":0.005512,"46":0.016536,"47":0.005512,"48":0.011024,"49":0.198432,"50":0.005512,"51":0.005512,"52":0.005512,"53":0.005512,"54":0,"55":0.016536,"56":0.011024,"57":0.005512,"58":0.033072,"59":0.005512,"60":0.060632,"61":0.005512,"62":0.016536,"63":0.35828,"64":0.044096,"65":0.314184,"66":0.005512,"67":0.071656,"68":0.088192,"69":0.143312,"70":0.02756,"71":0.132288,"72":0.077168,"73":0.077168,"74":0.16536,"75":0.11024,"76":0.231504,"77":0.319696,"78":8.466432,"79":4.6852,"80":0.011024,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005512,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.005512,"28":0.005512,"29":0,"30":0,"31":0,"32":0.044096,"33":0,"34":0.016536,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.011024,"41":0,"42":0,"43":0.016536,"44":0.011024,"45":0,"46":0,"47":0.115752,"48":0.022048,"49":0.022048,"50":0.005512,"51":0.005512,"52":0.038584,"53":0,"54":0,"55":0,"56":0.154336,"57":0,"58":0,"59":0,"60":0.033072,"61":0.005512,"62":0.005512,"63":0.005512,"64":0.011024,"65":0.005512,"66":0.016536,"67":0.011024,"68":0.231504,"69":0.05512,"70":0.782704,"71":1.829984,"72":0.121264,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.005512,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.011024,"30":0,"31":0.022048,"32":0,"33":0.005512,"34":0,"35":0.005512,"36":0.005512,"37":0.005512,"38":0,"39":0,"40":0,"41":0,"42":0.005512,"43":0,"44":0,"45":0.011024,"46":0.02756,"47":0,"48":0,"49":0.005512,"50":0,"51":0.005512,"52":0,"53":0.005512,"54":0,"55":0.005512,"56":0,"57":0,"58":0.005512,"60":0.011024,"62":0.005512,"63":0.038584,"64":0.049608,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.011024},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.011024,"11":0.038584,"12":0.060632,"13":0.898456,_:"0","3.1":0,"3.2":0,"5.1":1.504776,"6.1":0,"7.1":0,"9.1":0.033072,"10.1":0.038584,"11.1":0.08268,"12.1":0.281112},G:{"8":0.0007347198719872,"3.2":0.0029388794879488,"4.0-4.1":0.0014694397439744,"4.2-4.3":0,"5.0-5.1":0.0044083192319232,"6.0-6.1":0.0014694397439744,"7.0-7.1":0.0051430391039104,"8.1-8.4":0.0095513583358336,"9.0-9.2":0.0088166384638464,"9.3":0.093309423742374,"10.0-10.2":0.032327674367437,"10.3":0.10433022182218,"11.0-11.2":0.088166384638464,"11.3-11.4":0.15723005260526,"12.0-12.1":0.22482428082808,"12.2-12.4":1.5914032427243,"13.0-13.1":2.3106939973997,"13.2":1.0521188566857,"13.3":1.6575280312031},I:{"3":0.0031709295774648,"4":0.013740694835681,_:"76","2.1":0,"2.2":0.0021139530516432,"2.3":0.0021139530516432,"4.1":0.024310460093897,"4.2-4.3":0.53165919248826,"4.4":0,"4.4.3-4.4.4":0.32343481690141},P:{"4":0.58829856880734,"5.0-5.4":0.010321027522936,"6.2-6.4":0.041284110091743,"7.2-7.4":0.24770466055046,"8.2":0.27866774311927,"9.2":0.24770466055046,"10.1":1.9609952293578},B:{"12":0.099216,"13":0.104728,"14":0.088192,"15":0.088192,"16":0.214968,"17":1.146496,"18":1.251224,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0058136517412935,"7":0.011627303482587,"8":0.087204776119403,"9":0.0058136517412935,"10":0.058136517412935,"11":0.99994809950249,"5.5":0},N:{"10":0.010578857142857,"11":0.13752514285714},J:{"7":0,"10":0.076296},R:{_:"0"},M:{"0":0.305184},O:{"0":1.238688},Q:{"1.2":0.098736},S:{"2.5":0.004488},H:{"0":2.1159763298969},L:{"0":51.83976}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BY.js new file mode 100644 index 0000000..686dc78 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.007734,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.007734,"34":0,"35":0,"36":0.03867,"37":0,"38":0.007734,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.007734,"46":0,"47":0,"48":0.007734,"49":0.688326,"50":0,"51":0.007734,"52":0,"53":0.015468,"54":0,"55":0.015468,"56":0.023202,"57":0.007734,"58":0.030936,"59":0.023202,"60":0.007734,"61":0.03867,"62":0.023202,"63":0.15468,"64":0.023202,"65":0.030936,"66":0.046404,"67":0.046404,"68":0.069606,"69":0.092808,"70":0.224286,"71":0.131478,"72":0.278424,"73":0.170148,"74":0.170148,"75":0.456306,"76":0.340296,"77":0.402168,"78":21.361308,"79":15.785094,"80":0.046404,"81":0.015468},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.007734,"28":0.007734,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.007734,"44":0,"45":0,"46":0,"47":0.015468,"48":0.007734,"49":0,"50":0.007734,"51":0.069606,"52":0.278424,"53":0.007734,"54":0.007734,"55":0.007734,"56":0.046404,"57":0.030936,"58":0.023202,"59":0.007734,"60":0.030936,"61":0.015468,"62":0.007734,"63":0.03867,"64":0.046404,"65":0.023202,"66":0.069606,"67":0.023202,"68":0.146946,"69":0.061872,"70":0.69606,"71":2.01084,"72":0.030936,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0.007734,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.19335,"37":0.015468,"38":0,"39":0,"40":0,"41":0,"42":0.007734,"43":0.015468,"44":0,"45":0.03867,"46":0.023202,"47":0,"48":0.007734,"49":0,"50":0,"51":0.007734,"52":0.015468,"53":0.015468,"54":0.007734,"55":0.03867,"56":0.023202,"57":0.03867,"58":0.015468,"60":0.023202,"62":0.015468,"63":0.03867,"64":0.177882,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.007734,"12.1":0.03867},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.007734,"11":0.007734,"12":0.131478,"13":1.948968,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.007734,"10.1":0.023202,"11.1":0.061872,"12.1":0.448572},G:{"8":0.00053959495949595,"3.2":0.0021583798379838,"4.0-4.1":0.0010791899189919,"4.2-4.3":0,"5.0-5.1":0.0032375697569757,"6.0-6.1":0.0010791899189919,"7.0-7.1":0.0037771647164716,"8.1-8.4":0.0070147344734473,"9.0-9.2":0.0064751395139514,"9.3":0.068528559855986,"10.0-10.2":0.023742178217822,"10.3":0.076622484248425,"11.0-11.2":0.064751395139514,"11.3-11.4":0.11547332133213,"12.0-12.1":0.16511605760576,"12.2-12.4":1.1687626822682,"13.0-13.1":1.6970261476148,"13.2":0.7726999819982,"13.3":1.2173262286229},I:{"3":0.00063328169014085,"4":0.002744220657277,_:"76","2.1":0,"2.2":0.00042218779342723,"2.3":0.00042218779342723,"4.1":0.0048551596244131,"4.2-4.3":0.10618023004695,"4.4":0,"4.4.3-4.4.4":0.064594732394366},P:{"4":0.083103640449438,"5.0-5.4":0,"6.2-6.4":0.031163865168539,"7.2-7.4":0.02077591011236,"8.2":0.01038795505618,"9.2":0.072715685393258,"10.1":0.70638094382022},B:{"12":0,"13":0.007734,"14":0.015468,"15":0.023202,"16":0.015468,"17":0.069606,"18":0.649656,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.046404,"9":0.007734,"10":0.015468,"11":0.30936,"5.5":0},N:{"10":0,"11":0.038522},J:{"7":0,"10":0.006798},R:{_:"0"},M:{"0":0.054384},O:{"0":0.2266},Q:{"1.2":0.006798},S:{"2.5":0},H:{"0":0.60712058075601},L:{"0":30.617726}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/BZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/BZ.js new file mode 100644 index 0000000..752eed9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/BZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005062,"37":0,"38":0.010124,"39":0.005062,"40":0.005062,"41":0.005062,"42":0.131612,"43":0.005062,"44":0,"45":0.005062,"46":0.015186,"47":0.005062,"48":0.005062,"49":0.02531,"50":0.010124,"51":0.005062,"52":0.010124,"53":0.010124,"54":0.005062,"55":0.07593,"56":0.005062,"57":0.005062,"58":0.010124,"59":0.005062,"60":0.010124,"61":0.010124,"62":0.010124,"63":0.035434,"64":0.005062,"65":0.010124,"66":0.005062,"67":0.010124,"68":0.015186,"69":0.02531,"70":0.096178,"71":0.111364,"72":0.268286,"73":0.141736,"74":0.040496,"75":0.045558,"76":0.10124,"77":0.172108,"78":9.278646,"79":5.142992,"80":0.005062,"81":0},C:{"2":0,"3":0.091116,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.005062,"41":0,"42":0.015186,"43":0,"44":0,"45":0.005062,"46":0,"47":0.005062,"48":0.005062,"49":0.005062,"50":0.005062,"51":0.005062,"52":0.015186,"53":0.010124,"54":0.005062,"55":0.010124,"56":0.005062,"57":0.005062,"58":0.005062,"59":0.005062,"60":0.005062,"61":0,"62":0,"63":0,"64":0,"65":0.02531,"66":0.010124,"67":0.02531,"68":0.080992,"69":0.040496,"70":0.521386,"71":1.483166,"72":0.040496,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.010124,"54":0,"55":0.005062,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.010124,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.010124},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.005062,"10":0.005062,"11":0.091116,"12":0.02531,"13":1.716018,_:"0","3.1":0,"3.2":0,"5.1":0.43027,"6.1":0,"7.1":0,"9.1":0.020248,"10.1":0.05062,"11.1":0.055682,"12.1":0.12655},G:{"8":0.0015758175817582,"3.2":0.0063032703270327,"4.0-4.1":0.0031516351635164,"4.2-4.3":0,"5.0-5.1":0.0094549054905491,"6.0-6.1":0.0031516351635164,"7.0-7.1":0.011030723072307,"8.1-8.4":0.020485628562856,"9.0-9.2":0.018909810981098,"9.3":0.20012883288329,"10.0-10.2":0.06933597359736,"10.3":0.22376609660966,"11.0-11.2":0.18909810981098,"11.3-11.4":0.33722496249625,"12.0-12.1":0.482200180018,"12.2-12.4":3.4132208820882,"13.0-13.1":4.9559462946295,"13.2":2.2565707770777,"13.3":3.5550444644464},I:{"3":0.0043559507042254,"4":0.018875786384977,_:"76","2.1":0,"2.2":0.0029039671361502,"2.3":0.0029039671361502,"4.1":0.033395622065728,"4.2-4.3":0.73034773474178,"4.4":0,"4.4.3-4.4.4":0.44430697183099},P:{"4":0.37495322033898,"5.0-5.4":0.021425898305085,"6.2-6.4":0,"7.2-7.4":0.20354603389831,"8.2":0.074990644067797,"9.2":0.14998128813559,"10.1":2.9460610169492},B:{"12":0.010124,"13":0.010124,"14":0.030372,"15":0.040496,"16":0.02531,"17":0.136674,"18":1.523662,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.020248,"9":0.015186,"10":0.015186,"11":0.248038,"5.5":0},N:{"10":0.1027104,"11":0.0898716},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.167892},O:{"0":0.390102},Q:{"1.2":0.004938},S:{"2.5":0},H:{"0":0.21972403092784},L:{"0":52.49397}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CA.js new file mode 100644 index 0000000..4043b15 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.010734,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005367,"35":0,"36":0,"37":0,"38":0.005367,"39":0,"40":0.010734,"41":0.005367,"42":0,"43":0,"44":0,"45":0,"46":0.005367,"47":0.005367,"48":0.048303,"49":0.289818,"50":0,"51":0.005367,"52":0,"53":0.016101,"54":0.005367,"55":0.010734,"56":0.010734,"57":0.010734,"58":0.010734,"59":0.010734,"60":0.010734,"61":0.010734,"62":0.010734,"63":0.123441,"64":0.010734,"65":0.037569,"66":0.021468,"67":0.05367,"68":0.021468,"69":0.05367,"70":0.059037,"71":0.069771,"72":0.059037,"73":0.101973,"74":0.085872,"75":0.16101,"76":0.182478,"77":0.289818,"78":8.399355,"79":6.06471,"80":0.021468,"81":0.005367},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.021468,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005367,"39":0,"40":0,"41":0,"42":0,"43":0.005367,"44":0.021468,"45":0.010734,"46":0,"47":0.005367,"48":0.021468,"49":0,"50":0.005367,"51":0.005367,"52":0.059037,"53":0,"54":0.005367,"55":0.005367,"56":0.010734,"57":0.005367,"58":0.005367,"59":0,"60":0.016101,"61":0.005367,"62":0.005367,"63":0.005367,"64":0.010734,"65":0.021468,"66":0.016101,"67":0.016101,"68":0.21468,"69":0.037569,"70":0.493764,"71":1.529595,"72":0.016101,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005367,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005367,"46":0.005367,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005367,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005367,"64":0.010734,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.005367,"6":0,"7":0,"8":0.005367,"9":0.010734,"10":0.010734,"11":0.026835,"12":0.096606,"13":2.597628,_:"0","3.1":0,"3.2":0,"5.1":0.026835,"6.1":0.005367,"7.1":0,"9.1":0.037569,"10.1":0.10734,"11.1":0.193212,"12.1":0.354222},G:{"8":0.0036595437543754,"3.2":0.014638175017502,"4.0-4.1":0.0073190875087509,"4.2-4.3":0,"5.0-5.1":0.021957262526253,"6.0-6.1":0.0073190875087509,"7.0-7.1":0.025616806280628,"8.1-8.4":0.047574068806881,"9.0-9.2":0.043914525052505,"9.3":0.46476205680568,"10.0-10.2":0.16101992519252,"10.3":0.51965521312131,"11.0-11.2":0.43914525052505,"11.3-11.4":0.78314236343634,"12.0-12.1":1.1198203888389,"12.2-12.4":7.9265717719772,"13.0-13.1":11.509265107511,"13.2":5.2404666562656,"13.3":8.255930709871},I:{"3":0.0015184471830986,"4":0.0065799377934272,_:"76","2.1":0,"2.2":0.0010122981220657,"2.3":0.0010122981220657,"4.1":0.011641428403756,"4.2-4.3":0.25459297769953,"4.4":0,"4.4.3-4.4.4":0.15488161267606},P:{"4":0.140910470726,"5.0-5.4":0.010839266978923,"6.2-6.4":0.010839266978923,"7.2-7.4":0.021678533957845,"8.2":0.021678533957845,"9.2":0.140910470726,"10.1":4.0755643840749},B:{"12":0.005367,"13":0.005367,"14":0.010734,"15":0.010734,"16":0.037569,"17":0.096606,"18":2.017992,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.065713911864407,"7":0,"8":0.027380796610169,"9":0.032856955932203,"10":0.010952318644068,"11":1.4785630169492,"5.5":0},N:{"10":0,"11":0.009266},J:{"7":0,"10":0.04633},R:{_:"0"},M:{"0":0.333576},O:{"0":0.264081},Q:{"1.2":0.032431},S:{"2.5":0.004633},H:{"0":0.11842807731959},L:{"0":28.029388}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CD.js new file mode 100644 index 0000000..24821eb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CD.js @@ -0,0 +1 @@ +module.exports={D:{"11":0.00221,"25":0.00221,"26":0.00442,"29":0.01547,"33":0.03094,"36":0.01989,"38":0.00884,"40":0.02431,"43":0.03315,"45":0.00442,"47":0.00221,"48":0.01105,"49":0.07956,"50":0.00221,"52":0.00442,"53":0.00442,"55":0.02431,"57":0.00442,"58":0.00663,"60":0.02873,"63":0.22321,"64":0.00884,"65":0.02873,"67":0.01989,"68":0.00442,"69":0.26962,"70":0.03536,"71":0.00442,"72":0.00663,"73":0.01989,"74":0.03315,"75":0.04641,"76":0.05083,"77":0.1547,"78":3.45423,"79":2.74482,"80":0.00663,"81":0.00442,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 30 31 32 34 35 37 39 41 42 44 46 51 54 56 59 61 62 66"},C:{"3":0.00442,"21":0.00663,"24":0.03536,"27":0.00442,"29":0.00221,"30":0.00442,"31":0.00221,"32":0.00221,"35":0.00221,"36":0.00221,"37":0.00442,"38":0.00442,"39":0.00221,"41":0.00442,"43":0.01326,"44":0.00221,"45":0.00663,"46":0.00442,"47":0.01547,"48":0.03315,"49":0.00663,"50":0.00221,"52":0.03978,"56":0.01547,"57":0.00442,"58":0.00221,"60":0.08398,"61":0.00442,"62":0.00221,"63":0.00221,"64":0.00221,"65":0.00221,"66":0.03315,"67":0.00663,"68":0.18564,"69":0.0442,"70":0.75582,"71":2.04204,"72":0.03978,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 25 26 28 33 34 40 42 51 53 54 55 59 73 3.5 3.6"},F:{"11":0.00442,"17":0.00442,"18":0.00221,"21":0.00663,"30":0.00221,"34":0.00442,"35":0.00221,"36":0.01105,"42":0.01105,"46":0.00221,"48":0.00221,"49":0.00442,"51":0.00442,"53":0.00663,"54":0.00442,"55":0.00663,"58":0.00221,"60":0.00663,"62":0.01326,"63":0.06188,"64":0.07735,_:"9 12 15 16 19 20 22 23 24 25 26 27 28 29 31 32 33 37 38 39 40 41 43 44 45 47 50 52 56 57 9.5-9.6 10.5 10.6 11.1 12.1","10.0-10.1":0,"11.5":0.00221,"11.6":0.00221},E:{"4":0,"7":0.00221,"8":0.0442,"9":0.02652,"10":0.03757,"11":0.14586,"12":0.19448,"13":0.59891,_:"0 5 6 3.1 3.2 6.1 7.1","5.1":3.5139,"9.1":0.01989,"10.1":0.05083,"11.1":0.15912,"12.1":0.28288},G:{"8":0.00022434563456346,"3.2":0.00089738253825383,"4.0-4.1":0.00044869126912691,"4.2-4.3":0,"5.0-5.1":0.0013460738073807,"6.0-6.1":0.00044869126912691,"7.0-7.1":0.0015704194419442,"8.1-8.4":0.0029164932493249,"9.0-9.2":0.0026921476147615,"9.3":0.028491895589559,"10.0-10.2":0.0098712079207921,"10.3":0.031857080108011,"11.0-11.2":0.026921476147615,"11.3-11.4":0.04800996579658,"12.0-12.1":0.068649764176418,"12.2-12.4":0.48593264446445,"13.0-13.1":0.70556702070207,"13.2":0.32126294869487,"13.3":0.50612375157516},I:{"3":0.0023037887323944,"4":0.0099830845070423,_:"76","2.1":0,"2.2":0.0015358591549296,"2.3":0.0015358591549296,"4.1":0.01766238028169,"4.2-4.3":0.38626857746479,"4.4":0,"4.4.3-4.4.4":0.23498645070423},P:{"4":0.498496,"5.0-5.4":0.072697333333333,"6.2-6.4":0.020770666666667,"7.2-7.4":0.083082666666667,"8.2":0.020770666666667,"9.2":0.23886266666667,"10.1":0.685432},B:{"12":0.08619,"13":0.02652,"14":0.02873,"15":0.03536,"16":0.05525,"17":0.16796,"18":0.61659,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.21976133064516,"10":0.096598387096774,"11":0.28255028225806,_:"6 7 9 5.5"},N:{"10":0.031864090909091,"11":0.084970909090909},J:{"7":0,"10":0.085679},R:{_:"0"},M:{"0":0.218092},O:{"0":1.736947},Q:{"1.2":0.093468},S:{"2.5":0.046734},H:{"0":47.990785931271},L:{"0":22.580632}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CF.js new file mode 100644 index 0000000..82df3d0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.002381,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.002381,"24":0,"25":0.002381,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.002381,"32":0,"33":0,"34":0,"35":0,"36":0.002381,"37":0.004762,"38":0.007143,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.007143,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.002381,"56":0.002381,"57":0,"58":0.002381,"59":0,"60":0.002381,"61":0.002381,"62":0.002381,"63":1.016687,"64":0.002381,"65":0,"66":0,"67":0.007143,"68":0.009524,"69":0.002381,"70":0.002381,"71":0.054763,"72":0.002381,"73":0.002381,"74":0.014286,"75":0.016667,"76":0.030953,"77":0.052382,"78":0.611917,"79":0.554773,"80":0,"81":0},C:{"2":0,"3":0,"4":0.002381,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.002381,"17":0,"18":0,"19":0,"20":0.004762,"21":0.002381,"22":0,"23":0,"24":0.007143,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.002381,"31":0,"32":0.014286,"33":0.002381,"34":0,"35":0.004762,"36":0,"37":0,"38":0,"39":0.002381,"40":0.002381,"41":0,"42":0,"43":0.004762,"44":0.004762,"45":0,"46":0,"47":0.007143,"48":0,"49":0,"50":0,"51":0,"52":0.054763,"53":0.002381,"54":0.002381,"55":0,"56":0.002381,"57":0.004762,"58":0,"59":0.002381,"60":0.069049,"61":0.002381,"62":0,"63":0.002381,"64":0,"65":0,"66":0.002381,"67":0.002381,"68":0.133336,"69":0.002381,"70":0.311911,"71":0.54763,"72":0.002381,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.002381,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.002381,"29":0.002381,"30":0,"31":0,"32":0.002381,"33":0,"34":0,"35":0,"36":0.002381,"37":0.002381,"38":0.002381,"39":0,"40":0,"41":0,"42":0.004762,"43":0,"44":0,"45":0.021429,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.007143,"53":0.009524,"54":0.002381,"55":0.004762,"56":0,"57":0,"58":0,"60":0,"62":0.009524,"63":0.02381,"64":0.011905,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.014286},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.080954,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.002381,"11.1":0.004762,"12.1":0.016667},G:{"8":0.00033484268426843,"3.2":0.0013393707370737,"4.0-4.1":0.00066968536853685,"4.2-4.3":0,"5.0-5.1":0.0020090561056106,"6.0-6.1":0.00066968536853685,"7.0-7.1":0.002343898789879,"8.1-8.4":0.0043529548954895,"9.0-9.2":0.0040181122112211,"9.3":0.04252502090209,"10.0-10.2":0.014733078107811,"10.3":0.047547661166117,"11.0-11.2":0.040181122112211,"11.3-11.4":0.071656334433443,"12.0-12.1":0.10246186138614,"12.2-12.4":0.72526925412541,"13.0-13.1":1.0530802420242,"13.2":0.47949472387239,"13.3":0.75540509570957},I:{"3":0.0047568732394366,"4":0.020613117370892,_:"76","2.1":0,"2.2":0.0031712488262911,"2.3":0.0031712488262911,"4.1":0.036469361502347,"4.2-4.3":0.79756907981221,"4.4":0,"4.4.3-4.4.4":0.48520107042254},P:{"4":0.50611928571429,"5.0-5.4":0.080979085714286,"6.2-6.4":0.10122385714286,"7.2-7.4":0.88064755714286,"8.2":0.020244771428571,"9.2":0.27330441428571,"10.1":2.3888830285714},B:{"12":0.07143,"13":0.004762,"14":0.002381,"15":0.085716,"16":0.011905,"17":0.009524,"18":0.064287,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.066668,"9":0,"10":0.004762,"11":0.059525,"5.5":0},N:{"10":0,"11":0.114285},J:{"7":0,"10":0.015238},R:{_:"0"},M:{"0":0.525711},O:{"0":2.095225},Q:{"1.2":0.053333},S:{"2.5":0.038095},H:{"0":9.4564750154639},L:{"0":69.806611}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CG.js new file mode 100644 index 0000000..3c40e00 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CG.js @@ -0,0 +1 @@ +module.exports={D:{"11":0.00425,"30":0.02975,"31":0.0085,"33":0.017,"37":0.0085,"38":0.0255,"40":0.034,"43":0.017,"44":0.01275,"47":0.02125,"49":0.22525,"50":0.02975,"55":0.00425,"56":0.017,"57":0.01275,"58":0.0595,"60":0.017,"62":0.0085,"63":0.34425,"64":0.00425,"65":0.0425,"66":0.2295,"67":0.08925,"68":0.017,"69":0.06375,"70":0.0255,"71":0.034,"72":1.27075,"73":0.017,"74":0.17425,"75":0.0595,"76":0.11475,"77":0.65025,"78":8.993,"79":8.96325,"80":0.00425,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 34 35 36 39 41 42 45 46 48 51 52 53 54 59 61 81"},C:{"3":0.01275,"32":0.0085,"35":0.01275,"38":0.02125,"39":0.1785,"40":0.0085,"42":0.0255,"43":0.02125,"45":0.01275,"47":0.0255,"48":0.017,"49":0.00425,"50":0.017,"52":0.1105,"54":0.0085,"56":0.085,"57":0.034,"58":0.221,"59":0.00425,"60":0.0425,"61":0.05525,"62":0.16575,"63":0.07225,"64":0.00425,"65":0.017,"66":0.02975,"67":0.0085,"68":0.44625,"69":0.18275,"70":1.6065,"71":4.84075,"72":0.08925,"73":0.07225,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 36 37 41 44 46 51 53 55 3.5 3.6"},F:{"28":0.0255,"36":0.017,"37":0.0255,"42":0.03825,"55":0.4505,"57":0.00425,"58":0.0085,"62":0.00425,"63":0.017,"64":0.051,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 56 60 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.02975,"10":0.02975,"11":0.2975,"12":0.00425,"13":0.2295,_:"0 5 6 7 9 3.1 3.2 6.1 7.1","5.1":0.20825,"9.1":0.017,"10.1":0.08075,"11.1":0.08075,"12.1":0.25075},G:{"8":0.00035359885988599,"3.2":0.001414395439544,"4.0-4.1":0.00070719771977198,"4.2-4.3":0,"5.0-5.1":0.0021215931593159,"6.0-6.1":0.00070719771977198,"7.0-7.1":0.0024751920192019,"8.1-8.4":0.0045967851785179,"9.0-9.2":0.0042431863186319,"9.3":0.044907055205521,"10.0-10.2":0.015558349834983,"10.3":0.05021103810381,"11.0-11.2":0.042431863186319,"11.3-11.4":0.075670156015602,"12.0-12.1":0.10820125112511,"12.2-12.4":0.76589513051305,"13.0-13.1":1.1120684143414,"13.2":0.50635356735674,"13.3":0.79771902790279},I:{"3":0.0040890774647887,"4":0.017719335680751,_:"76","2.1":0,"2.2":0.0027260516431925,"2.3":0.0027260516431925,"4.1":0.031349593896714,"4.2-4.3":0.68560198826291,"4.4":0,"4.4.3-4.4.4":0.41708590140845},P:{"4":0.80915385892116,"5.0-5.4":0.080915385892116,"6.2-6.4":0.030343269709544,"7.2-7.4":0.17194519502075,"8.2":0.030343269709544,"9.2":0.49560673858921,"10.1":0.81926828215768},B:{"12":0.0935,"13":0.0425,"14":0.02125,"15":0.02975,"16":0.2975,"17":0.83725,"18":0.7565,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.153,"10":0.3655,"11":1.02425,_:"6 7 9 5.5"},N:{"10":0.0655386,"11":0.0436924},J:{"7":0,"10":0.183968},R:{_:"0"},M:{"0":0.22996},O:{"0":2.150126},Q:{"1.2":0.086235},S:{"2.5":0.218462},H:{"0":8.7465503316151},L:{"0":41.599405}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CH.js new file mode 100644 index 0000000..3424282 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01199,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005995,"35":0,"36":0,"37":0,"38":0.01199,"39":0,"40":0.005995,"41":0.017985,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.293755,"50":0,"51":0.005995,"52":0.005995,"53":0.01199,"54":0,"55":0.005995,"56":0,"57":0.01199,"58":0.005995,"59":0,"60":0.09592,"61":0.005995,"62":0.005995,"63":0.029975,"64":0.01199,"65":0.017985,"66":0.041965,"67":0.041965,"68":0.017985,"69":0.029975,"70":0.041965,"71":0.05995,"72":0.05995,"73":0.19184,"74":0.07194,"75":0.113905,"76":0.197835,"77":0.245795,"78":7.871435,"79":5.19167,"80":0.017985,"81":0.005995},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.03597,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.005995,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.005995,"44":0,"45":0.01199,"46":0,"47":0,"48":0.053955,"49":0,"50":0.005995,"51":0,"52":0.089925,"53":0.005995,"54":0.005995,"55":0,"56":0.01199,"57":0.01199,"58":0.005995,"59":0.005995,"60":0.10791,"61":0.005995,"62":0.005995,"63":0.01199,"64":0.01199,"65":0.03597,"66":0.041965,"67":0.017985,"68":0.51557,"69":0.089925,"70":1.216985,"71":3.447125,"72":0.017985,"73":0,"3.5":0,"3.6":0.005995},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005995,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005995,"46":0.005995,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005995,"54":0,"55":0.005995,"56":0,"57":0,"58":0.005995,"60":0,"62":0.005995,"63":0.01199,"64":0.02398,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.005995,"6":0,"7":0.01199,"8":0.005995,"9":0.01199,"10":0.02398,"11":0.07194,"12":0.233805,"13":4.48426,_:"0","3.1":0,"3.2":0,"5.1":0.16786,"6.1":0.005995,"7.1":0,"9.1":0.07194,"10.1":0.16786,"11.1":0.377685,"12.1":0.881265},G:{"8":0.003316397639764,"3.2":0.013265590559056,"4.0-4.1":0.006632795279528,"4.2-4.3":0,"5.0-5.1":0.019898385838584,"6.0-6.1":0.006632795279528,"7.0-7.1":0.023214783478348,"8.1-8.4":0.043113169316932,"9.0-9.2":0.039796771677168,"9.3":0.42118250025002,"10.0-10.2":0.14592149614961,"10.3":0.47092846484648,"11.0-11.2":0.39796771677168,"11.3-11.4":0.70970909490949,"12.0-12.1":1.0148176777678,"12.2-12.4":7.1833172877288,"13.0-13.1":10.430070577058,"13.2":4.749081420142,"13.3":7.4817930753075},I:{"3":0.00070422535211268,"4":0.0030516431924883,_:"76","2.1":0,"2.2":0.00046948356807512,"2.3":0.00046948356807512,"4.1":0.0053990610328639,"4.2-4.3":0.11807511737089,"4.4":0,"4.4.3-4.4.4":0.071830985915493},P:{"4":0.14829373303167,"5.0-5.4":0.021184819004525,"6.2-6.4":0.010592409502262,"7.2-7.4":0.063554457013575,"8.2":0.04236963800905,"9.2":0.30717987556561,"10.1":4.035708020362},B:{"12":0,"13":0.005995,"14":0.017985,"15":0.017985,"16":0.077935,"17":0.26378,"18":3.12939,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.005995,"8":0.005995,"9":0,"10":0.01199,"11":2.559865,"5.5":0},N:{"10":0,"11":0.012015},J:{"7":0,"10":0.020025},R:{_:"0"},M:{"0":0.524655},O:{"0":0.09612},Q:{"1.2":0.01602},S:{"2.5":0},H:{"0":0.16683371134021},L:{"0":23.885355}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CI.js new file mode 100644 index 0000000..9be3e45 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004943,"27":0.004943,"28":0,"29":0.019772,"30":0.004943,"31":0.029658,"32":0.004943,"33":0.084031,"34":0,"35":0,"36":0.009886,"37":0.014829,"38":0.004943,"39":0,"40":0.019772,"41":0,"42":0,"43":0.034601,"44":0,"45":0.004943,"46":0.004943,"47":0,"48":0,"49":0.454756,"50":0.004943,"51":0.004943,"52":0.004943,"53":0.004943,"54":0,"55":0.009886,"56":0.004943,"57":0.009886,"58":0.009886,"59":0.009886,"60":0.014829,"61":0.004943,"62":0.029658,"63":0.113689,"64":0.019772,"65":0.069202,"66":0.014829,"67":0.108746,"68":0.014829,"69":0.242207,"70":0.069202,"71":0.079088,"72":0.04943,"73":0.123575,"74":0.128518,"75":0.227378,"76":0.182891,"77":0.425098,"78":7.147578,"79":5.659735,"80":0.019772,"81":0.014829},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.009886,"29":0,"30":0,"31":0,"32":0.014829,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.009886,"44":0.004943,"45":0.004943,"46":0,"47":0.014829,"48":0.044487,"49":0.004943,"50":0.004943,"51":0.004943,"52":0.04943,"53":0,"54":0,"55":0,"56":0.004943,"57":0.004943,"58":0,"59":0,"60":0.009886,"61":0.004943,"62":0.004943,"63":0.004943,"64":0.004943,"65":0.004943,"66":0.014829,"67":0.009886,"68":0.123575,"69":0.039544,"70":0.603046,"71":1.794309,"72":0.074145,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.004943,"17":0,"18":0,"19":0,"20":0.009886,"21":0,"22":0,"23":0.004943,"24":0,"25":0,"26":0,"27":0,"28":0.004943,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004943,"46":0,"47":0,"48":0,"49":0.004943,"50":0,"51":0,"52":0,"53":0.004943,"54":0.004943,"55":0.004943,"56":0,"57":0,"58":0,"60":0.014829,"62":0.004943,"63":0.019772,"64":0.024715,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.014829},E:{"4":0,"5":0,"6":0,"7":0,"8":0.044487,"9":0,"10":0.024715,"11":0.059316,"12":0.158176,"13":0.74145,_:"0","3.1":0,"3.2":0,"5.1":1.141833,"6.1":0,"7.1":0,"9.1":0.009886,"10.1":0.079088,"11.1":0.079088,"12.1":0.232321},G:{"8":0.00066446454645465,"3.2":0.0026578581858186,"4.0-4.1":0.0013289290929093,"4.2-4.3":0,"5.0-5.1":0.0039867872787279,"6.0-6.1":0.0013289290929093,"7.0-7.1":0.0046512518251825,"8.1-8.4":0.0086380391039104,"9.0-9.2":0.0079735745574557,"9.3":0.08438699739974,"10.0-10.2":0.029236440044004,"10.3":0.09435396559656,"11.0-11.2":0.079735745574557,"11.3-11.4":0.14219541294129,"12.0-12.1":0.20332615121512,"12.2-12.4":1.4392302076208,"13.0-13.1":2.0897409985999,"13.2":0.95151323052305,"13.3":1.4990320168017},I:{"3":0.0019390281690141,"4":0.008402455399061,_:"76","2.1":0,"2.2":0.0012926854460094,"2.3":0.0012926854460094,"4.1":0.014865882629108,"4.2-4.3":0.32511038967136,"4.4":0,"4.4.3-4.4.4":0.19778087323944},P:{"4":0.171938,"5.0-5.4":0.020228,"6.2-6.4":0.05057,"7.2-7.4":0.15171,"8.2":0.030342,"9.2":0.273078,"10.1":0.788892},B:{"12":0.029658,"13":0.014829,"14":0.024715,"15":0.024715,"16":0.019772,"17":0.113689,"18":0.410269,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.035882518518519,"9":0,"10":0.0051260740740741,"11":0.097395407407407,"5.5":0},N:{"10":0,"11":0.070798},J:{"7":0,"10":0.045513},R:{_:"0"},M:{"0":0.187109},O:{"0":0.632125},Q:{"1.2":0.040456},S:{"2.5":0.010114},H:{"0":6.7457860189003},L:{"0":55.224525}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CK.js new file mode 100644 index 0000000..3eedff7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.713687,"47":0,"48":0,"49":0.329394,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004223,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.033784,"68":0.008446,"69":0.012669,"70":0,"71":0,"72":0,"73":0.092906,"74":0.025338,"75":0.038007,"76":0.008446,"77":0.029561,"78":3.564212,"79":3.564212,"80":0.033784,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.008446,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.004223,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.038007,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.008446,"66":0,"67":0,"68":0.105575,"69":0,"70":0.646119,"71":0.540544,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.008446,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.029561,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.004223,"55":0,"56":0,"57":0.012669,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.076014,"13":0.4223,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004223,"10.1":0,"11.1":0.008446,"12.1":0.147805},G:{"8":0.0028387872787279,"3.2":0.011355149114911,"4.0-4.1":0.0056775745574557,"4.2-4.3":0,"5.0-5.1":0.017032723672367,"6.0-6.1":0.0056775745574557,"7.0-7.1":0.019871510951095,"8.1-8.4":0.036904234623462,"9.0-9.2":0.034065447344734,"9.3":0.36052598439844,"10.0-10.2":0.12490664026403,"10.3":0.40310779357936,"11.0-11.2":0.34065447344734,"11.3-11.4":0.60750047764776,"12.0-12.1":0.86866890729073,"12.2-12.4":6.1488132457246,"13.0-13.1":8.9279859915992,"13.2":4.0651433831383,"13.3":6.4043041008101},I:{"3":0.00031773591549296,"4":0.0013768556338028,_:"76","2.1":0,"2.2":0.00021182394366197,"2.3":0.00021182394366197,"4.1":0.0024359753521127,"4.2-4.3":0.053273721830986,"4.4":0,"4.4.3-4.4.4":0.032409063380282},P:{"4":0.4023592969697,"5.0-5.4":0.010316905050505,"6.2-6.4":0,"7.2-7.4":0.14443667070707,"8.2":0.051584525252525,"9.2":0.46426072727273,"10.1":4.0339098747475},B:{"12":0.008446,"13":0,"14":0.008446,"15":0.046453,"16":0.004223,"17":0.016892,"18":0.232265,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":5.806625,"9":0,"10":0,"11":0.232265,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.161756},O:{"0":0.034662},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.25705664776632},L:{"0":46.623957}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CL.js new file mode 100644 index 0000000..5256ccc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005635,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005635,"35":0,"36":0.005635,"37":0,"38":0.039445,"39":0,"40":0,"41":0,"42":0,"43":0.005635,"44":0,"45":0.005635,"46":0.005635,"47":0,"48":0,"49":0.32683,"50":0,"51":0.005635,"52":0,"53":0.03381,"54":0,"55":0.005635,"56":0.005635,"57":0.005635,"58":0.01127,"59":0,"60":0.005635,"61":0.005635,"62":0.01127,"63":0.028175,"64":0.01127,"65":0.04508,"66":0.016905,"67":0.09016,"68":0.01127,"69":0.039445,"70":0.07889,"71":0.084525,"72":0.118335,"73":0.07889,"74":0.06762,"75":0.107065,"76":0.12397,"77":0.21413,"78":13.21971,"79":10.01903,"80":0.01127,"81":0.005635},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.005635,"45":0,"46":0,"47":0.01127,"48":0.02254,"49":0,"50":0,"51":0,"52":0.03381,"53":0,"54":0,"55":0.005635,"56":0.005635,"57":0,"58":0,"59":0,"60":0.01127,"61":0.005635,"62":0,"63":0.01127,"64":0.01127,"65":0.005635,"66":0.01127,"67":0.005635,"68":0.09016,"69":0.02254,"70":0.433895,"71":1.245335,"72":0.016905,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005635,"54":0,"55":0.005635,"56":0.005635,"57":0,"58":0.005635,"60":0,"62":0,"63":0.01127,"64":0.13524,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.18032,"9":0.01127,"10":0.005635,"11":0.061985,"12":0.163415,"13":1.369305,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.016905,"10.1":0.095795,"11.1":0.19159,"12.1":0.433895},G:{"8":0.00092770677067707,"3.2":0.0037108270827083,"4.0-4.1":0.0018554135413541,"4.2-4.3":0,"5.0-5.1":0.0055662406240624,"6.0-6.1":0.0018554135413541,"7.0-7.1":0.0064939473947395,"8.1-8.4":0.012060188018802,"9.0-9.2":0.011132481248125,"9.3":0.11781875987599,"10.0-10.2":0.040819097909791,"10.3":0.13173436143614,"11.0-11.2":0.11132481248125,"11.3-11.4":0.19852924892489,"12.0-12.1":0.28387827182718,"12.2-12.4":2.0094128652865,"13.0-13.1":2.9176377937794,"13.2":1.3284760956096,"13.3":2.0929064746475},I:{"3":0.0003674823943662,"4":0.0015924237089202,_:"76","2.1":0,"2.2":0.0002449882629108,"2.3":0.0002449882629108,"4.1":0.0028173650234742,"4.2-4.3":0.061614548122066,"4.4":0,"4.4.3-4.4.4":0.037483204225352},P:{"4":0.21285670673077,"5.0-5.4":0,"6.2-6.4":0.030408100961538,"7.2-7.4":0.060816201923077,"8.2":0.030408100961538,"9.2":0.20272067307692,"10.1":1.5710852163462},B:{"12":0,"13":0.005635,"14":0.005635,"15":0.005635,"16":0.01127,"17":0.06762,"18":0.40572,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.028175,"9":0,"10":0.005635,"11":0.2254,"5.5":0},N:{"10":0,"11":0.013095},J:{"7":0,"10":0.004365},R:{_:"0"},M:{"0":0.109125},O:{"0":0.030555},Q:{"1.2":0.004365},S:{"2.5":0},H:{"0":0.140505},L:{"0":55.5917}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CM.js new file mode 100644 index 0000000..d02e1c6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003975,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.003975,"27":0,"28":0,"29":0.003975,"30":0,"31":0,"32":0,"33":0.011925,"34":0,"35":0,"36":0.003975,"37":0.003975,"38":0.003975,"39":0,"40":0.00795,"41":0,"42":0,"43":0.0159,"44":0.003975,"45":0,"46":0.003975,"47":0,"48":0.003975,"49":0.1113,"50":0.011925,"51":0,"52":0,"53":0,"54":0,"55":0.011925,"56":0.0477,"57":0.00795,"58":0.0159,"59":0.003975,"60":0.00795,"61":0.003975,"62":0.019875,"63":0.07155,"64":0.011925,"65":0.02385,"66":0.011925,"67":0.019875,"68":0.00795,"69":0.11925,"70":0.0159,"71":0.0318,"72":0.0159,"73":0.03975,"74":0.05565,"75":0.0318,"76":0.115275,"77":0.13515,"78":2.889825,"79":2.285625,"80":0.011925,"81":0.003975},C:{"2":0,"3":0.003975,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003975,"31":0.003975,"32":0.003975,"33":0,"34":0.003975,"35":0,"36":0,"37":0.003975,"38":0.003975,"39":0.003975,"40":0.003975,"41":0.003975,"42":0.003975,"43":0.0159,"44":0.003975,"45":0.003975,"46":0.003975,"47":0.03975,"48":0.051675,"49":0.011925,"50":0.00795,"51":0.003975,"52":0.115275,"53":0.00795,"54":0.003975,"55":0.003975,"56":0.011925,"57":0.00795,"58":0.003975,"59":0.0159,"60":0.019875,"61":0.011925,"62":0.003975,"63":0.00795,"64":0.00795,"65":0.019875,"66":0.0318,"67":0.027825,"68":0.226575,"69":0.0636,"70":0.798975,"71":2.0511,"72":0.075525,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.003975,"17":0,"18":0,"19":0.00795,"20":0.0159,"21":0,"22":0,"23":0.0159,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003975,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.003975,"37":0,"38":0.003975,"39":0,"40":0,"41":0,"42":0.003975,"43":0,"44":0,"45":0.00795,"46":0.003975,"47":0.003975,"48":0.003975,"49":0,"50":0,"51":0,"52":0,"53":0.011925,"54":0.003975,"55":0.003975,"56":0,"57":0,"58":0.003975,"60":0,"62":0.003975,"63":0.0159,"64":0.0318,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.05565},E:{"4":0,"5":0,"6":0,"7":0,"8":0.011925,"9":0,"10":0.011925,"11":0.019875,"12":0.00795,"13":0.0795,_:"0","3.1":0,"3.2":0,"5.1":1.6059,"6.1":0,"7.1":0,"9.1":0.003975,"10.1":0.019875,"11.1":0.019875,"12.1":0.083475},G:{"8":0.00035415541554155,"3.2":0.0014166216621662,"4.0-4.1":0.00070831083108311,"4.2-4.3":0,"5.0-5.1":0.0021249324932493,"6.0-6.1":0.00070831083108311,"7.0-7.1":0.0024790879087909,"8.1-8.4":0.0046040204020402,"9.0-9.2":0.0042498649864987,"9.3":0.044977737773777,"10.0-10.2":0.015582838283828,"10.3":0.050290069006901,"11.0-11.2":0.042498649864986,"11.3-11.4":0.075789258925893,"12.0-12.1":0.10837155715572,"12.2-12.4":0.76710063006301,"13.0-13.1":1.1138187818782,"13.2":0.50715055505551,"13.3":0.79897461746175},I:{"3":0.002443573943662,"4":0.010588820422535,_:"76","2.1":0,"2.2":0.0016290492957746,"2.3":0.0016290492957746,"4.1":0.018734066901408,"4.2-4.3":0.40970589788732,"4.4":0,"4.4.3-4.4.4":0.24924454225352},P:{"4":0.56466424870466,"5.0-5.4":0.21174909326425,"6.2-6.4":0.040333160621762,"7.2-7.4":0.15124935233161,"8.2":0.060499740932642,"9.2":0.23191567357513,"10.1":0.68566373056995},B:{"12":0.027825,"13":0.02385,"14":0.051675,"15":0.075525,"16":0.02385,"17":0.083475,"18":0.2544,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.052935365853659,"9":0,"10":0.0081439024390244,"11":0.10587073170732,"5.5":0},N:{"10":0.03615,"11":0.34945},J:{"7":0,"10":0.0482},R:{_:"0"},M:{"0":0.415725},O:{"0":2.0967},Q:{"1.2":0.03615},S:{"2.5":0.18075},H:{"0":11.117253393471},L:{"0":58.36095}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CN.js new file mode 100644 index 0000000..025b33d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.011052,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.003684,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.014736,"28":0,"29":0,"30":0,"31":0.007368,"32":0,"33":0.003684,"34":0,"35":0,"36":0.003684,"37":0,"38":0,"39":0.003684,"40":0.040524,"41":0.014736,"42":0.007368,"43":0.003684,"44":0,"45":0.044208,"46":0.003684,"47":0.033156,"48":0.088416,"49":0.099468,"50":0.014736,"51":0.003684,"52":0,"53":0.003684,"54":0.01842,"55":0.40524,"56":0.047892,"57":0.187884,"58":0.007368,"59":0.014736,"60":0.01842,"61":0.011052,"62":0.151044,"63":2.483016,"64":0.007368,"65":0.051576,"66":0.01842,"67":0.01842,"68":0.029472,"69":1.388868,"70":0.05526,"71":0.136308,"72":0.361032,"73":0.117888,"74":0.51576,"75":0.346296,"76":0.143676,"77":0.1842,"78":1.156776,"79":0.740484,"80":0.014736,"81":0.003684},C:{"2":0,"3":0.003684,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.014736,"18":0,"19":0,"20":0,"21":0.003684,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003684,"31":0,"32":0,"33":0.025788,"34":0,"35":0,"36":0.025788,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01842,"44":0,"45":0.003684,"46":0,"47":0.003684,"48":0.003684,"49":0,"50":0.003684,"51":0,"52":0.01842,"53":0.003684,"54":0.007368,"55":0.007368,"56":0.011052,"57":0.007368,"58":0.003684,"59":0.003684,"60":0.007368,"61":0.003684,"62":0.003684,"63":0.003684,"64":0.007368,"65":0.007368,"66":0.003684,"67":0.007368,"68":0.033156,"69":0.033156,"70":0.088416,"71":0.25788,"72":0.003684,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.011052},E:{"4":0.014736,"5":0.011052,"6":0.014736,"7":0,"8":0,"9":0.003684,"10":0.003684,"11":0.011052,"12":0.044208,"13":0.25788,_:"0","3.1":0,"3.2":0,"5.1":0.003684,"6.1":0,"7.1":0,"9.1":0.003684,"10.1":0.011052,"11.1":0.029472,"12.1":0.099468},G:{"8":0.0009333097309731,"3.2":0.0037332389238924,"4.0-4.1":0.0018666194619462,"4.2-4.3":0,"5.0-5.1":0.0055998583858386,"6.0-6.1":0.0018666194619462,"7.0-7.1":0.0065331681168117,"8.1-8.4":0.01213302650265,"9.0-9.2":0.011199716771677,"9.3":0.11853033583358,"10.0-10.2":0.041065628162816,"10.3":0.13252998179818,"11.0-11.2":0.11199716771677,"11.3-11.4":0.19972828242824,"12.0-12.1":0.28559277767777,"12.2-12.4":2.0215488772877,"13.0-13.1":2.9352591039104,"13.2":1.3364995347535,"13.3":2.1055467530753},I:{"3":0.0084544788732394,"4":0.036636075117371,_:"76","2.1":0,"2.2":0.0056363192488263,"2.3":0.0056363192488263,"4.1":0.064817671361502,"4.2-4.3":1.4175342910798,"4.4":0,"4.4.3-4.4.4":0.86235684507042},P:{"4":0.031094153846154,"5.0-5.4":0.010364717948718,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.010364717948718,"9.2":0.18656492307692,"10.1":0.16583548717949},B:{"12":0.003684,"13":0.007368,"14":0.007368,"15":0.003684,"16":0.011052,"17":0.05526,"18":0.416292,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.013576568527919,"7":0.027153137055838,"8":0.26474308629442,"9":0.10182426395939,"10":0.067882842639594,"11":0.86211210152284,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.006316},R:{_:"0"},M:{"0":0.09474},O:{"0":10.162444},Q:{"1.2":6.764436},S:{"2.5":0},H:{"0":0.053816226804124},L:{"0":51.00678}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CO.js new file mode 100644 index 0000000..a934cea --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.006844,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.006844,"35":0,"36":0.006844,"37":0,"38":0.03422,"39":0,"40":0,"41":0,"42":0.006844,"43":0.006844,"44":0,"45":0,"46":0.006844,"47":0,"48":0,"49":0.184788,"50":0.006844,"51":0.013688,"52":0,"53":0.047908,"54":0.006844,"55":0.006844,"56":0.013688,"57":0.006844,"58":0.027376,"59":0.006844,"60":0.03422,"61":0.006844,"62":0.020532,"63":0.041064,"64":0.013688,"65":0.054752,"66":0.061596,"67":0.095816,"68":0.03422,"69":0.061596,"70":0.116348,"71":0.212164,"72":0.164256,"73":0.177944,"74":0.1711,"75":0.219008,"76":0.266916,"77":0.390108,"78":21.9008,"79":15.371624,"80":0.020532,"81":0.006844},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.006844,"33":0,"34":0.006844,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006844,"44":0,"45":0.013688,"46":0,"47":0.027376,"48":0.006844,"49":0,"50":0.44486,"51":0.006844,"52":0.020532,"53":0,"54":0,"55":0,"56":0.013688,"57":0,"58":0,"59":0.013688,"60":0.013688,"61":0.006844,"62":0,"63":0.013688,"64":0.013688,"65":0.020532,"66":0.027376,"67":0.013688,"68":0.184788,"69":0.020532,"70":0.390108,"71":1.108728,"72":0.020532,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.006844,"57":0.006844,"58":0,"60":0,"62":0,"63":0.006844,"64":0.06844,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.006844,"9":0,"10":0.020532,"11":0.03422,"12":0.157412,"13":1.286672,_:"0","3.1":0,"3.2":0,"5.1":0.03422,"6.1":0,"7.1":0,"9.1":0.013688,"10.1":0.095816,"11.1":0.177944,"12.1":0.44486},G:{"8":0.00052241944194419,"3.2":0.0020896777677768,"4.0-4.1":0.0010448388838884,"4.2-4.3":0,"5.0-5.1":0.0031345166516652,"6.0-6.1":0.0010448388838884,"7.0-7.1":0.0036569360936094,"8.1-8.4":0.0067914527452745,"9.0-9.2":0.0062690333033303,"9.3":0.066347269126913,"10.0-10.2":0.022986455445545,"10.3":0.074183560756076,"11.0-11.2":0.062690333033303,"11.3-11.4":0.11179776057606,"12.0-12.1":0.15986034923492,"12.2-12.4":1.1315605112511,"13.0-13.1":1.6430091449145,"13.2":0.74810464086409,"13.3":1.1785782610261},I:{"3":0.00062818309859155,"4":0.0027221267605634,_:"76","2.1":0,"2.2":0.00041878873239437,"2.3":0.00041878873239437,"4.1":0.0048160704225352,"4.2-4.3":0.10532536619718,"4.4":0,"4.4.3-4.4.4":0.064074676056338},P:{"4":0.22980148672566,"5.0-5.4":0,"6.2-6.4":0.010445522123894,"7.2-7.4":0.041782088495575,"8.2":0.010445522123894,"9.2":0.062673132743363,"10.1":0.82519624778761},B:{"12":0,"13":0.006844,"14":0.006844,"15":0.006844,"16":0.006844,"17":0.054752,"18":0.37642,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.013688,"9":0.006844,"10":0.006844,"11":0.123192,"5.5":0},N:{"10":0,"11":0.034716},J:{"7":0,"10":0.006312},R:{_:"0"},M:{"0":0.075744},O:{"0":0.044184},Q:{"1.2":0.003156},S:{"2.5":0},H:{"0":0.083661113402062},L:{"0":46.05104}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CR.js new file mode 100644 index 0000000..4cc0428 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006498,"37":0,"38":0.006498,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.025992,"49":0.279414,"50":0,"51":0,"52":0.006498,"53":0.006498,"54":0.006498,"55":0,"56":0,"57":0,"58":0.012996,"59":0,"60":0.006498,"61":0,"62":0.006498,"63":0.038988,"64":0.006498,"65":0.025992,"66":0.019494,"67":0.06498,"68":0.03249,"69":0.058482,"70":0.077976,"71":0.077976,"72":0.038988,"73":0.084474,"74":0.071478,"75":0.116964,"76":0.168948,"77":0.253422,"78":16.82982,"79":10.305828,"80":0.019494,"81":0.006498},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.006498,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.006498,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.006498,"48":0.019494,"49":0,"50":0,"51":0,"52":0.051984,"53":0,"54":0,"55":0,"56":0,"57":0.006498,"58":0,"59":0,"60":0.006498,"61":0,"62":0,"63":0,"64":0.006498,"65":0.012996,"66":0.038988,"67":0.019494,"68":0.12996,"69":0.03249,"70":0.851238,"71":2.131344,"72":0.03249,"73":0.006498,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.006498,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006498,"56":0,"57":0.019494,"58":0,"60":0,"62":0,"63":0.006498,"64":0.058482,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.006498},E:{"4":0.006498,"5":0,"6":0,"7":0,"8":0.006498,"9":0.006498,"10":0.012996,"11":0.071478,"12":0.311904,"13":3.398454,_:"0","3.1":0,"3.2":0,"5.1":1.637496,"6.1":0,"7.1":0,"9.1":0.051984,"10.1":0.175446,"11.1":0.428868,"12.1":0.9747},G:{"8":0.0011220246024602,"3.2":0.004488098409841,"4.0-4.1":0.0022440492049205,"4.2-4.3":0,"5.0-5.1":0.0067321476147615,"6.0-6.1":0.0022440492049205,"7.0-7.1":0.0078541722172217,"8.1-8.4":0.014586319831983,"9.0-9.2":0.013464295229523,"9.3":0.14249712451245,"10.0-10.2":0.049369082508251,"10.3":0.15932749354935,"11.0-11.2":0.13464295229523,"11.3-11.4":0.24011326492649,"12.0-12.1":0.34333952835284,"12.2-12.4":2.4303052889289,"13.0-13.1":3.5287673747375,"13.2":1.6067392307231,"13.3":2.5312875031503},I:{"3":0.0010915492957746,"4":0.0047300469483568,_:"76","2.1":0,"2.2":0.00072769953051643,"2.3":0.00072769953051643,"4.1":0.008368544600939,"4.2-4.3":0.18301643192488,"4.4":0,"4.4.3-4.4.4":0.11133802816901},P:{"4":0.14339605309735,"5.0-5.4":0,"6.2-6.4":0.030727725663717,"7.2-7.4":0.061455451327434,"8.2":0.030727725663717,"9.2":0.22533665486726,"10.1":1.8026932389381},B:{"12":0.006498,"13":0.006498,"14":0.012996,"15":0.012996,"16":0.019494,"17":0.084474,"18":0.740772,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0069829253731343,"7":0.0069829253731343,"8":0.11172680597015,"9":0.013965850746269,"10":0.020948776119403,"11":0.30724871641791,"5.5":0},N:{"10":0,"11":0.010506},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.150586},O:{"0":0.042024},Q:{"1.2":0.007004},S:{"2.5":0},H:{"0":0.21882084536082},L:{"0":42.64952}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CU.js new file mode 100644 index 0000000..7135ccc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.005149,"26":0,"27":0,"28":0,"29":0.005149,"30":0.036043,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005149,"37":0,"38":0.020596,"39":0.025745,"40":0.005149,"41":0.005149,"42":0.005149,"43":0.005149,"44":0,"45":0,"46":0.005149,"47":0.005149,"48":0.005149,"49":0.061788,"50":0.005149,"51":0.005149,"52":0.005149,"53":0.036043,"54":0.056639,"55":0.010298,"56":0.005149,"57":0.005149,"58":0.015447,"59":0.010298,"60":0.015447,"61":0.005149,"62":0.015447,"63":0.061788,"64":0.015447,"65":0.015447,"66":0.010298,"67":0.025745,"68":0.025745,"69":0.015447,"70":0.036043,"71":0.036043,"72":0.056639,"73":0.072086,"74":0.123576,"75":0.10298,"76":0.221407,"77":0.303791,"78":2.538457,"79":2.157431,"80":0.005149,"81":0},C:{"2":0.005149,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.005149,"16":0.005149,"17":0.005149,"18":0.005149,"19":0.010298,"20":0.010298,"21":0.010298,"22":0,"23":0.005149,"24":0.005149,"25":0.020596,"26":0.025745,"27":0.005149,"28":0.010298,"29":0.010298,"30":0.015447,"31":0.015447,"32":0.020596,"33":0.041192,"34":0.133874,"35":0.025745,"36":0.020596,"37":0.025745,"38":0.056639,"39":0.05149,"40":0.087533,"41":0.05149,"42":0.030894,"43":0.128725,"44":0.030894,"45":0.15447,"46":0.05149,"47":0.190513,"48":0.087533,"49":0.066937,"50":0.252301,"51":0.05149,"52":0.473708,"53":0.180215,"54":0.952565,"55":0.113278,"56":0.20596,"57":0.5149,"58":0.169917,"59":0.236854,"60":0.453112,"61":0.30894,"62":0.236854,"63":0.144172,"64":0.303791,"65":0.298642,"66":0.437665,"67":0.422218,"68":1.024651,"69":0.72086,"70":3.300509,"71":4.99453,"72":0.128725,"73":0.010298,"3.5":0,"3.6":0.005149},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.005149,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.005149,"30":0,"31":0,"32":0,"33":0.005149,"34":0.005149,"35":0,"36":0.005149,"37":0,"38":0.005149,"39":0,"40":0,"41":0,"42":0.005149,"43":0,"44":0.005149,"45":0.010298,"46":0.005149,"47":0.010298,"48":0,"49":0.025745,"50":0,"51":0,"52":0,"53":0.005149,"54":0.010298,"55":0.015447,"56":0,"57":0.005149,"58":0.005149,"60":0.015447,"62":0.010298,"63":0.015447,"64":0.056639,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.020596},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.005149,"11":0.010298,"12":0.036043,"13":0.236854,_:"0","3.1":0,"3.2":0,"5.1":0.499453,"6.1":0,"7.1":0,"9.1":0,"10.1":0.015447,"11.1":0.010298,"12.1":0.025745},G:{"8":0.00088416161616162,"3.2":0.0035366464646465,"4.0-4.1":0.0017683232323232,"4.2-4.3":0,"5.0-5.1":0.0053049696969697,"6.0-6.1":0.0017683232323232,"7.0-7.1":0.0061891313131313,"8.1-8.4":0.011494101010101,"9.0-9.2":0.010609939393939,"9.3":0.11228852525253,"10.0-10.2":0.038903111111111,"10.3":0.12555094949495,"11.0-11.2":0.10609939393939,"11.3-11.4":0.18921058585859,"12.0-12.1":0.27055345454545,"12.2-12.4":1.9150940606061,"13.0-13.1":2.7806882828283,"13.2":1.2661194343434,"13.3":1.9946686060606},I:{"3":0.001893014084507,"4":0.0082030610328638,_:"76","2.1":0,"2.2":0.0012620093896714,"2.3":0.0012620093896714,"4.1":0.014513107981221,"4.2-4.3":0.31739536150235,"4.4":0,"4.4.3-4.4.4":0.19308743661972},P:{"4":0.62624416438356,"5.0-5.4":0.080805698630137,"6.2-6.4":0.080805698630137,"7.2-7.4":0.32322279452055,"8.2":0.11110783561644,"9.2":0.63634487671233,"10.1":1.0706755068493},B:{"12":0.030894,"13":0.036043,"14":0.041192,"15":0.036043,"16":0.020596,"17":0.092682,"18":0.20596,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.061788,"9":0,"10":0.242003,"11":0.211109,"5.5":0},N:{"10":0,"11":0.024255},J:{"7":0,"10":0.009702},R:{_:"0"},M:{"0":1.460151},O:{"0":0.378378},Q:{"1.2":0.087318},S:{"2.5":0},H:{"0":1.1389681237113},L:{"0":55.694611}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CV.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CV.js new file mode 100644 index 0000000..48b9a09 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CV.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005231,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.010462,"37":0,"38":0,"39":0,"40":0.036617,"41":0,"42":0.010462,"43":0.214471,"44":0,"45":0,"46":0.005231,"47":0,"48":0,"49":0.109851,"50":0,"51":0,"52":0,"53":0.005231,"54":0,"55":0.041848,"56":0.010462,"57":0,"58":0.005231,"59":0.005231,"60":0.020924,"61":0.010462,"62":0.005231,"63":0.062772,"64":0.020924,"65":0.020924,"66":0.010462,"67":0.020924,"68":0.010462,"69":0.167392,"70":0.015693,"71":0.041848,"72":0.088927,"73":0.031386,"74":0.324322,"75":0.094158,"76":0.245857,"77":0.224933,"78":9.525651,"79":6.999078,"80":0.015693,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.005231,"49":0,"50":0.010462,"51":0,"52":0.015693,"53":0,"54":0,"55":0.005231,"56":0,"57":0,"58":0,"59":0,"60":0.005231,"61":0,"62":0,"63":0.005231,"64":0,"65":0,"66":0.094158,"67":0,"68":0.083696,"69":0.010462,"70":0.355708,"71":1.312981,"72":0.073234,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.031386,"46":0.005231,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005231,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005231,"64":0.026155,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005231},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.005231,"11":0.026155,"12":0.062772,"13":1.537914,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.162161,"11.1":0.172623,"12.1":0.774188},G:{"8":0.00094246674667467,"3.2":0.0037698669866987,"4.0-4.1":0.0018849334933493,"4.2-4.3":0,"5.0-5.1":0.005654800480048,"6.0-6.1":0.0018849334933493,"7.0-7.1":0.0065972672267227,"8.1-8.4":0.012252067706771,"9.0-9.2":0.011309600960096,"9.3":0.11969327682768,"10.0-10.2":0.041468536853685,"10.3":0.1338302780278,"11.0-11.2":0.11309600960096,"11.3-11.4":0.20168788378838,"12.0-12.1":0.28839482448245,"12.2-12.4":2.0413829732973,"13.0-13.1":2.9640579182918,"13.2":1.3496123812381,"13.3":2.126204980498},I:{"3":0.0016592852112676,"4":0.007190235915493,_:"76","2.1":0,"2.2":0.0011061901408451,"2.3":0.0011061901408451,"4.1":0.012721186619718,"4.2-4.3":0.27820682042254,"4.4":0,"4.4.3-4.4.4":0.1692470915493},P:{"4":0.3971365204918,"5.0-5.4":0.040731950819672,"6.2-6.4":0.030548963114754,"7.2-7.4":0.18329377868852,"8.2":0.030548963114754,"9.2":0.3360385942623,"10.1":1.4663502295082},B:{"12":0.015693,"13":0.041848,"14":0.047079,"15":0.041848,"16":0.036617,"17":0.402787,"18":0.800343,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.010462,"9":0,"10":0,"11":0.360939,"5.5":0},N:{"10":0.010332833333333,"11":0.051664166666667},J:{"7":0,"10":0.014307},R:{_:"0"},M:{"0":0.123994},O:{"0":0.200298},Q:{"1.2":0.028614},S:{"2.5":0},H:{"0":0.37474343127148},L:{"0":59.083526}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CX.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CX.js new file mode 100644 index 0000000..0107a03 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CX.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":1.85,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":9.26,"79":5.56,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":1.85,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":55.56,"71":0,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0},I:{"3":0,"4":0,_:"76","2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":5.56,"17":0,"18":0,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":1.85,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":3.7}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CY.js new file mode 100644 index 0000000..34665be --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005824,"37":0,"38":0.023296,"39":0,"40":0.005824,"41":0,"42":0.780416,"43":0,"44":0,"45":0,"46":0,"47":0.005824,"48":0.005824,"49":0.343616,"50":0,"51":0,"52":0,"53":0.023296,"54":0.011648,"55":0.005824,"56":0,"57":0,"58":0.011648,"59":0.017472,"60":0.005824,"61":0.005824,"62":0.017472,"63":0.559104,"64":0.005824,"65":0.011648,"66":0.005824,"67":0.011648,"68":0.011648,"69":0.011648,"70":1.036672,"71":0.017472,"72":0.05824,"73":0.023296,"74":0.034944,"75":0.040768,"76":0.093184,"77":0.081536,"78":12.108096,"79":10.291008,"80":0.011648,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.005824,"44":0,"45":0.005824,"46":0,"47":0.005824,"48":0.017472,"49":0,"50":0.011648,"51":0,"52":0.064064,"53":0,"54":0.02912,"55":0,"56":0.005824,"57":0,"58":0.023296,"59":0,"60":0.023296,"61":0.005824,"62":0,"63":0.005824,"64":0,"65":0.005824,"66":0.005824,"67":0.005824,"68":0.093184,"69":0.011648,"70":0.477568,"71":1.7472,"72":0.011648,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.005824,"38":0,"39":0,"40":0.005824,"41":0,"42":0,"43":0,"44":0,"45":0.02912,"46":0.023296,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005824,"54":0,"55":0.005824,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.017472,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005824,"9":0,"10":0.005824,"11":0.069888,"12":0.110656,"13":1.444352,_:"0","3.1":0,"3.2":0,"5.1":0.046592,"6.1":0,"7.1":0,"9.1":0.017472,"10.1":0.180544,"11.1":0.099008,"12.1":0.361088},G:{"8":0.0014408320832083,"3.2":0.0057633283328333,"4.0-4.1":0.0028816641664166,"4.2-4.3":0,"5.0-5.1":0.0086449924992499,"6.0-6.1":0.0028816641664166,"7.0-7.1":0.010085824582458,"8.1-8.4":0.018730817081708,"9.0-9.2":0.0172899849985,"9.3":0.18298567456746,"10.0-10.2":0.063396611661166,"10.3":0.20459815581558,"11.0-11.2":0.172899849985,"11.3-11.4":0.30833806580658,"12.0-12.1":0.44089461746175,"12.2-12.4":3.1208422922292,"13.0-13.1":4.5314169016902,"13.2":2.0632715431543,"13.3":3.250517179718},I:{"3":0.0011468732394366,"4":0.0049697840375587,_:"76","2.1":0,"2.2":0.00076458215962441,"2.3":0.00076458215962441,"4.1":0.0087926948356808,"4.2-4.3":0.19229241314554,"4.4":0,"4.4.3-4.4.4":0.11698107042254},P:{"4":0.11361829787234,"5.0-5.4":0,"6.2-6.4":0.030986808510638,"7.2-7.4":0.030986808510638,"8.2":0.020657872340426,"9.2":0.14460510638298,"10.1":3.5118382978723},B:{"12":0.005824,"13":0.005824,"14":0.005824,"15":0.017472,"16":0.017472,"17":0.093184,"18":0.937664,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.034944,"9":0,"10":0.005824,"11":0.634816,"5.5":0},N:{"10":0,"11":0.012528},J:{"7":0,"10":0.004176},R:{_:"0"},M:{"0":0.121104},O:{"0":1.674576},Q:{"1.2":0.004176},S:{"2.5":0},H:{"0":0.27279612371134},L:{"0":42.671552}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/CZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/CZ.js new file mode 100644 index 0000000..ad1bd25 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/CZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00673,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.01346,"34":0.00673,"35":0,"36":0.00673,"37":0,"38":0.01346,"39":0,"40":0.00673,"41":0.02019,"42":0,"43":0.00673,"44":0,"45":0.00673,"46":0.00673,"47":0.00673,"48":0.00673,"49":1.18448,"50":0.02692,"51":0.01346,"52":0.00673,"53":0.04038,"54":0.00673,"55":0.01346,"56":0.02019,"57":0.01346,"58":0.02692,"59":0.00673,"60":0.02692,"61":0.05384,"62":0.01346,"63":0.05384,"64":0.00673,"65":0.01346,"66":0.01346,"67":0.04711,"68":0.02692,"69":0.04711,"70":0.09422,"71":0.14133,"72":0.15479,"73":0.09422,"74":0.06057,"75":0.16152,"76":0.19517,"77":0.4038,"78":13.58787,"79":10.51899,"80":0.03365,"81":0.00673},C:{"2":0,"3":0.00673,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01346,"22":0,"23":0,"24":0.00673,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00673,"39":0,"40":0,"41":0,"42":0.00673,"43":0.00673,"44":0.00673,"45":0.01346,"46":0,"47":0.00673,"48":0.02692,"49":0.00673,"50":0.01346,"51":0.01346,"52":0.20863,"53":0.00673,"54":0.00673,"55":0.01346,"56":0.04711,"57":0.03365,"58":0.02019,"59":0.00673,"60":0.05384,"61":0.00673,"62":0.01346,"63":0.01346,"64":0.05384,"65":0.0673,"66":0.04711,"67":0.08076,"68":0.35669,"69":0.11441,"70":1.38638,"71":4.48891,"72":0.02692,"73":0.00673,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02019,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.10095,"46":0.08749,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00673,"53":0.04038,"54":0.00673,"55":0.02019,"56":0.00673,"57":0.00673,"58":0.00673,"60":0,"62":0.00673,"63":0.01346,"64":0.08076,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.04711},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00673,"9":0,"10":0.00673,"11":0.02019,"12":0.09422,"13":1.8171,_:"0","3.1":0,"3.2":0,"5.1":0.82779,"6.1":0,"7.1":0,"9.1":0.02019,"10.1":0.07403,"11.1":0.10768,"12.1":0.28266},G:{"8":0.0010864816481648,"3.2":0.0043459265926593,"4.0-4.1":0.0021729632963296,"4.2-4.3":0,"5.0-5.1":0.0065188898889889,"6.0-6.1":0.0021729632963296,"7.0-7.1":0.0076053715371537,"8.1-8.4":0.014124261426143,"9.0-9.2":0.013037779777978,"9.3":0.13798316931693,"10.0-10.2":0.047805192519252,"10.3":0.1542803940394,"11.0-11.2":0.13037779777978,"11.3-11.4":0.23250707270727,"12.0-12.1":0.33246338433843,"12.2-12.4":2.353319249925,"13.0-13.1":3.4169847834783,"13.2":1.555841720172,"13.3":2.4511025982598},I:{"3":0.0011457746478873,"4":0.0049650234741784,_:"76","2.1":0,"2.2":0.00076384976525822,"2.3":0.00076384976525822,"4.1":0.0087842723004695,"4.2-4.3":0.19210821596244,"4.4":0,"4.4.3-4.4.4":0.11686901408451},P:{"4":0.12340695652174,"5.0-5.4":0.010283913043478,"6.2-6.4":0.010283913043478,"7.2-7.4":0.041135652173913,"8.2":0.020567826086957,"9.2":0.10283913043478,"10.1":1.7996847826087},B:{"12":0.00673,"13":0.00673,"14":0.02692,"15":0.03365,"16":0.04038,"17":0.16152,"18":2.14687,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.040853203125,"9":0.0204266015625,"10":0.0748975390625,"11":1.60689265625,"5.5":0},N:{"10":0.0109,"11":0.0545},J:{"7":0,"10":0.01962},R:{_:"0"},M:{"0":0.23871},O:{"0":0.44472},Q:{"1.2":0.01635},S:{"2.5":0},H:{"0":0.68417726804124},L:{"0":38.11227}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/DE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/DE.js new file mode 100644 index 0000000..32ed449 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/DE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.021524,"23":0,"24":0.005381,"25":0,"26":0.005381,"27":0,"28":0,"29":0.005381,"30":0,"31":0,"32":0,"33":0,"34":0.005381,"35":0,"36":0,"37":0.005381,"38":0.010762,"39":0.005381,"40":0.005381,"41":0.005381,"42":0.005381,"43":0.005381,"44":0,"45":0,"46":0.021524,"47":0.010762,"48":0.005381,"49":0.581148,"50":0.005381,"51":0.010762,"52":0.005381,"53":0.010762,"54":0.010762,"55":0.010762,"56":0.010762,"57":0.010762,"58":0.010762,"59":0.005381,"60":0.021524,"61":0.010762,"62":0.010762,"63":0.075334,"64":0.010762,"65":0.064572,"66":0.037667,"67":0.026905,"68":0.021524,"69":0.037667,"70":0.242145,"71":0.290574,"72":0.258288,"73":0.199097,"74":0.048429,"75":0.113001,"76":0.236764,"77":0.182954,"78":5.43481,"79":4.374753,"80":0.010762,"81":0.005381},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.037667,"22":0,"23":0,"24":0.005381,"25":0,"26":0.010762,"27":0,"28":0,"29":0,"30":0,"31":0.005381,"32":0,"33":0.005381,"34":0,"35":0,"36":0,"37":0,"38":0.086096,"39":0,"40":0.005381,"41":0.005381,"42":0.005381,"43":0.005381,"44":0.005381,"45":0.010762,"46":0,"47":0.010762,"48":0.032286,"49":0.005381,"50":0.005381,"51":0.016143,"52":0.156049,"53":0.005381,"54":0.016143,"55":0.010762,"56":0.026905,"57":0.010762,"58":0.010762,"59":0.016143,"60":0.086096,"61":0.016143,"62":0.016143,"63":0.037667,"64":0.048429,"65":0.05381,"66":0.05381,"67":0.032286,"68":0.661863,"69":0.139906,"70":1.382917,"71":4.159513,"72":0.032286,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.010762,"37":0,"38":0,"39":0,"40":0.005381,"41":0,"42":0,"43":0,"44":0,"45":0.010762,"46":0.005381,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005381,"54":0.005381,"55":0.010762,"56":0.016143,"57":0.016143,"58":0.021524,"60":0.005381,"62":0.005381,"63":0.010762,"64":0.069953,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005381},E:{"4":0,"5":0.005381,"6":0,"7":0.005381,"8":0.005381,"9":0.005381,"10":0.016143,"11":0.021524,"12":0.102239,"13":2.017875,_:"0","3.1":0,"3.2":0,"5.1":0.263669,"6.1":0.005381,"7.1":0,"9.1":0.021524,"10.1":0.059191,"11.1":0.134525,"12.1":0.285193},G:{"8":0.0020912078207821,"3.2":0.0083648312831283,"4.0-4.1":0.0041824156415642,"4.2-4.3":0,"5.0-5.1":0.012547246924692,"6.0-6.1":0.0041824156415642,"7.0-7.1":0.014638454745475,"8.1-8.4":0.027185701670167,"9.0-9.2":0.025094493849385,"9.3":0.26558339323932,"10.0-10.2":0.092013144114411,"10.3":0.29695151055106,"11.0-11.2":0.25094493849385,"11.3-11.4":0.44751847364736,"12.0-12.1":0.63990959315932,"12.2-12.4":4.529556139814,"13.0-13.1":6.5768485963596,"13.2":2.9946095993599,"13.3":4.7177648436844},I:{"3":0.0016276021126761,"4":0.0070529424882629,_:"76","2.1":0,"2.2":0.0010850680751174,"2.3":0.0010850680751174,"4.1":0.01247828286385,"4.2-4.3":0.27289462089202,"4.4":0,"4.4.3-4.4.4":0.16601541549296},P:{"4":0.32565397962382,"5.0-5.4":0.042019868338558,"6.2-6.4":0.021009934169279,"7.2-7.4":0.084039736677116,"8.2":0.052524835423197,"9.2":0.33615894670846,"10.1":5.7672269294671},B:{"12":0.005381,"13":0.005381,"14":0.016143,"15":0.021524,"16":0.043048,"17":0.145287,"18":1.915636,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.043803228070175,"7":0.032852421052632,"8":0.060229438596491,"9":0.010950807017544,"10":0.02737701754386,"11":1.3852770877193,"5.5":0},N:{"10":0,"11":0.050809},J:{"7":0,"10":0.009238},R:{_:"0"},M:{"0":0.642041},O:{"0":0.309473},Q:{"1.2":0.013857},S:{"2.5":0},H:{"0":0.36295657560137},L:{"0":38.507386}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/DJ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/DJ.js new file mode 100644 index 0000000..99dfac4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/DJ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00859,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004295,"39":0,"40":0.004295,"41":0,"42":0,"43":0,"44":0.00859,"45":0,"46":0.00859,"47":0,"48":0.00859,"49":0.02577,"50":0.004295,"51":0,"52":0.004295,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.038655,"59":0,"60":0,"61":0,"62":0,"63":0.081605,"64":0,"65":0.021475,"66":0.004295,"67":0.021475,"68":0,"69":0.06013,"70":0,"71":0.004295,"72":0.05154,"73":0.012885,"74":0.13744,"75":0.012885,"76":0.03436,"77":0.10308,"78":5.596385,"79":5.45465,"80":0.012885,"81":0.01718},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.004295,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00859,"48":0,"49":0,"50":0,"51":0.004295,"52":0.01718,"53":0,"54":0,"55":0.004295,"56":0.004295,"57":0,"58":0,"59":0,"60":0.12026,"61":0,"62":0,"63":0,"64":0,"65":0.004295,"66":0.004295,"67":0.004295,"68":0.03436,"69":0.06872,"70":0.408025,"71":0.92772,"72":0.012885,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00859,"39":0,"40":0,"41":0,"42":0,"43":0.004295,"44":0,"45":0.01718,"46":0.004295,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00859,"56":0,"57":0,"58":0,"60":0.03436,"62":0,"63":0,"64":0.004295,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004295},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00859,"13":0.9449,_:"0","3.1":0,"3.2":0,"5.1":1.12529,"6.1":0,"7.1":0,"9.1":0,"10.1":0.055835,"11.1":0.01718,"12.1":0.176095},G:{"8":0.00070037403740374,"3.2":0.002801496149615,"4.0-4.1":0.0014007480748075,"4.2-4.3":0,"5.0-5.1":0.0042022442244224,"6.0-6.1":0.0014007480748075,"7.0-7.1":0.0049026182618262,"8.1-8.4":0.0091048624862486,"9.0-9.2":0.0084044884488449,"9.3":0.088947502750275,"10.0-10.2":0.030816457645765,"10.3":0.099453113311331,"11.0-11.2":0.084044884488449,"11.3-11.4":0.1498800440044,"12.0-12.1":0.21431445544554,"12.2-12.4":1.5170101650165,"13.0-13.1":2.2026763476348,"13.2":1.0029356215622,"13.3":1.5800438283828},I:{"3":0.0017752288732394,"4":0.0076926584507042,_:"76","2.1":0,"2.2":0.001183485915493,"2.3":0.001183485915493,"4.1":0.013610088028169,"4.2-4.3":0.29764670774648,"4.4":0,"4.4.3-4.4.4":0.18107334507042},P:{"4":3.1817578410596,"5.0-5.4":0.060797920529801,"6.2-6.4":0.13172882781457,"7.2-7.4":0.73970803311258,"8.2":0.11146285430464,"9.2":0.57758024503311,"10.1":2.8473692781457},B:{"12":0.012885,"13":0.01718,"14":0.021475,"15":0.021475,"16":0.00859,"17":0.04295,"18":0.44668,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.047245,"9":0,"10":0.004295,"11":0.19757,"5.5":0},N:{"10":0,"11":0.005705},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.074165},O:{"0":1.44907},Q:{"1.2":1.180935},S:{"2.5":0},H:{"0":1.728360137457},L:{"0":57.434695}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/DK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/DK.js new file mode 100644 index 0000000..f6f91a1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/DK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.006648,"35":0,"36":0,"37":0,"38":0.013296,"39":0,"40":0,"41":0,"42":0,"43":0.006648,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.139608,"50":0,"51":0,"52":0,"53":0.006648,"54":0.006648,"55":0,"56":0.006648,"57":0.006648,"58":0.006648,"59":0.019944,"60":0.073128,"61":0.006648,"62":0.013296,"63":0.03324,"64":0.006648,"65":0.019944,"66":0.019944,"67":0.039888,"68":0.019944,"69":0.053184,"70":0.039888,"71":0.093072,"72":0.06648,"73":0.06648,"74":0.06648,"75":0.106368,"76":0.319104,"77":0.485304,"78":17.238264,"79":10.151496,"80":0.013296,"81":0.006648},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.013296,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006648,"46":0,"47":0,"48":0.006648,"49":0,"50":0,"51":0,"52":0.03324,"53":0,"54":0,"55":0,"56":0.03324,"57":0,"58":0,"59":0,"60":0.006648,"61":0,"62":0,"63":0,"64":0.006648,"65":0.013296,"66":0.019944,"67":0.013296,"68":0.139608,"69":0.026592,"70":0.43212,"71":1.36284,"72":0.013296,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006648,"46":0.006648,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.013296,"60":0,"62":0.006648,"63":0.006648,"64":0.013296,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.006648,"9":0,"10":0.013296,"11":0.06648,"12":0.29916,"13":4.879632,_:"0","3.1":0,"3.2":0,"5.1":0.06648,"6.1":0.006648,"7.1":0,"9.1":0.046536,"10.1":0.119664,"11.1":0.285864,"12.1":0.870888},G:{"8":0.0031570389038904,"3.2":0.012628155615562,"4.0-4.1":0.0063140778077808,"4.2-4.3":0,"5.0-5.1":0.018942233423342,"6.0-6.1":0.0063140778077808,"7.0-7.1":0.022099272327233,"8.1-8.4":0.041041505750575,"9.0-9.2":0.037884466846685,"9.3":0.40094394079408,"10.0-10.2":0.13890971177118,"10.3":0.44829952435244,"11.0-11.2":0.37884466846685,"11.3-11.4":0.67560632543254,"12.0-12.1":0.96605390459046,"12.2-12.4":6.8381462658266,"13.0-13.1":9.9288873527353,"13.2":4.520879710371,"13.3":7.1222797671767},I:{"3":0.00042292957746479,"4":0.0018326948356808,_:"76","2.1":0,"2.2":0.00028195305164319,"2.3":0.00028195305164319,"4.1":0.0032424600938967,"4.2-4.3":0.070911192488263,"4.4":0,"4.4.3-4.4.4":0.043138816901408},P:{"4":0.053043617021277,"5.0-5.4":0,"6.2-6.4":0.010608723404255,"7.2-7.4":0.031826170212766,"8.2":0.031826170212766,"9.2":0.12730468085106,"10.1":1.7080044680851},B:{"12":0,"13":0.006648,"14":0.006648,"15":0.013296,"16":0.03324,"17":0.139608,"18":2.140656,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.03324,"8":0.006648,"9":0.006648,"10":0.013296,"11":1.442616,"5.5":0},N:{"10":0,"11":0.013408},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.207824},O:{"0":0.063688},Q:{"1.2":0.013408},S:{"2.5":0},H:{"0":0.085683340206186},L:{"0":22.108784}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/DM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/DM.js new file mode 100644 index 0000000..0186370 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/DM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.012198,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.024396,"39":0,"40":0.004066,"41":0.004066,"42":0.004066,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.374072,"50":0,"51":0,"52":0.004066,"53":0.056924,"54":0.004066,"55":0,"56":0.004066,"57":0.004066,"58":0.004066,"59":0,"60":0.004066,"61":0.14231,"62":0.02033,"63":0.276488,"64":0,"65":0.016264,"66":0.004066,"67":0.024396,"68":0.008132,"69":0.028462,"70":0.004066,"71":0.012198,"72":0.004066,"73":0.24396,"74":0.024396,"75":0.056924,"76":0.06099,"77":0.048792,"78":4.745022,"79":3.667532,"80":0.004066,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004066,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.008132,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.004066,"61":0,"62":0.004066,"63":0,"64":0,"65":0,"66":0.012198,"67":0,"68":0.056924,"69":0.004066,"70":0.085386,"71":0.30495,"72":0.004066,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.004066,"30":0,"31":0,"32":0,"33":0.004066,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.012198,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.004066,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.012198,"8":0.004066,"9":0,"10":0,"11":0,"12":0.004066,"13":0.882322,_:"0","3.1":0,"3.2":0,"5.1":2.187508,"6.1":0,"7.1":0,"9.1":0,"10.1":0.024396,"11.1":0.016264,"12.1":0.04066},G:{"8":0.00090280268026803,"3.2":0.0036112107210721,"4.0-4.1":0.0018056053605361,"4.2-4.3":0,"5.0-5.1":0.0054168160816082,"6.0-6.1":0.0018056053605361,"7.0-7.1":0.0063196187618762,"8.1-8.4":0.011736434843484,"9.0-9.2":0.010833632163216,"9.3":0.11465594039404,"10.0-10.2":0.039723317931793,"10.3":0.12819798059806,"11.0-11.2":0.10833632163216,"11.3-11.4":0.19319977357736,"12.0-12.1":0.27625762016202,"12.2-12.4":1.9554706054605,"13.0-13.1":2.8393144294429,"13.2":1.2928134381438,"13.3":2.0367228466847},I:{"3":0.0032835915492958,"4":0.014228896713615,_:"76","2.1":0,"2.2":0.0021890610328638,"2.3":0.0021890610328638,"4.1":0.025174201877934,"4.2-4.3":0.55054884976526,"4.4":0,"4.4.3-4.4.4":0.33492633802817},P:{"4":0.27362563066202,"5.0-5.4":0.03157218815331,"6.2-6.4":0.04209625087108,"7.2-7.4":0.38939032055749,"8.2":0.05262031358885,"9.2":0.34729406968641,"10.1":4.851592912892},B:{"12":0,"13":0.004066,"14":0.012198,"15":0.016264,"16":0.012198,"17":0.08132,"18":0.77254,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.004066,"9":0,"10":0,"11":0.268356,"5.5":0},N:{"10":0,"11":0.112746},J:{"7":0,"10":0.083076},R:{_:"0"},M:{"0":0.142416},O:{"0":0.290766},Q:{"1.2":0.005934},S:{"2.5":0},H:{"0":0.33707567010309},L:{"0":64.958476}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/DO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/DO.js new file mode 100644 index 0000000..c39ef17 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/DO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.02073,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01382,"37":0,"38":0.00691,"39":0,"40":0,"41":0.00691,"42":0.00691,"43":0.00691,"44":0.00691,"45":0.01382,"46":0,"47":0,"48":0.00691,"49":0.47679,"50":0,"51":0,"52":0,"53":0.00691,"54":0,"55":0,"56":0.00691,"57":0,"58":0.02073,"59":0.00691,"60":0.00691,"61":0.01382,"62":0.00691,"63":0.05528,"64":0.00691,"65":0.06219,"66":0.02073,"67":0.0691,"68":0.03455,"69":0.07601,"70":0.38005,"71":0.50443,"72":0.45606,"73":0.21421,"74":0.09674,"75":0.20039,"76":0.22803,"77":0.32477,"78":15.42312,"79":10.72432,"80":0.03455,"81":0.00691},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01382,"46":0,"47":0.00691,"48":0.00691,"49":0,"50":0,"51":0,"52":0.06219,"53":0.00691,"54":0,"55":0,"56":0.02764,"57":0.00691,"58":0.00691,"59":0,"60":0.04146,"61":0.01382,"62":0,"63":0.11056,"64":0.04146,"65":0.05528,"66":0.04837,"67":0.00691,"68":0.09674,"69":0.02073,"70":0.36623,"71":1.06414,"72":0.00691,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00691,"46":0,"47":0,"48":0.00691,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00691,"56":0.02073,"57":0.00691,"58":0.06219,"60":0,"62":0.00691,"63":0.00691,"64":0.09674,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00691,"9":0.02073,"10":0.01382,"11":0.04837,"12":0.21421,"13":1.70677,_:"0","3.1":0,"3.2":0,"5.1":9.43906,"6.1":0,"7.1":0,"9.1":0.00691,"10.1":0.07601,"11.1":0.19348,"12.1":0.53207},G:{"8":0.0012370667066707,"3.2":0.0049482668266827,"4.0-4.1":0.0024741334133413,"4.2-4.3":0,"5.0-5.1":0.007422400240024,"6.0-6.1":0.0024741334133413,"7.0-7.1":0.0086594669466947,"8.1-8.4":0.016081867186719,"9.0-9.2":0.014844800480048,"9.3":0.15710747174717,"10.0-10.2":0.054430935093509,"10.3":0.17566347234723,"11.0-11.2":0.14844800480048,"11.3-11.4":0.26473227522752,"12.0-12.1":0.37854241224122,"12.2-12.4":2.6794864866487,"13.0-13.1":3.8905747924792,"13.2":1.7714795239524,"13.3":2.790822490249},I:{"3":0.0021858450704225,"4":0.0094719953051643,_:"76","2.1":0,"2.2":0.0014572300469484,"2.3":0.0014572300469484,"4.1":0.016758145539906,"4.2-4.3":0.36649335680751,"4.4":0,"4.4.3-4.4.4":0.2229561971831},P:{"4":0.12165917355372,"5.0-5.4":0.01013826446281,"6.2-6.4":0.03041479338843,"7.2-7.4":0.04055305785124,"8.2":0.02027652892562,"9.2":0.081106115702479,"10.1":0.9225820661157},B:{"12":0.00691,"13":0.00691,"14":0.02073,"15":0.01382,"16":0.01382,"17":0.16584,"18":0.72555,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.036085555555556,"9":0.0072171111111111,"10":0.0072171111111111,"11":0.27425022222222,"5.5":0},N:{"10":0.010815,"11":0.032445},J:{"7":0,"10":0.00927},R:{_:"0"},M:{"0":0.07725},O:{"0":0.06798},Q:{"1.2":0.00309},S:{"2.5":0},H:{"0":0.10531484536082},L:{"0":37.89365}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/DZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/DZ.js new file mode 100644 index 0000000..9b64b47 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/DZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004775,"12":0,"13":0.004775,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004775,"26":0.014325,"27":0.004775,"28":0.004775,"29":0.00955,"30":0.014325,"31":0.0191,"32":0.00955,"33":0.0382,"34":0.004775,"35":0.004775,"36":0.00955,"37":0.004775,"38":0.00955,"39":0.00955,"40":0.042975,"41":0.004775,"42":0.00955,"43":0.29605,"44":0.004775,"45":0,"46":0.004775,"47":0.00955,"48":0.00955,"49":0.3629,"50":0.0191,"51":0.014325,"52":0.00955,"53":0.00955,"54":0.00955,"55":0.014325,"56":0.023875,"57":0.00955,"58":0.052525,"59":0.004775,"60":0.00955,"61":0.052525,"62":0.0191,"63":0.16235,"64":0.00955,"65":0.0382,"66":0.0191,"67":0.0382,"68":0.0191,"69":0.090725,"70":0.090725,"71":0.1337,"72":0.100275,"73":0.0955,"74":0.12415,"75":0.119375,"76":0.138475,"77":0.18145,"78":6.240925,"79":5.77775,"80":0.023875,"81":0.014325},C:{"2":0,"3":0.004775,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004775,"34":0,"35":0,"36":0.004775,"37":0.004775,"38":0.004775,"39":0,"40":0.004775,"41":0.004775,"42":0.004775,"43":0.0191,"44":0.004775,"45":0.004775,"46":0.004775,"47":0.023875,"48":0.00955,"49":0.004775,"50":0.004775,"51":0.004775,"52":0.119375,"53":0,"54":0.004775,"55":0.004775,"56":0.014325,"57":0.00955,"58":0,"59":0.00955,"60":0.014325,"61":0.00955,"62":0.00955,"63":0.00955,"64":0.023875,"65":0.023875,"66":0.0191,"67":0.014325,"68":0.1337,"69":0.042975,"70":0.4584,"71":1.542325,"72":0.033425,"73":0,"3.5":0,"3.6":0.004775},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.004775,"33":0,"34":0,"35":0,"36":0.004775,"37":0.02865,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004775,"46":0.004775,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004775,"54":0.004775,"55":0.004775,"56":0.00955,"57":0.00955,"58":0.00955,"60":0.004775,"62":0.004775,"63":0.014325,"64":0.06685,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004775},E:{"4":0,"5":0,"6":0,"7":0.004775,"8":0.023875,"9":0.00955,"10":0.004775,"11":0.004775,"12":0.052525,"13":0.1337,_:"0","3.1":0,"3.2":0,"5.1":0.415425,"6.1":0,"7.1":0,"9.1":0.014325,"10.1":0.033425,"11.1":0.04775,"12.1":0.081175},G:{"8":0.00021655165516552,"3.2":0.00086620662066207,"4.0-4.1":0.00043310331033103,"4.2-4.3":0,"5.0-5.1":0.0012993099309931,"6.0-6.1":0.00043310331033103,"7.0-7.1":0.0015158615861586,"8.1-8.4":0.0028151715171517,"9.0-9.2":0.0025986198619862,"9.3":0.027502060206021,"10.0-10.2":0.0095282728272827,"10.3":0.030750335033503,"11.0-11.2":0.025986198619862,"11.3-11.4":0.046342054205421,"12.0-12.1":0.066264806480648,"12.2-12.4":0.46905088508851,"13.0-13.1":0.68105495549555,"13.2":0.31010197019702,"13.3":0.48854053405341},I:{"3":0.0024330985915493,"4":0.010543427230047,_:"76","2.1":0,"2.2":0.0016220657276995,"2.3":0.0016220657276995,"4.1":0.018653755868545,"4.2-4.3":0.40794953051643,"4.4":0,"4.4.3-4.4.4":0.24817605633803},P:{"4":0.50811926605505,"5.0-5.4":0.081299082568807,"6.2-6.4":0.081299082568807,"7.2-7.4":0.26422201834862,"8.2":0.11178623853211,"9.2":0.45730733944954,"10.1":1.808904587156},B:{"12":0.014325,"13":0.004775,"14":0.00955,"15":0.014325,"16":0.014325,"17":0.042975,"18":0.16235,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0054336206896552,"7":0.0054336206896552,"8":0.086937931034483,"9":0.0054336206896552,"10":0.016300862068966,"11":0.19561034482759,"5.5":0},N:{"10":0.01045,"11":0.07315},J:{"7":0,"10":0.01045},R:{_:"0"},M:{"0":0.182875},O:{"0":0.903925},Q:{"1.2":0.0418},S:{"2.5":0},H:{"0":0.82115094501718},L:{"0":69.169275}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/EC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/EC.js new file mode 100644 index 0000000..e58409a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/EC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.007652,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.007652,"34":0.007652,"35":0,"36":0.007652,"37":0,"38":0.068868,"39":0,"40":0.007652,"41":0,"42":0.007652,"43":0,"44":0,"45":0,"46":0,"47":0.007652,"48":0.007652,"49":0.42086,"50":0,"51":0.007652,"52":0,"53":0.061216,"54":0.007652,"55":0.007652,"56":0.007652,"57":0.007652,"58":0.030608,"59":0.007652,"60":0.007652,"61":0.015304,"62":0.015304,"63":0.091824,"64":0.015304,"65":0.099476,"66":0.030608,"67":0.168344,"68":0.053564,"69":0.07652,"70":0.175996,"71":0.22956,"72":0.15304,"73":0.183648,"74":0.214256,"75":0.22956,"76":0.237212,"77":0.34434,"78":22.014804,"79":15.8779,"80":0.022956,"81":0.007652},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.007652,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.007652,"44":0.007652,"45":0.007652,"46":0,"47":0.007652,"48":0.061216,"49":0.007652,"50":0.007652,"51":0.007652,"52":0.03826,"53":0,"54":0.007652,"55":0,"56":0.030608,"57":0.007652,"58":0.007652,"59":0.007652,"60":0.022956,"61":0.015304,"62":0.007652,"63":0.022956,"64":0.03826,"65":0.030608,"66":0.053564,"67":0.022956,"68":0.11478,"69":0.091824,"70":1.293188,"71":3.374532,"72":0.045912,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.007652,"57":0.007652,"58":0.007652,"60":0,"62":0,"63":0.007652,"64":0.11478,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.183648,"9":0.007652,"10":0.045912,"11":0.07652,"12":0.290776,"13":2.418032,_:"0","3.1":0,"3.2":0,"5.1":4.529984,"6.1":0,"7.1":0,"9.1":0.03826,"10.1":0.198952,"11.1":0.351992,"12.1":0.84172},G:{"8":0.00049025382538254,"3.2":0.0019610153015302,"4.0-4.1":0.00098050765076508,"4.2-4.3":0,"5.0-5.1":0.0029415229522952,"6.0-6.1":0.00098050765076508,"7.0-7.1":0.0034317767776778,"8.1-8.4":0.006373299729973,"9.0-9.2":0.0058830459045905,"9.3":0.062262235823582,"10.0-10.2":0.021571168316832,"10.3":0.06961604320432,"11.0-11.2":0.058830459045905,"11.3-11.4":0.10491431863186,"12.0-12.1":0.15001767056706,"12.2-12.4":1.0618897857786,"13.0-13.1":1.5418482808281,"13.2":0.70204347794779,"13.3":1.106012630063},I:{"3":0.0012924084507042,"4":0.0056004366197183,_:"76","2.1":0,"2.2":0.00086160563380282,"2.3":0.00086160563380282,"4.1":0.0099084647887324,"4.2-4.3":0.21669381690141,"4.4":0,"4.4.3-4.4.4":0.13182566197183},P:{"4":0.26341706077348,"5.0-5.4":0,"6.2-6.4":0.030394276243094,"7.2-7.4":0.050657127071823,"8.2":0.020262850828729,"9.2":0.11144567955801,"10.1":1.3576110055249},B:{"12":0.007652,"13":0.007652,"14":0.015304,"15":0.015304,"16":0.007652,"17":0.061216,"18":0.5739,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.015831724137931,"9":0.0079158620689655,"10":0.0079158620689655,"11":0.19789655172414,"5.5":0},N:{"10":0,"11":0.063396},J:{"7":0,"10":0.007044},R:{_:"0"},M:{"0":0.09392},O:{"0":0.049308},Q:{"1.2":0.014088},S:{"2.5":0},H:{"0":0.088917388316151},L:{"0":33.081312}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/EE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/EE.js new file mode 100644 index 0000000..df4a8c9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/EE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.007008,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.007008,"35":0,"36":0.007008,"37":0,"38":0.007008,"39":0.007008,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.007008,"47":0,"48":0.007008,"49":0.378432,"50":0,"51":0,"52":0,"53":0.014016,"54":0,"55":0.007008,"56":0,"57":0.007008,"58":0.028032,"59":0.007008,"60":0.03504,"61":0.126144,"62":0.014016,"63":0.03504,"64":0.007008,"65":0.021024,"66":0.007008,"67":0.028032,"68":0.021024,"69":0.056064,"70":0.147168,"71":0.112128,"72":0.238272,"73":0.238272,"74":0.112128,"75":0.126144,"76":0.168192,"77":3.489984,"78":15.5928,"79":12.327072,"80":0.03504,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.007008,"18":0,"19":0,"20":0,"21":0.007008,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.007008,"30":0.007008,"31":0.007008,"32":0.007008,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.014016,"42":0,"43":0,"44":0,"45":0.154176,"46":0.021024,"47":0.021024,"48":0.10512,"49":0,"50":0.161184,"51":0.042048,"52":0.203232,"53":0,"54":0,"55":0.03504,"56":0.098112,"57":0.007008,"58":0,"59":0.007008,"60":0.084096,"61":0,"62":0.007008,"63":0.007008,"64":0.056064,"65":0.007008,"66":0.147168,"67":0.03504,"68":0.3504,"69":0.077088,"70":1.08624,"71":3.097536,"72":0.028032,"73":0.007008,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.014016,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.007008,"46":0.007008,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.028032,"56":0,"57":0,"58":0.042048,"60":0,"62":0,"63":0.007008,"64":0.07008,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.014016,"11":0.021024,"12":0.161184,"13":2.550912,_:"0","3.1":0,"3.2":0,"5.1":0.007008,"6.1":0,"7.1":0,"9.1":0.014016,"10.1":0.091104,"11.1":0.154176,"12.1":0.567648},G:{"8":0.0016267130713071,"3.2":0.0065068522852285,"4.0-4.1":0.0032534261426143,"4.2-4.3":0,"5.0-5.1":0.0097602784278428,"6.0-6.1":0.0032534261426143,"7.0-7.1":0.01138699149915,"8.1-8.4":0.021147269926993,"9.0-9.2":0.019520556855686,"9.3":0.20659256005601,"10.0-10.2":0.071575375137514,"10.3":0.23099325612561,"11.0-11.2":0.19520556855686,"11.3-11.4":0.34811659725973,"12.0-12.1":0.49777419981998,"12.2-12.4":3.5234605124512,"13.0-13.1":5.1160126092609,"13.2":2.3294531181118,"13.3":3.6698646888689},I:{"3":0.00046467605633803,"4":0.0020135962441315,_:"76","2.1":0,"2.2":0.00030978403755869,"2.3":0.00030978403755869,"4.1":0.0035625164319249,"4.2-4.3":0.077910685446009,"4.4":0,"4.4.3-4.4.4":0.047396957746479},P:{"4":0.081882074074074,"5.0-5.4":0.010235259259259,"6.2-6.4":0.010235259259259,"7.2-7.4":0.051176296296296,"8.2":0.051176296296296,"9.2":0.23541096296296,"10.1":2.5792853333333},B:{"12":0,"13":0.007008,"14":0.014016,"15":0.014016,"16":0.021024,"17":0.084096,"18":2.060352,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0070416923076923,"8":0.021125076923077,"9":0.0070416923076923,"10":0.014083384615385,"11":1.4153801538462,"5.5":0},N:{"10":0,"11":0.011968},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.19448},O:{"0":0.023936},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.19828426116838},L:{"0":29.379328}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/EG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/EG.js new file mode 100644 index 0000000..86bc3cd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/EG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005226,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.010452,"20":0,"21":0,"22":0.005226,"23":0,"24":0.036582,"25":0.005226,"26":0.073164,"27":0.005226,"28":0.005226,"29":0.005226,"30":0.015678,"31":0.015678,"32":0.005226,"33":0.109746,"34":0.010452,"35":0.031356,"36":0.015678,"37":0.005226,"38":0.015678,"39":0.005226,"40":0.05226,"41":0.010452,"42":0.005226,"43":0.360594,"44":0.015678,"45":0.010452,"46":0.02613,"47":0.020904,"48":0.020904,"49":0.329238,"50":0.010452,"51":0.02613,"52":0.015678,"53":0.036582,"54":0.02613,"55":0.02613,"56":0.067938,"57":0.015678,"58":0.031356,"59":0.05226,"60":0.31356,"61":0.041808,"62":0.041808,"63":0.067938,"64":0.015678,"65":0.02613,"66":0.015678,"67":0.02613,"68":0.010452,"69":0.07839,"70":0.073164,"71":0.13065,"72":0.067938,"73":0.120198,"74":0.229944,"75":0.141102,"76":0.219492,"77":0.229944,"78":8.251854,"79":7.818096,"80":0.020904,"81":0.010452},C:{"2":0.010452,"3":0.005226,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.015678,"16":0,"17":0,"18":0.015678,"19":0.005226,"20":0.005226,"21":0.015678,"22":0,"23":0.010452,"24":0,"25":0.02613,"26":0,"27":0,"28":0,"29":0,"30":0.015678,"31":0.005226,"32":0,"33":0,"34":0.005226,"35":0.005226,"36":0.005226,"37":0,"38":0.005226,"39":0.005226,"40":0.005226,"41":0.005226,"42":0.005226,"43":0.015678,"44":0.010452,"45":0.010452,"46":0.005226,"47":0.02613,"48":0.041808,"49":0.010452,"50":0.015678,"51":0.031356,"52":0.172458,"53":0.015678,"54":0.047034,"55":0.05226,"56":0.036582,"57":0.02613,"58":0.010452,"59":0.005226,"60":0.010452,"61":0.005226,"62":0.010452,"63":0.005226,"64":0.015678,"65":0.010452,"66":0.020904,"67":0.010452,"68":0.146328,"69":0.036582,"70":0.465114,"71":1.761162,"72":0.067938,"73":0,"3.5":0,"3.6":0.005226},F:{"9":0,"11":0,"12":0.005226,"15":0.005226,"16":0,"17":0,"18":0,"19":0.005226,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.005226,"33":0,"34":0.005226,"35":0,"36":0.005226,"37":0.010452,"38":0,"39":0,"40":0,"41":0,"42":0.005226,"43":0.015678,"44":0,"45":0.005226,"46":0.005226,"47":0,"48":0,"49":0.005226,"50":0,"51":0.005226,"52":0.005226,"53":0.005226,"54":0.005226,"55":0.010452,"56":0.02613,"57":0.010452,"58":0.005226,"60":0.010452,"62":0.036582,"63":0.20904,"64":0.229944,"9.5-9.6":0,"10.0-10.1":0.010452,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.010452},E:{"4":0,"5":0.015678,"6":0,"7":0,"8":0.005226,"9":0.005226,"10":0.010452,"11":0.02613,"12":0.057486,"13":0.381498,_:"0","3.1":0,"3.2":0,"5.1":1.029522,"6.1":0,"7.1":0,"9.1":0.015678,"10.1":0.07839,"11.1":0.05226,"12.1":0.146328},G:{"8":0.00067172497249725,"3.2":0.002686899889989,"4.0-4.1":0.0013434499449945,"4.2-4.3":0,"5.0-5.1":0.0040303498349835,"6.0-6.1":0.0013434499449945,"7.0-7.1":0.0047020748074807,"8.1-8.4":0.0087324246424642,"9.0-9.2":0.008060699669967,"9.3":0.085309071507151,"10.0-10.2":0.029555898789879,"10.3":0.095384946094609,"11.0-11.2":0.08060699669967,"11.3-11.4":0.14374914411441,"12.0-12.1":0.20554784158416,"12.2-12.4":1.454956290429,"13.0-13.1":2.1125750385039,"13.2":0.96191016061606,"13.3":1.5154115379538},I:{"3":0.002390485915493,"4":0.010358772300469,_:"76","2.1":0,"2.2":0.0015936572769953,"2.3":0.0015936572769953,"4.1":0.018327058685446,"4.2-4.3":0.40080480516432,"4.4":0,"4.4.3-4.4.4":0.24382956338028},P:{"4":0.43639976470588,"5.0-5.4":0.020780941176471,"6.2-6.4":0.031171411764706,"7.2-7.4":0.072733294117647,"8.2":0.031171411764706,"9.2":0.23898082352941,"10.1":1.6313038823529},B:{"12":0.010452,"13":0.015678,"14":0.015678,"15":0.015678,"16":0.015678,"17":0.062712,"18":0.334464,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0053617402597403,"7":0,"8":0.10723480519481,"9":0.064340883116883,"10":0.042893922077922,"11":0.19302264935065,"5.5":0},N:{"10":0.04092,"11":0.15004},J:{"7":0,"10":0.004774},R:{_:"0"},M:{"0":0.157542},O:{"0":0.711326},Q:{"1.2":0.009548},S:{"2.5":0},H:{"0":0.57852349140893},L:{"0":59.583116}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ER.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ER.js new file mode 100644 index 0000000..0a44960 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ER.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.354312,"31":0,"32":0,"33":0.009324,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.027972,"41":0,"42":0,"43":0.111888,"44":0,"45":0.121212,"46":0,"47":0,"48":0,"49":0.074592,"50":0,"51":0,"52":0.009324,"53":0,"54":0.027972,"55":0.027972,"56":0.037296,"57":0,"58":0.009324,"59":1.128204,"60":0,"61":0.261072,"62":0,"63":0.027972,"64":0.540792,"65":0.04662,"66":0.009324,"67":0.027972,"68":0,"69":0.149184,"70":0.177156,"71":0.074592,"72":0.223776,"73":0.242424,"74":1.240092,"75":0.205128,"76":0.857808,"77":0.801864,"78":2.84382,"79":1.407924,"80":0,"81":0},C:{"2":0,"3":0.027972,"4":2.993004,"5":0.009324,"6":0,"7":0,"8":0.074592,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.009324,"16":0.074592,"17":0.009324,"18":0.074592,"19":0.074592,"20":0,"21":0.149184,"22":0,"23":0.149184,"24":0,"25":0.027972,"26":0.083916,"27":0.102564,"28":0,"29":0.027972,"30":1.109556,"31":0.074592,"32":0.027972,"33":0.242424,"34":0.456876,"35":0.261072,"36":0.074592,"37":0.037296,"38":0.027972,"39":0.083916,"40":1.44522,"41":1.361304,"42":1.109556,"43":2.84382,"44":0.13986,"45":0.475524,"46":0.102564,"47":3.011652,"48":0.335664,"49":0.223776,"50":0.895104,"51":0.102564,"52":1.3986,"53":3.328668,"54":0.223776,"55":0.009324,"56":0.801864,"57":3.533796,"58":0.317016,"59":0.51282,"60":0.475524,"61":0.941724,"62":0.662004,"63":0.251748,"64":0.37296,"65":0.428904,"66":30.592044,"67":1.193472,"68":0.801864,"69":1.72494,"70":2.536128,"71":1.547784,"72":0,"73":0,"3.5":0,"3.6":0.04662},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.261072,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.261072,"43":0,"44":0,"45":0.037296,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":1.58508,"58":0.009324,"60":0,"62":0,"63":0,"64":0.083916,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.111888,"11":0,"12":0,"13":0.04662,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.009324,"10.1":0,"11.1":0.009324,"12.1":0},G:{"8":0.000094643864386439,"3.2":0.00037857545754575,"4.0-4.1":0.00018928772877288,"4.2-4.3":0,"5.0-5.1":0.00056786318631863,"6.0-6.1":0.00018928772877288,"7.0-7.1":0.00066250705070507,"8.1-8.4":0.0012303702370237,"9.0-9.2":0.0011357263726373,"9.3":0.012019770777078,"10.0-10.2":0.0041643300330033,"10.3":0.013439428742874,"11.0-11.2":0.011357263726373,"11.3-11.4":0.020253786978698,"12.0-12.1":0.02896102250225,"12.2-12.4":0.20499861026103,"13.0-13.1":0.29765495349535,"13.2":0.13553001380138,"13.3":0.21351655805581},I:{"3":0.000032830985915493,"4":0.0001422676056338,_:"76","2.1":0,"2.2":0.000021887323943662,"2.3":0.000021887323943662,"4.1":0.00025170422535211,"4.2-4.3":0.005504661971831,"4.4":0,"4.4.3-4.4.4":0.0033487605633803},P:{"4":0.27248782300885,"5.0-5.4":0.070644991150442,"6.2-6.4":0.030276424778761,"7.2-7.4":0.050460707964602,"8.2":0.24221139823009,"9.2":0.35322495575221,"10.1":0.12110569911504},B:{"12":0.205128,"13":0,"14":0,"15":0.111888,"16":0.317016,"17":0.205128,"18":0.149184,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.083916,"9":0,"10":0.065268,"11":0.494172,"5.5":0},N:{"10":0.01352,"11":0},J:{"7":0,"10":0.02704},R:{_:"0"},M:{"0":0.01352},O:{"0":1.479764},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.051199450171821},L:{"0":7.393008}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ES.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ES.js new file mode 100644 index 0000000..4dfcc17 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ES.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.004898,"32":0,"33":0,"34":0.004898,"35":0,"36":0,"37":0,"38":0.009796,"39":0,"40":0,"41":0,"42":0,"43":0.004898,"44":0,"45":0,"46":0.004898,"47":0,"48":0.004898,"49":0.382044,"50":0,"51":0.004898,"52":0,"53":0.009796,"54":0.029388,"55":0.009796,"56":0.009796,"57":0.009796,"58":0.014694,"59":0.004898,"60":0.004898,"61":0.019592,"62":0.004898,"63":0.034286,"64":0.009796,"65":0.02449,"66":0.014694,"67":0.039184,"68":0.014694,"69":0.029388,"70":0.068572,"71":0.078368,"72":0.07347,"73":0.063674,"74":0.044082,"75":0.102858,"76":0.093062,"77":0.142042,"78":8.17966,"79":6.352706,"80":0.009796,"81":0.004898},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004898,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004898,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004898,"46":0,"47":0.004898,"48":0.02449,"49":0.004898,"50":0.004898,"51":0.004898,"52":0.093062,"53":0.004898,"54":0.004898,"55":0.014694,"56":0.014694,"57":0.004898,"58":0.004898,"59":0.004898,"60":0.029388,"61":0.004898,"62":0.004898,"63":0.009796,"64":0.019592,"65":0.009796,"66":0.019592,"67":0.02449,"68":0.186124,"69":0.039184,"70":0.543678,"71":1.59185,"72":0.009796,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004898,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004898,"46":0.004898,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.009796,"56":0.004898,"57":0.004898,"58":0.004898,"60":0,"62":0.004898,"63":0,"64":0.029388,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004898,"9":0.004898,"10":0.009796,"11":0.02449,"12":0.088164,"13":1.405726,_:"0","3.1":0,"3.2":0,"5.1":0.107756,"6.1":0,"7.1":0,"9.1":0.019592,"10.1":0.053878,"11.1":0.12245,"12.1":0.26939},G:{"8":0.0014481420142014,"3.2":0.0057925680568057,"4.0-4.1":0.0028962840284028,"4.2-4.3":0,"5.0-5.1":0.0086888520852085,"6.0-6.1":0.0028962840284028,"7.0-7.1":0.01013699409941,"8.1-8.4":0.018825846184618,"9.0-9.2":0.017377704170417,"9.3":0.18391403580358,"10.0-10.2":0.063718248624862,"10.3":0.2056361660166,"11.0-11.2":0.17377704170417,"11.3-11.4":0.3099023910391,"12.0-12.1":0.44313145634563,"12.2-12.4":3.1366756027603,"13.0-13.1":4.5544066346635,"13.2":2.0737393643364,"13.3":3.2670083840384},I:{"3":0.0012072464788732,"4":0.0052314014084507,_:"76","2.1":0,"2.2":0.00080483098591549,"2.3":0.00080483098591549,"4.1":0.0092555563380282,"4.2-4.3":0.20241499295775,"4.4":0,"4.4.3-4.4.4":0.12313914084507},P:{"4":0.13496569767442,"5.0-5.4":0.010381976744186,"6.2-6.4":0.010381976744186,"7.2-7.4":0.041527906976744,"8.2":0.020763953488372,"9.2":0.16611162790698,"10.1":2.2736529069767},B:{"12":0,"13":0.004898,"14":0.004898,"15":0.009796,"16":0.009796,"17":0.068572,"18":0.940416,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0049679714285714,"8":0.029807828571429,"9":0.0049679714285714,"10":0.0099359428571429,"11":0.64583628571429,"5.5":0},N:{"10":0,"11":0.020408},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.260202},O:{"0":0.071428},Q:{"1.2":0.015306},S:{"2.5":0},H:{"0":0.18837951546392},L:{"0":57.316788}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ET.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ET.js new file mode 100644 index 0000000..fa1aa55 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ET.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0.004268,"9":0,"10":0,"11":0.008536,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004268,"26":0.02134,"27":0,"28":0,"29":0,"30":0.004268,"31":0.017072,"32":0.004268,"33":0.098164,"34":0,"35":0,"36":0.012804,"37":0.004268,"38":0.004268,"39":0.004268,"40":0.136576,"41":0,"42":0.004268,"43":0.699952,"44":0.004268,"45":0.004268,"46":0.008536,"47":0.004268,"48":0.004268,"49":0.055484,"50":0.008536,"51":0.012804,"52":0.012804,"53":0.038412,"54":0.004268,"55":0.055484,"56":0.004268,"57":0.008536,"58":0.046948,"59":0.008536,"60":0.230472,"61":0.123772,"62":0.004268,"63":0.136576,"64":0.008536,"65":0.038412,"66":0.008536,"67":0.046948,"68":0.012804,"69":0.19206,"70":0.068288,"71":0.02134,"72":0.025608,"73":0.051216,"74":0.08536,"75":0.08536,"76":0.102432,"77":0.179256,"78":3.589388,"79":3.512564,"80":0.029876,"81":0.008536},C:{"2":0,"3":0,"4":0.004268,"5":0.004268,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.029876,"21":0,"22":0,"23":0.004268,"24":0.004268,"25":0.008536,"26":0.004268,"27":0.008536,"28":0.004268,"29":0.012804,"30":0.012804,"31":0.012804,"32":0.004268,"33":0.008536,"34":0.02134,"35":0.02134,"36":0.008536,"37":0.012804,"38":0.012804,"39":0.008536,"40":0.008536,"41":0.008536,"42":0.012804,"43":0.055484,"44":0.038412,"45":0.008536,"46":0.008536,"47":0.098164,"48":0.046948,"49":0.017072,"50":0.008536,"51":0.004268,"52":0.153648,"53":0.004268,"54":0.012804,"55":0.004268,"56":0.04268,"57":0.012804,"58":0.008536,"59":0.012804,"60":0.02134,"61":0.034144,"62":0.017072,"63":0.012804,"64":0.012804,"65":0.02134,"66":0.04268,"67":0.025608,"68":0.17072,"69":0.068288,"70":0.5335,"71":1.822436,"72":0.345708,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.004268,"15":0.008536,"16":0.004268,"17":0.008536,"18":0.008536,"19":0.012804,"20":0.055484,"21":0.004268,"22":0.004268,"23":0.025608,"24":0,"25":0,"26":0,"27":0.004268,"28":0.012804,"29":0.008536,"30":0.008536,"31":0,"32":0.008536,"33":0.004268,"34":0.004268,"35":0.004268,"36":0.004268,"37":0.004268,"38":0.008536,"39":0,"40":0.004268,"41":0,"42":0.008536,"43":0,"44":0,"45":0.029876,"46":0.02134,"47":0,"48":0,"49":0.004268,"50":0.004268,"51":0.004268,"52":0.004268,"53":0.038412,"54":0.008536,"55":0.008536,"56":0.004268,"57":0.004268,"58":0.008536,"60":0.008536,"62":0.017072,"63":0.029876,"64":0.093896,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.166452},E:{"4":0,"5":0,"6":0,"7":0.012804,"8":0.089628,"9":0.008536,"10":0.004268,"11":0.004268,"12":0.04268,"13":0.093896,_:"0","3.1":0,"3.2":0,"5.1":0.046948,"6.1":0,"7.1":0,"9.1":0.008536,"10.1":0.029876,"11.1":0.02134,"12.1":0.059752},G:{"8":0.00025219881988199,"3.2":0.001008795279528,"4.0-4.1":0.00050439763976398,"4.2-4.3":0,"5.0-5.1":0.0015131929192919,"6.0-6.1":0.00050439763976398,"7.0-7.1":0.0017653917391739,"8.1-8.4":0.0032785846584658,"9.0-9.2":0.0030263858385839,"9.3":0.032029250125012,"10.0-10.2":0.011096748074807,"10.3":0.035812232423242,"11.0-11.2":0.030263858385839,"11.3-11.4":0.053970547454745,"12.0-12.1":0.077172838883888,"12.2-12.4":0.54626264386439,"13.0-13.1":0.79316528852885,"13.2":0.36114871007101,"13.3":0.56896053765377},I:{"3":0.0027834366197183,"4":0.012061558685446,_:"76","2.1":0,"2.2":0.0018556244131455,"2.3":0.0018556244131455,"4.1":0.021339680751174,"4.2-4.3":0.4666895399061,"4.4":0,"4.4.3-4.4.4":0.28391053521127},P:{"4":0.80010962406015,"5.0-5.4":0.11140766917293,"6.2-6.4":0.091151729323308,"7.2-7.4":0.52665443609023,"8.2":0.060767819548872,"9.2":0.41524676691729,"10.1":0.68870195488722},B:{"12":0.115236,"13":0.046948,"14":0.025608,"15":0.025608,"16":0.034144,"17":0.136576,"18":0.422532,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.080867368421053,"9":0,"10":0.013477894736842,"11":0.33245473684211,"5.5":0},N:{"10":0.034392,"11":0.045856},J:{"7":0,"10":0.005732},R:{_:"0"},M:{"0":0.166228},O:{"0":3.387612},Q:{"1.2":0.040124},S:{"2.5":0},H:{"0":25.000748323024},L:{"0":31.782144}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/FI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/FI.js new file mode 100644 index 0000000..7454352 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/FI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.011464,"25":0,"26":0,"27":0,"28":0,"29":0.005732,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.011464,"37":0,"38":0.022928,"39":0,"40":0,"41":0,"42":0.005732,"43":0.017196,"44":0,"45":0.005732,"46":0,"47":0.005732,"48":0.011464,"49":0.355384,"50":0,"51":0,"52":0,"53":0.022928,"54":0.005732,"55":0.005732,"56":0.068784,"57":0.017196,"58":0.011464,"59":0.005732,"60":0.1433,"61":0.005732,"62":0.005732,"63":0.022928,"64":0.02866,"65":0.022928,"66":0.05732,"67":0.045856,"68":0.017196,"69":0.080248,"70":0.22928,"71":0.34392,"72":0.20062,"73":0.183424,"74":0.045856,"75":0.080248,"76":0.951512,"77":0.263672,"78":9.474996,"79":6.93572,"80":0.02866,"81":0.005732},C:{"2":0,"3":0.005732,"4":0.011464,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.017196,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.017196,"38":0,"39":0,"40":0,"41":0,"42":0.005732,"43":0.011464,"44":0.011464,"45":0.005732,"46":0,"47":0.005732,"48":0.017196,"49":0,"50":0.011464,"51":0.011464,"52":0.108908,"53":0,"54":0.005732,"55":0.017196,"56":0.045856,"57":0.011464,"58":0.022928,"59":0.011464,"60":0.051588,"61":0.005732,"62":0.005732,"63":0.045856,"64":0.040124,"65":0.05732,"66":0.051588,"67":0.017196,"68":0.475756,"69":0.051588,"70":0.962976,"71":3.2959,"72":0.017196,"73":0.005732,"3.5":0,"3.6":0.005732},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005732,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.005732,"45":0.011464,"46":0.005732,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005732,"54":0,"55":0.011464,"56":0,"57":0.017196,"58":0.040124,"60":0,"62":0,"63":0,"64":0.022928,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0.005732,"5":0.005732,"6":0,"7":0,"8":0.005732,"9":0,"10":0.017196,"11":0.017196,"12":0.11464,"13":2.023396,_:"0","3.1":0,"3.2":0,"5.1":0.051588,"6.1":0.005732,"7.1":0,"9.1":0.017196,"10.1":0.074516,"11.1":0.149032,"12.1":0.292332},G:{"8":0.001755399939994,"3.2":0.007021599759976,"4.0-4.1":0.003510799879988,"4.2-4.3":0,"5.0-5.1":0.010532399639964,"6.0-6.1":0.003510799879988,"7.0-7.1":0.012287799579958,"8.1-8.4":0.022820199219922,"9.0-9.2":0.021064799279928,"9.3":0.22293579237924,"10.0-10.2":0.077237597359736,"10.3":0.24926679147915,"11.0-11.2":0.21064799279928,"11.3-11.4":0.37565558715872,"12.0-12.1":0.53715238163816,"12.2-12.4":3.802196270027,"13.0-13.1":5.5207328112811,"13.2":2.5137327140714,"13.3":3.9601822646265},I:{"3":0.0012465492957746,"4":0.0054017136150235,_:"76","2.1":0,"2.2":0.00083103286384977,"2.3":0.00083103286384977,"4.1":0.0095568779342723,"4.2-4.3":0.20900476525822,"4.4":0,"4.4.3-4.4.4":0.12714802816901},P:{"4":0.12610732075472,"5.0-5.4":0.021017886792453,"6.2-6.4":0.021017886792453,"7.2-7.4":0.11559837735849,"8.2":0.063053660377359,"9.2":0.38883090566038,"10.1":2.5852000754717},B:{"12":0,"13":0.005732,"14":0.034392,"15":0.022928,"16":0.034392,"17":0.103176,"18":1.415804,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.012024739130435,"7":0,"8":0.1022102826087,"9":0.018037108695652,"10":0.030061847826087,"11":0.94394202173913,"5.5":0},N:{"10":0,"11":0.051216},J:{"7":0,"10":0.008536},R:{_:"0"},M:{"0":0.431068},O:{"0":0.14938},Q:{"1.2":0.012804},S:{"2.5":0},H:{"0":0.38386333333333},L:{"0":43.467184}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/FJ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/FJ.js new file mode 100644 index 0000000..e512281 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/FJ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.003384,"37":0,"38":0,"39":0.071064,"40":0,"41":0,"42":0,"43":0.003384,"44":0,"45":0,"46":0,"47":0,"48":0.023688,"49":0.054144,"50":0,"51":0,"52":0,"53":0.057528,"54":0,"55":0.003384,"56":0.003384,"57":0,"58":0.013536,"59":0,"60":0.010152,"61":0,"62":0,"63":0.21996,"64":0,"65":0.027072,"66":0.003384,"67":0.003384,"68":0.003384,"69":0.043992,"70":0.06768,"71":0.003384,"72":0.05076,"73":0.043992,"74":0.020304,"75":0.023688,"76":0.054144,"77":0.06768,"78":3.99312,"79":2.372184,"80":0.003384,"81":0.003384},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003384,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.003384,"48":0.060912,"49":0,"50":0,"51":0,"52":0.023688,"53":0,"54":0,"55":0,"56":0.006768,"57":0,"58":0,"59":0,"60":0.010152,"61":0.003384,"62":0.003384,"63":0,"64":0.006768,"65":0.01692,"66":0.003384,"67":0.030456,"68":0.064296,"69":0.159048,"70":0.247032,"71":0.60912,"72":0.074448,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.003384,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.020304,"9":0,"10":0.003384,"11":0.027072,"12":0.0846,"13":0.60912,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.013536,"10.1":0.043992,"11.1":0.111672,"12.1":0.179352},G:{"8":0.00083613321332133,"3.2":0.0033445328532853,"4.0-4.1":0.0016722664266427,"4.2-4.3":0,"5.0-5.1":0.005016799279928,"6.0-6.1":0.0016722664266427,"7.0-7.1":0.0058529324932493,"8.1-8.4":0.010869731773177,"9.0-9.2":0.010033598559856,"9.3":0.10618891809181,"10.0-10.2":0.036789861386139,"10.3":0.11873091629163,"11.0-11.2":0.10033598559856,"11.3-11.4":0.17893250765077,"12.0-12.1":0.25585676327633,"12.2-12.4":1.811064540054,"13.0-13.1":2.6296389558956,"13.2":1.1973427614761,"13.3":1.8863165292529},I:{"3":0.001621323943662,"4":0.0070257370892019,_:"76","2.1":0,"2.2":0.001080882629108,"2.3":0.001080882629108,"4.1":0.012430150234742,"4.2-4.3":0.27184198122066,"4.4":0,"4.4.3-4.4.4":0.16537504225352},P:{"4":2.0468492586667,"5.0-5.4":0.061714048,"6.2-6.4":0.31885591466667,"7.2-7.4":1.3782804053333,"8.2":0.25714186666667,"9.2":1.9234211626667,"10.1":5.5748356693333},B:{"12":0.013536,"13":0.006768,"14":0.006768,"15":0.047376,"16":0.020304,"17":0.077832,"18":0.314712,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.010749176470588,"9":0,"10":0.0071661176470588,"11":0.16482070588235,"5.5":0},N:{"10":0,"11":0.026464},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.145552},O:{"0":1.303352},Q:{"1.2":0.052928},S:{"2.5":0},H:{"0":0.41339769072165},L:{"0":62.502048}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/FK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/FK.js new file mode 100644 index 0000000..2fca7f3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/FK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":3.718719,"79":7.437438,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0},I:{"3":0,"4":0,_:"76","2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":4.544021},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":5.580124,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":70.456958}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/FM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/FM.js new file mode 100644 index 0000000..180db53 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/FM.js @@ -0,0 +1 @@ +module.exports={D:{"40":0.013155,"42":0.013155,"49":0.635825,"50":0.223635,"53":0.05262,"54":0.92962,"55":1.363735,"59":0.013155,"63":0.030695,"67":0.02631,"69":0.07893,"70":0.013155,"71":0.19294,"73":0.092085,"74":0.06139,"75":0.00877,"76":0.144705,"77":0.074545,"78":15.597445,"79":7.69129,"81":0.00877,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 46 47 48 51 52 56 57 58 60 61 62 64 65 66 68 72 80"},C:{"47":0.039465,"48":0.02631,"52":0.00877,"58":0.021925,"64":0.19294,"66":0.030695,"69":0.00877,"70":1.065555,"71":2.389825,"72":0.10524,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 59 60 61 62 63 65 67 68 73 3.5 3.6"},F:{"53":0.013155,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"9":0.02631,"10":0.013155,"11":0.074545,"13":0.416575,_:"0 5 6 7 8 12 3.1 3.2 6.1 7.1 10.1","5.1":0.07893,"9.1":0.048235,"11.1":0.065775,"12.1":0.179785},G:{"8":0.00080625102510251,"3.2":0.00322500410041,"4.0-4.1":0.001612502050205,"4.2-4.3":0,"5.0-5.1":0.0048375061506151,"6.0-6.1":0.001612502050205,"7.0-7.1":0.0056437571757176,"8.1-8.4":0.010481263326333,"9.0-9.2":0.0096750123012301,"9.3":0.10239388018802,"10.0-10.2":0.03547504510451,"10.3":0.11448764556456,"11.0-11.2":0.096750123012301,"11.3-11.4":0.17253771937194,"12.0-12.1":0.24671281368137,"12.2-12.4":1.746339720372,"13.0-13.1":2.5356594739474,"13.2":1.1545514679468,"13.3":1.8189023126313},I:{"3":0.00021744366197183,"4":0.0009422558685446,_:"76","2.1":0,"2.2":0.00014496244131455,"2.3":0.00014496244131455,"4.1":0.0016670680751174,"4.2-4.3":0.03645805399061,"4.4":0,"4.4.3-4.4.4":0.022179253521127},P:{"4":0.12000720634921,"5.0-5.4":0.010172946564885,"6.2-6.4":0.020345893129771,"7.2-7.4":1.0146063809524,"8.2":0.032729238095238,"9.2":0.65458476190476,"10.1":2.9892704126984},B:{"12":0.013155,"13":0.14909,"14":0.21048,"15":0.057005,"16":0.07893,"17":0.793685,"18":2.170575,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.100855,"11":2.547685,_:"6 7 8 9 5.5"},N:{"10":0,"11":0.053664},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.05614},O:{"0":0.432278},Q:{"1.2":0.061754},S:{_:"2.5"},H:{"0":0.60059189347079},L:{"0":47.02846}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/FO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/FO.js new file mode 100644 index 0000000..ae8f636 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/FO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.014964,"34":0.009976,"35":0,"36":0,"37":0,"38":0.009976,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.184556,"50":0,"51":0,"52":0,"53":0.009976,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.004988,"61":0.009976,"62":0,"63":0,"64":0,"65":0.004988,"66":0.034916,"67":0.044892,"68":0,"69":0.004988,"70":0.009976,"71":0.014964,"72":0,"73":0.004988,"74":0,"75":0.1247,"76":0.02494,"77":0.119712,"78":4.983012,"79":4.53908,"80":0.009976,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.009976,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.009976,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.014964,"49":0,"50":0.009976,"51":0,"52":0.009976,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.009976,"61":0,"62":0.004988,"63":0.004988,"64":0.004988,"65":0,"66":0,"67":0,"68":0.259376,"69":0.019952,"70":0.329208,"71":1.356736,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.004988,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004988,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.014964,"9":0,"10":0.004988,"11":0.009976,"12":0.039904,"13":2.937932,_:"0","3.1":0,"3.2":0,"5.1":0.004988,"6.1":0.009976,"7.1":0,"9.1":0.064844,"10.1":0.109736,"11.1":0.154628,"12.1":0.144652},G:{"8":0.0047387586758676,"3.2":0.01895503470347,"4.0-4.1":0.0094775173517352,"4.2-4.3":0,"5.0-5.1":0.028432552055206,"6.0-6.1":0.0094775173517352,"7.0-7.1":0.033171310731073,"8.1-8.4":0.061603862786279,"9.0-9.2":0.056865104110411,"9.3":0.60182235183518,"10.0-10.2":0.20850538173817,"10.3":0.6729037319732,"11.0-11.2":0.56865104110411,"11.3-11.4":1.0140943566357,"12.0-12.1":1.4500601548155,"12.2-12.4":10.264151291929,"13.0-13.1":14.903396035604,"13.2":6.7859024238424,"13.3":10.690639572757},I:{"3":0.00015840845070423,"4":0.00068643661971831,_:"76","2.1":0,"2.2":0.00010560563380282,"2.3":0.00010560563380282,"4.1":0.0012144647887324,"4.2-4.3":0.026559816901408,"4.4":0,"4.4.3-4.4.4":0.016157661971831},P:{"4":0.1494502310231,"5.0-5.4":0.011496171617162,"6.2-6.4":0.057480858085809,"7.2-7.4":0.080473201320132,"8.2":0.022992343234323,"9.2":0.45984686468647,"10.1":6.184940330033},B:{"12":0,"13":0,"14":0.02494,"15":0.034916,"16":0.014964,"17":0.104748,"18":3.157404,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.014964,"8":0.009976,"9":0,"10":0.009976,"11":2.613712,"5.5":0},N:{"10":0,"11":0.055132},J:{"7":0,"10":0.005012},R:{_:"0"},M:{"0":0.270648},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.080665642611684},L:{"0":20.20932}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/FR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/FR.js new file mode 100644 index 0000000..a1c181c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/FR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.005539,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005539,"37":0,"38":0.005539,"39":0,"40":0.005539,"41":0.005539,"42":0,"43":0.005539,"44":0,"45":0.005539,"46":0.005539,"47":0.005539,"48":0.011078,"49":0.841928,"50":0.005539,"51":0.011078,"52":0.005539,"53":0.005539,"54":0.376652,"55":0.011078,"56":0.011078,"57":0.011078,"58":0.016617,"59":0.005539,"60":0.022156,"61":0.033234,"62":0.016617,"63":0.049851,"64":0.016617,"65":0.033234,"66":0.038773,"67":0.05539,"68":0.049851,"69":0.05539,"70":0.310184,"71":0.420964,"72":0.426503,"73":0.22156,"74":0.049851,"75":0.138475,"76":0.132936,"77":0.232638,"78":7.954004,"79":5.70517,"80":0.011078,"81":0.005539},C:{"2":0,"3":0,"4":0.005539,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.027695,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.011078,"22":0,"23":0,"24":0.005539,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005539,"39":0,"40":0,"41":0,"42":0,"43":0.005539,"44":0,"45":0.022156,"46":0,"47":0.011078,"48":0.049851,"49":0.005539,"50":0.005539,"51":0.005539,"52":0.144014,"53":0.005539,"54":0.005539,"55":0.011078,"56":0.027695,"57":0.005539,"58":0.011078,"59":0.011078,"60":0.121858,"61":0.011078,"62":0.022156,"63":0.044312,"64":0.072007,"65":0.094163,"66":0.049851,"67":0.033234,"68":0.326801,"69":0.149553,"70":0.908396,"71":2.703032,"72":0.016617,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005539,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.011078,"46":0.005539,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005539,"54":0,"55":0.005539,"56":0.022156,"57":0.027695,"58":0.027695,"60":0.005539,"62":0.005539,"63":0.005539,"64":0.027695,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005539},E:{"4":0.005539,"5":0.005539,"6":0,"7":0.005539,"8":0.005539,"9":0.016617,"10":0.011078,"11":0.038773,"12":0.16617,"13":1.982962,_:"0","3.1":0,"3.2":0,"5.1":0.492971,"6.1":0.005539,"7.1":0,"9.1":0.027695,"10.1":0.094163,"11.1":0.204943,"12.1":0.504049},G:{"8":0.001963497949795,"3.2":0.0078539917991799,"4.0-4.1":0.00392699589959,"4.2-4.3":0,"5.0-5.1":0.01178098769877,"6.0-6.1":0.00392699589959,"7.0-7.1":0.013744485648565,"8.1-8.4":0.025525473347335,"9.0-9.2":0.02356197539754,"9.3":0.24936423962396,"10.0-10.2":0.086393909790979,"10.3":0.27881670887089,"11.0-11.2":0.2356197539754,"11.3-11.4":0.42018856125613,"12.0-12.1":0.60083037263726,"12.2-12.4":4.2529365592559,"13.0-13.1":6.1752010521052,"13.2":2.8117290641064,"13.3":4.4296513747375},I:{"3":0.0016495598591549,"4":0.0071480927230047,_:"76","2.1":0,"2.2":0.00109970657277,"2.3":0.00109970657277,"4.1":0.012646625586854,"4.2-4.3":0.27657620305164,"4.4":0,"4.4.3-4.4.4":0.1682551056338},P:{"4":0.14591525454545,"5.0-5.4":0.052112590909091,"6.2-6.4":0.031267554545455,"7.2-7.4":0.083380145454545,"8.2":0.052112590909091,"9.2":0.31267554545455,"10.1":2.7411222818182},B:{"12":0.005539,"13":0.011078,"14":0.016617,"15":0.016617,"16":0.033234,"17":0.138475,"18":1.379211,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0057322209302326,"8":0.074518872093023,"9":0.034393325581395,"10":0.028661104651163,"11":0.84263647674419,"5.5":0},N:{"10":0,"11":0.040149},J:{"7":0,"10":0.026766},R:{_:"0"},M:{"0":0.31227},O:{"0":0.651306},Q:{"1.2":0.026766},S:{"2.5":0},H:{"0":0.29141367525773},L:{"0":43.105542}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GA.js new file mode 100644 index 0000000..a99aff0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004853,"29":0,"30":0,"31":0,"32":0,"33":0.009706,"34":0,"35":0,"36":0.004853,"37":0,"38":0,"39":0,"40":0.004853,"41":0,"42":0,"43":0.004853,"44":0,"45":0,"46":0.009706,"47":0,"48":0,"49":0.271768,"50":0.004853,"51":0,"52":0,"53":0,"54":0,"55":0.004853,"56":0,"57":0,"58":0.019412,"59":0,"60":0.009706,"61":0,"62":0,"63":0.266915,"64":0.009706,"65":0.101913,"66":0,"67":0.004853,"68":0.004853,"69":0.441623,"70":0.004853,"71":0.009706,"72":0.126178,"73":0.101913,"74":0.077648,"75":0.063089,"76":0.077648,"77":0.160149,"78":5.53242,"79":4.241522,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.009706,"44":0.004853,"45":0,"46":0,"47":0.009706,"48":0.38824,"49":0,"50":0,"51":0,"52":0.038824,"53":0.019412,"54":0,"55":0.004853,"56":0.019412,"57":0.009706,"58":0,"59":0,"60":0.004853,"61":0,"62":0,"63":0,"64":0.004853,"65":0,"66":0.009706,"67":0.029118,"68":0.077648,"69":0.077648,"70":0.703685,"71":2.009142,"72":0.019412,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.004853,"17":0,"18":0,"19":0,"20":0.009706,"21":0,"22":0.004853,"23":0.004853,"24":0,"25":0,"26":0,"27":0,"28":0.004853,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.029118,"46":0.014559,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.029118,"54":0.009706,"55":0.024265,"56":0,"57":0,"58":0,"60":0,"62":0.004853,"63":0.019412,"64":0.053383,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.058236},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04853,"12":0.077648,"13":0.868687,_:"0","3.1":0,"3.2":0,"5.1":2.853564,"6.1":0,"7.1":0.004853,"9.1":0.004853,"10.1":0.155296,"11.1":0.067942,"12.1":0.286327},G:{"8":0.00036862406240624,"3.2":0.001474496249625,"4.0-4.1":0.00073724812481248,"4.2-4.3":0,"5.0-5.1":0.0022117443744374,"6.0-6.1":0.00073724812481248,"7.0-7.1":0.0025803684368437,"8.1-8.4":0.0047921128112811,"9.0-9.2":0.0044234887488749,"9.3":0.046815255925593,"10.0-10.2":0.016219458745875,"10.3":0.052344616861686,"11.0-11.2":0.044234887488749,"11.3-11.4":0.078885549354935,"12.0-12.1":0.11279896309631,"12.2-12.4":0.79843971917192,"13.0-13.1":1.1593226762676,"13.2":0.52786965736574,"13.3":0.83161588478848},I:{"3":0.0021168169014085,"4":0.0091728732394366,_:"76","2.1":0,"2.2":0.0014112112676056,"2.3":0.0014112112676056,"4.1":0.016228929577465,"4.2-4.3":0.35491963380282,"4.4":0,"4.4.3-4.4.4":0.21591532394366},P:{"4":0.93021657819905,"5.0-5.4":0.050555248815166,"6.2-6.4":0.10111049763033,"7.2-7.4":0.47521933886256,"8.2":0.060666298578199,"9.2":0.45499723933649,"10.1":2.1940977985782},B:{"12":0.014559,"13":0.029118,"14":0.082501,"15":0.038824,"16":0.033971,"17":0.165002,"18":0.72795,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.06522432,"9":0,"10":0.03261216,"11":0.30981552,"5.5":0},N:{"10":0.103068675,"11":0.355014325},J:{"7":0,"10":0.174998},R:{_:"0"},M:{"0":0.113234},O:{"0":0.828667},Q:{"1.2":0.133822},S:{"2.5":0},H:{"0":7.3238891597938},L:{"0":52.601878}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GB.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GB.js new file mode 100644 index 0000000..9ecb000 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GB.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004784,"34":0.004784,"35":0.009568,"36":0,"37":0,"38":0.009568,"39":0.004784,"40":0.062192,"41":0.004784,"42":0,"43":0.004784,"44":0,"45":0,"46":0,"47":0.004784,"48":0.004784,"49":0.234416,"50":0.004784,"51":0.004784,"52":0,"53":0.009568,"54":0.004784,"55":0.004784,"56":0.019136,"57":0.009568,"58":0.014352,"59":0.004784,"60":0.014352,"61":0.019136,"62":0.004784,"63":0.052624,"64":0.004784,"65":0.04784,"66":0.028704,"67":0.033488,"68":0.028704,"69":0.066976,"70":0.066976,"71":0.057408,"72":0.057408,"73":0.052624,"74":0.066976,"75":0.086112,"76":0.133952,"77":0.19136,"78":6.855472,"79":4.61656,"80":0.014352,"81":0.004784},C:{"2":0,"3":0.004784,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.014352,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.004784,"44":0,"45":0.028704,"46":0,"47":0.004784,"48":0.009568,"49":0.004784,"50":0.004784,"51":0,"52":0.038272,"53":0.004784,"54":0.004784,"55":0.004784,"56":0.009568,"57":0.004784,"58":0,"59":0.004784,"60":0.014352,"61":0.004784,"62":0.004784,"63":0.009568,"64":0.009568,"65":0.014352,"66":0.009568,"67":0.009568,"68":0.157872,"69":0.02392,"70":0.330096,"71":1.009424,"72":0.019136,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004784,"37":0,"38":0,"39":0,"40":0.004784,"41":0,"42":0,"43":0,"44":0,"45":0.004784,"46":0.004784,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004784,"56":0.004784,"57":0,"58":0.004784,"60":0,"62":0,"63":0.004784,"64":0.019136,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004784},E:{"4":0,"5":0,"6":0,"7":0,"8":0.009568,"9":0.004784,"10":0.009568,"11":0.02392,"12":0.105248,"13":2.20064,_:"0","3.1":0,"3.2":0,"5.1":0.138736,"6.1":0.004784,"7.1":0,"9.1":0.02392,"10.1":0.066976,"11.1":0.133952,"12.1":0.31096},G:{"8":0.0038765604560456,"3.2":0.015506241824182,"4.0-4.1":0.0077531209120912,"4.2-4.3":0,"5.0-5.1":0.023259362736274,"6.0-6.1":0.0077531209120912,"7.0-7.1":0.027135923192319,"8.1-8.4":0.050395285928593,"9.0-9.2":0.046518725472547,"9.3":0.49232317791779,"10.0-10.2":0.17056866006601,"10.3":0.55047158475848,"11.0-11.2":0.46518725472547,"11.3-11.4":0.82958393759376,"12.0-12.1":1.18622749955,"12.2-12.4":8.3966299477948,"13.0-13.1":12.191782634263,"13.2":5.5512345730573,"13.3":8.7455203888389},I:{"3":0.0022600563380282,"4":0.0097935774647887,_:"76","2.1":0,"2.2":0.0015067042253521,"2.3":0.0015067042253521,"4.1":0.017327098591549,"4.2-4.3":0.37893611267606,"4.4":0,"4.4.3-4.4.4":0.23052574647887},P:{"4":0.11940410810811,"5.0-5.4":0.010854918918919,"6.2-6.4":0.010854918918919,"7.2-7.4":0.043419675675676,"8.2":0.032564756756757,"9.2":0.19538854054054,"10.1":4.3528224864865},B:{"12":0.004784,"13":0.009568,"14":0.019136,"15":0.028704,"16":0.04784,"17":0.14352,"18":1.74616,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.038811042253521,"9":0.0097027605633803,"10":0.01455414084507,"11":0.97027605633803,"5.5":0},N:{"10":0,"11":0.073024},J:{"7":0,"10":0.010432},R:{_:"0"},M:{"0":0.271232},O:{"0":0.328608},Q:{"1.2":0.015648},S:{"2.5":0},H:{"0":0.20246504467354},L:{"0":30.89712}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GD.js new file mode 100644 index 0000000..2b5c3bb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GD.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.146247,"50":0,"51":0,"52":0,"53":0.021402,"54":0,"55":0,"56":0,"57":0.003567,"58":0.017835,"59":0.003567,"60":0,"61":0,"62":0,"63":0.017835,"64":0,"65":0.003567,"66":0.003567,"67":0.003567,"68":0.007134,"69":0.021402,"70":0.003567,"71":0.007134,"72":0.003567,"73":0.028536,"74":0.064206,"75":0.014268,"76":0.024969,"77":0.053505,"78":3.902298,"79":2.421993,"80":0.03567,"81":0.007134},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003567,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.014268,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.003567,"53":0.042804,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.003567,"61":0,"62":0,"63":0,"64":0,"65":0.224721,"66":0.053505,"67":0,"68":0.064206,"69":0.003567,"70":0.135546,"71":0.659895,"72":0.003567,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003567,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.003567,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.007134,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.007134,"10":0.017835,"11":0.017835,"12":0.021402,"13":0.545751,_:"0","3.1":0,"3.2":0,"5.1":0.345999,"6.1":0,"7.1":0,"9.1":0.007134,"10.1":0.010701,"11.1":0.017835,"12.1":0.10701},G:{"8":0.0012505685568557,"3.2":0.0050022742274227,"4.0-4.1":0.0025011371137114,"4.2-4.3":0,"5.0-5.1":0.0075034113411341,"6.0-6.1":0.0025011371137114,"7.0-7.1":0.0087539798979898,"8.1-8.4":0.016257391239124,"9.0-9.2":0.015006822682268,"9.3":0.15882220672067,"10.0-10.2":0.05502501650165,"10.3":0.17758073507351,"11.0-11.2":0.15006822682268,"11.3-11.4":0.26762167116712,"12.0-12.1":0.38267397839784,"12.2-12.4":2.7087314941494,"13.0-13.1":3.9330381113111,"13.2":1.7908141734173,"13.3":2.8212826642664},I:{"3":0.0036284225352113,"4":0.015723164319249,_:"76","2.1":0,"2.2":0.0024189483568075,"2.3":0.0024189483568075,"4.1":0.027817906103286,"4.2-4.3":0.60836551173709,"4.4":0,"4.4.3-4.4.4":0.37009909859155},P:{"4":0.053291124260355,"5.0-5.4":0.010658224852071,"6.2-6.4":0.021316449704142,"7.2-7.4":0.24513917159763,"8.2":0.021316449704142,"9.2":0.13855692307692,"10.1":3.0908852071006},B:{"12":0.003567,"13":0,"14":0.007134,"15":0.028536,"16":0.007134,"17":0.049938,"18":1.672923,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.003567,"9":0,"10":0.003567,"11":0.360267,"5.5":0},N:{"10":0,"11":0.019299},J:{"7":0,"10":0.006433},R:{_:"0"},M:{"0":0.154392},O:{"0":0.051464},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.16443941752577},L:{"0":69.616711}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GE.js new file mode 100644 index 0000000..42b6226 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.006735,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.006735,"34":0.006735,"35":0.006735,"36":0.02694,"37":0,"38":0.006735,"39":0.006735,"40":0.006735,"41":0.006735,"42":0,"43":0.006735,"44":0,"45":0.006735,"46":0.006735,"47":0.006735,"48":0.006735,"49":0.36369,"50":0.006735,"51":0.006735,"52":0.006735,"53":0.006735,"54":0.006735,"55":0.006735,"56":0.01347,"57":0.01347,"58":0.04041,"59":0.047145,"60":0.01347,"61":0.020205,"62":0.01347,"63":0.1347,"64":0.01347,"65":0.020205,"66":0.01347,"67":0.020205,"68":0.033675,"69":0.06735,"70":0.087555,"71":0.195315,"72":0.14817,"73":0.10776,"74":0.114495,"75":0.16164,"76":0.208785,"77":0.4041,"78":16.62198,"79":15.335595,"80":0.033675,"81":0.01347},C:{"2":0,"3":0,"4":0.006735,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.006735,"51":0,"52":0.02694,"53":0,"54":0.006735,"55":0.006735,"56":0.01347,"57":0.006735,"58":0.006735,"59":0,"60":0.006735,"61":0.006735,"62":0,"63":0,"64":0.02694,"65":0.020205,"66":0.04041,"67":0.01347,"68":0.09429,"69":0.020205,"70":0.30981,"71":1.05066,"72":0.01347,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.006735,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01347,"37":0,"38":0.006735,"39":0,"40":0.006735,"41":0,"42":0.006735,"43":0,"44":0,"45":0.006735,"46":0,"47":0,"48":0.006735,"49":0,"50":0,"51":0,"52":0,"53":0.01347,"54":0,"55":0.01347,"56":0,"57":0,"58":0.006735,"60":0.006735,"62":0.006735,"63":0.02694,"64":0.141435,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01347},E:{"4":0,"5":0.006735,"6":0,"7":0,"8":0.006735,"9":0,"10":0.01347,"11":0.006735,"12":0.14817,"13":0.6735,_:"0","3.1":0,"3.2":0,"5.1":0.168375,"6.1":0,"7.1":0,"9.1":0.006735,"10.1":0.02694,"11.1":0.074085,"12.1":0.16164},G:{"8":0.0010862366236624,"3.2":0.0043449464946495,"4.0-4.1":0.0021724732473247,"4.2-4.3":0,"5.0-5.1":0.0065174197419742,"6.0-6.1":0.0021724732473247,"7.0-7.1":0.0076036563656366,"8.1-8.4":0.014121076107611,"9.0-9.2":0.013034839483948,"9.3":0.13795205120512,"10.0-10.2":0.047794411441144,"10.3":0.15424560056006,"11.0-11.2":0.13034839483948,"11.3-11.4":0.23245463746375,"12.0-12.1":0.33238840684068,"12.2-12.4":2.3527885268527,"13.0-13.1":3.4162141814181,"13.2":1.5554908450845,"13.3":2.4505498229823},I:{"3":0.0021709330985915,"4":0.0094073767605634,_:"76","2.1":0,"2.2":0.0014472887323944,"2.3":0.0014472887323944,"4.1":0.016643820422535,"4.2-4.3":0.36399311619718,"4.4":0,"4.4.3-4.4.4":0.22143517605634},P:{"4":0.36544254545455,"5.0-5.4":0.020302363636364,"6.2-6.4":0.020302363636364,"7.2-7.4":0.091360636363636,"8.2":0.020302363636364,"9.2":0.20302363636364,"10.1":1.5023749090909},B:{"12":0.01347,"13":0.18858,"14":0.478185,"15":0.02694,"16":0.37716,"17":0.1347,"18":1.18536,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04041,"9":0.01347,"10":0.006735,"11":0.39063,"5.5":0},N:{"10":0.01306,"11":0.07836},J:{"7":0,"10":0.02612},R:{_:"0"},M:{"0":0.146925},O:{"0":0.28079},Q:{"1.2":0.00653},S:{"2.5":0},H:{"0":0.3925685652921},L:{"0":38.374445}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GF.js new file mode 100644 index 0000000..03ad262 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005509,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005509,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.391139,"50":0,"51":0,"52":0,"53":0.005509,"54":0,"55":0.016527,"56":0,"57":0.115689,"58":0.022036,"59":0,"60":0,"61":0.038563,"62":0,"63":0.247905,"64":0,"65":0.011018,"66":0,"67":0.126707,"68":0,"69":0.005509,"70":0.920003,"71":0.462756,"72":0.011018,"73":0.005509,"74":0.22036,"75":0.038563,"76":0.11018,"77":0.104671,"78":9.150449,"79":7.057029,"80":0.005509,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.005509,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.005509,"44":0,"45":0,"46":0,"47":0.005509,"48":0,"49":0.022036,"50":0.016527,"51":0.005509,"52":0.077126,"53":0.016527,"54":0,"55":0,"56":0.005509,"57":0.011018,"58":0,"59":0,"60":0.033054,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.005509,"68":0.121198,"69":0.088144,"70":0.809823,"71":2.401924,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005509,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.005509,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005509,"64":0.011018,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005509,"12":0.005509,"13":1.178926,_:"0","3.1":0,"3.2":0,"5.1":0.804314,"6.1":0.016527,"7.1":0,"9.1":0.005509,"10.1":0.060599,"11.1":0.572936,"12.1":0.859404},G:{"8":0.0013415159515952,"3.2":0.0053660638063806,"4.0-4.1":0.0026830319031903,"4.2-4.3":0,"5.0-5.1":0.008049095709571,"6.0-6.1":0.0026830319031903,"7.0-7.1":0.0093906116611661,"8.1-8.4":0.017439707370737,"9.0-9.2":0.016098191419142,"9.3":0.17037252585259,"10.0-10.2":0.059026701870187,"10.3":0.19049526512651,"11.0-11.2":0.16098191419142,"11.3-11.4":0.28708441364136,"12.0-12.1":0.41050388118812,"12.2-12.4":2.9057235511551,"13.0-13.1":4.2190676677668,"13.2":1.9210508426843,"13.3":3.0264599867987},I:{"3":0.0020222218309859,"4":0.0087629612676056,_:"76","2.1":0,"2.2":0.0013481478873239,"2.3":0.0013481478873239,"4.1":0.015503700704225,"4.2-4.3":0.33905919366197,"4.4":0,"4.4.3-4.4.4":0.20626662676056},P:{"4":0.12230647578947,"5.0-5.4":0.061153237894737,"6.2-6.4":0.010192206315789,"7.2-7.4":0.14269088842105,"8.2":0.050961031578947,"9.2":0.37711163368421,"10.1":4.06669032},B:{"12":0.005509,"13":0,"14":0.005509,"15":0.005509,"16":0.033054,"17":0.187306,"18":1.503957,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.005509,"9":0.005509,"10":0.005509,"11":0.501319,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.098802},O:{"0":0.642213},Q:{"1.2":0.251496},S:{"2.5":0},H:{"0":0.15731618041237},L:{"0":47.478376}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GG.js new file mode 100644 index 0000000..76db429 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005903,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.129866,"50":0,"51":0,"52":0,"53":0.011806,"54":0,"55":0,"56":0,"57":0.005903,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.088545,"66":0,"67":0.035418,"68":0,"69":0.011806,"70":0.011806,"71":0.05903,"72":0.017709,"73":0.029515,"74":0.035418,"75":0.070836,"76":0.389598,"77":1.086152,"78":8.169752,"79":5.277282,"80":0.005903,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.011806,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.076739,"46":0,"47":0,"48":0.123963,"49":0,"50":0.017709,"51":0,"52":0.017709,"53":0,"54":0,"55":0,"56":0.005903,"57":0.005903,"58":0.005903,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.005903,"65":0,"66":0.005903,"67":0,"68":0.271538,"69":0.041321,"70":0.513561,"71":1.216018,"72":0.017709,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.011806,"9":0.017709,"10":0,"11":0.005903,"12":0.135769,"13":5.914806,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.11806,"10.1":0.11806,"11.1":0.318762,"12.1":0.554882},G:{"8":0.0045063381338134,"3.2":0.018025352535254,"4.0-4.1":0.0090126762676268,"4.2-4.3":0,"5.0-5.1":0.02703802880288,"6.0-6.1":0.0090126762676268,"7.0-7.1":0.031544366936694,"8.1-8.4":0.058582395739574,"9.0-9.2":0.054076057605761,"9.3":0.5723049429943,"10.0-10.2":0.19827887788779,"10.3":0.6399000150015,"11.0-11.2":0.54076057605761,"11.3-11.4":0.96435636063606,"12.0-12.1":1.3789394689469,"12.2-12.4":9.7607283978398,"13.0-13.1":14.172433430843,"13.2":6.4530762076208,"13.3":10.166298829883},I:{"3":0.0027054929577465,"4":0.011723802816901,_:"76","2.1":0,"2.2":0.001803661971831,"2.3":0.001803661971831,"4.1":0.020742112676056,"4.2-4.3":0.45362098591549,"4.4":0,"4.4.3-4.4.4":0.27596028169014},P:{"4":0.034574966005666,"5.0-5.4":0.011524988668555,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.16134984135977,"10.1":3.8262962379603},B:{"12":0.005903,"13":0.017709,"14":0.011806,"15":0.005903,"16":0.023612,"17":0.153478,"18":2.195916,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":2.674059,"5.5":0},N:{"10":0,"11":0.024582},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.508028},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.042666524054983},L:{"0":16.689699}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GH.js new file mode 100644 index 0000000..c9d5cbd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.002564,"31":0,"32":0,"33":0.002564,"34":0,"35":0,"36":0.002564,"37":0.002564,"38":0.002564,"39":0.002564,"40":0.005128,"41":0.002564,"42":0.002564,"43":0.007692,"44":0.002564,"45":0.005128,"46":0.005128,"47":0.005128,"48":0.002564,"49":0.023076,"50":0.010256,"51":0.007692,"52":0.002564,"53":0.005128,"54":0.005128,"55":0.007692,"56":0.002564,"57":0.005128,"58":0.007692,"59":0.007692,"60":0.010256,"61":0.017948,"62":0.030768,"63":0.028204,"64":0.005128,"65":0.010256,"66":0.002564,"67":0.007692,"68":0.005128,"69":0.066664,"70":0.01282,"71":0.020512,"72":0.015384,"73":0.015384,"74":0.05128,"75":0.030768,"76":0.03846,"77":0.069228,"78":1.351228,"79":1.074316,"80":0.010256,"81":0.005128},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.002564,"19":0.002564,"20":0.002564,"21":0.002564,"22":0,"23":0.002564,"24":0.002564,"25":0,"26":0,"27":0,"28":0,"29":0.002564,"30":0.005128,"31":0.002564,"32":0,"33":0.002564,"34":0.002564,"35":0.002564,"36":0.002564,"37":0,"38":0.002564,"39":0.002564,"40":0.002564,"41":0.002564,"42":0.005128,"43":0.010256,"44":0.007692,"45":0.005128,"46":0.002564,"47":0.010256,"48":0.007692,"49":0.005128,"50":0.005128,"51":0.005128,"52":0.023076,"53":0.007692,"54":0.005128,"55":0.007692,"56":0.020512,"57":0.015384,"58":0.005128,"59":0.005128,"60":0.002564,"61":0.002564,"62":0.002564,"63":0.002564,"64":0.01282,"65":0.005128,"66":0.005128,"67":0.010256,"68":0.082048,"69":0.030768,"70":0.207684,"71":0.517928,"72":0.074356,"73":0,"3.5":0,"3.6":0.002564},F:{"9":0,"11":0.002564,"12":0.002564,"15":0.005128,"16":0.005128,"17":0.002564,"18":0.002564,"19":0.005128,"20":0.020512,"21":0,"22":0.002564,"23":0.028204,"24":0,"25":0,"26":0.002564,"27":0.002564,"28":0.007692,"29":0.002564,"30":0.005128,"31":0.002564,"32":0.002564,"33":0.002564,"34":0.002564,"35":0.002564,"36":0.002564,"37":0.002564,"38":0.005128,"39":0,"40":0,"41":0.002564,"42":0.007692,"43":0.002564,"44":0.002564,"45":0.035896,"46":0.020512,"47":0,"48":0.002564,"49":0.002564,"50":0,"51":0,"52":0,"53":0.010256,"54":0.010256,"55":0.015384,"56":0.005128,"57":0,"58":0,"60":0.002564,"62":0.002564,"63":0.007692,"64":0.015384,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03846},E:{"4":0,"5":0,"6":0,"7":0,"8":0.002564,"9":0.002564,"10":0.005128,"11":0.017948,"12":0.030768,"13":0.143584,_:"0","3.1":0,"3.2":0,"5.1":0.251272,"6.1":0,"7.1":0,"9.1":0.005128,"10.1":0.010256,"11.1":0.020512,"12.1":0.048716},G:{"8":0.00071276487648765,"3.2":0.0028510595059506,"4.0-4.1":0.0014255297529753,"4.2-4.3":0,"5.0-5.1":0.0042765892589259,"6.0-6.1":0.0014255297529753,"7.0-7.1":0.0049893541354135,"8.1-8.4":0.0092659433943394,"9.0-9.2":0.0085531785178518,"9.3":0.090521139313931,"10.0-10.2":0.031361654565457,"10.3":0.10121261246125,"11.0-11.2":0.085531785178518,"11.3-11.4":0.15253168356836,"12.0-12.1":0.21810605220522,"12.2-12.4":1.5438487224722,"13.0-13.1":2.2416455365537,"13.2":1.0206793031303,"13.3":1.6079975613561},I:{"3":0.0011023802816901,"4":0.0047769812206573,_:"76","2.1":0,"2.2":0.00073492018779343,"2.3":0.00073492018779343,"4.1":0.0084515821596244,"4.2-4.3":0.18483242723005,"4.4":0,"4.4.3-4.4.4":0.11244278873239},P:{"4":0.55808729166667,"5.0-5.4":0.050735208333333,"6.2-6.4":0.050735208333333,"7.2-7.4":0.152205625,"8.2":0.030441125,"9.2":0.30441125,"10.1":0.80161629166667},B:{"12":0.015384,"13":0.015384,"14":0.020512,"15":0.030768,"16":0.010256,"17":0.030768,"18":0.169224,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.030768,"9":0.015384,"10":0.01282,"11":0.043588,"5.5":0},N:{"10":0.0475904,"11":0.4878016},J:{"7":0,"10":0.07436},R:{_:"0"},M:{"0":0.33462},O:{"0":3.799796},Q:{"1.2":0.022308},S:{"2.5":0.014872},H:{"0":31.186865085911},L:{"0":36.740584}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GI.js new file mode 100644 index 0000000..2318d8f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.618357,"50":0,"51":0,"52":0.005673,"53":0.045384,"54":0,"55":0,"56":0,"57":0,"58":0.005673,"59":0,"60":0.034038,"61":0,"62":0.005673,"63":0.022692,"64":0.022692,"65":0,"66":0.011346,"67":0.011346,"68":0.085095,"69":0,"70":0,"71":0,"72":0.005673,"73":0.017019,"74":0.096441,"75":0.153171,"76":0.068076,"77":0.28365,"78":11.692053,"79":6.938079,"80":0.005673,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.017019,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.005673,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.096441,"53":0,"54":0.005673,"55":0,"56":0.005673,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.005673,"63":0.005673,"64":0,"65":0,"66":0,"67":0,"68":0.544608,"69":0.017019,"70":0.425475,"71":1.038159,"72":0.011346,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.005673,"33":0,"34":0,"35":0,"36":0,"37":0.005673,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.039711,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.011346,"64":0.017019,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.011346,"12":0.090768,"13":2.808135,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.005673,"10.1":0.164517,"11.1":0.181536,"12.1":0.28365},G:{"8":0.0035191185118512,"3.2":0.014076474047405,"4.0-4.1":0.0070382370237024,"4.2-4.3":0,"5.0-5.1":0.021114711071107,"6.0-6.1":0.0070382370237024,"7.0-7.1":0.024633829582958,"8.1-8.4":0.045748540654065,"9.0-9.2":0.042229422142214,"9.3":0.4469280510051,"10.0-10.2":0.15484121452145,"10.3":0.49971482868287,"11.0-11.2":0.42229422142214,"11.3-11.4":0.75309136153615,"12.0-12.1":1.0768502646265,"12.2-12.4":7.6224106966697,"13.0-13.1":11.067627719772,"13.2":5.0393777089709,"13.3":7.9391313627363},I:{"3":0.00085995774647887,"4":0.0037264835680751,_:"76","2.1":0,"2.2":0.00057330516431925,"2.3":0.00057330516431925,"4.1":0.0065930093896714,"4.2-4.3":0.14418624882629,"4.4":0,"4.4.3-4.4.4":0.087715690140845},P:{"4":0.11904367956989,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.010822152688172,"8.2":0.021644305376344,"9.2":0.043288610752688,"10.1":4.8375022516129},B:{"12":0.005673,"13":0.005673,"14":0,"15":0.011346,"16":0.039711,"17":0.090768,"18":2.904576,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.731817,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":1.003864},O:{"0":0.203369},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.20892272680412},L:{"0":25.006997}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GL.js new file mode 100644 index 0000000..cb6eef1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.004714,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.018856,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02357,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.028284,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004714,"56":0,"57":0,"58":0.004714,"59":0,"60":0,"61":0,"62":0,"63":0.004714,"64":0,"65":0,"66":0,"67":0.004714,"68":0,"69":0.042426,"70":0.004714,"71":0.014142,"72":0,"73":0.009428,"74":0.009428,"75":0.014142,"76":0.032998,"77":0.136706,"78":7.066286,"79":4.516012,"80":0.014142,"81":0},C:{"2":0,"3":0,"4":0.004714,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.018856,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.004714,"49":0,"50":0,"51":0,"52":0.169704,"53":0.004714,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.004714,"61":0,"62":0,"63":0.004714,"64":0,"65":0,"66":0.004714,"67":0,"68":0.155562,"69":0.04714,"70":0.631676,"71":0.513826,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.004714,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.009428,"6":0,"7":0,"8":0.004714,"9":0,"10":0,"11":0.004714,"12":0.009428,"13":2.437138,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.004714,"7.1":0,"9.1":0.004714,"10.1":0.028284,"11.1":0.07071,"12.1":0.44783},G:{"8":0.0029368266826683,"3.2":0.011747306730673,"4.0-4.1":0.0058736533653365,"4.2-4.3":0,"5.0-5.1":0.01762096009601,"6.0-6.1":0.0058736533653365,"7.0-7.1":0.020557786778678,"8.1-8.4":0.038178746874687,"9.0-9.2":0.035241920192019,"9.3":0.37297698869887,"10.0-10.2":0.1292203740374,"10.3":0.41702938893889,"11.0-11.2":0.35241920192019,"11.3-11.4":0.62848091009101,"12.0-12.1":0.89866896489649,"12.2-12.4":6.3611665946595,"13.0-13.1":9.2363199169917,"13.2":4.205535809581,"13.3":6.6254809960996},I:{"3":0.00020723943661972,"4":0.00089803755868545,_:"76","2.1":0,"2.2":0.00013815962441315,"2.3":0.00013815962441315,"4.1":0.0015888356807512,"4.2-4.3":0.034747145539906,"4.4":0,"4.4.3-4.4.4":0.021138422535211},P:{"4":0.1698066130031,"5.0-5.4":0.010612913312693,"6.2-6.4":0.13796787306502,"7.2-7.4":0.063677479876161,"8.2":0.063677479876161,"9.2":0.12735495975232,"10.1":6.2403930278638},B:{"12":0.122564,"13":0.009428,"14":0.169704,"15":0.216844,"16":0.004714,"17":0.080138,"18":1.857316,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.004714,"11":1.282208,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.200868},O:{"0":0.491598},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.62555541237113},L:{"0":38.073698}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GM.js new file mode 100644 index 0000000..09c90fb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.003904,"35":0,"36":0.027328,"37":0,"38":0.007808,"39":0.003904,"40":0.007808,"41":0.003904,"42":0.003904,"43":0.007808,"44":0,"45":0,"46":0.003904,"47":0,"48":0.003904,"49":0.027328,"50":0.003904,"51":0,"52":0.007808,"53":0.007808,"54":0,"55":0.046848,"56":0,"57":0,"58":0.003904,"59":0.003904,"60":0.1952,"61":0,"62":0,"63":0.046848,"64":0.003904,"65":0.031232,"66":0.003904,"67":0.011712,"68":0.007808,"69":0.2928,"70":0.007808,"71":0.007808,"72":0.066368,"73":0.003904,"74":0.015616,"75":0.01952,"76":0.035136,"77":0.066368,"78":2.358016,"79":2.092544,"80":0.109312,"81":0.003904},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.003904,"16":0,"17":0,"18":0.003904,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003904,"30":0,"31":0,"32":0,"33":0,"34":0.011712,"35":0,"36":0,"37":0,"38":0.003904,"39":0.003904,"40":0,"41":0,"42":0.003904,"43":0.015616,"44":0.003904,"45":0,"46":0.003904,"47":0.003904,"48":0.042944,"49":0,"50":0.007808,"51":0,"52":0.01952,"53":0.007808,"54":0,"55":0,"56":0.011712,"57":0,"58":0.003904,"59":0,"60":0,"61":0,"62":0.003904,"63":0.003904,"64":0,"65":0.003904,"66":0.011712,"67":0.011712,"68":0.062464,"69":0.011712,"70":0.538752,"71":1.674816,"72":0.308416,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.003904,"17":0,"18":0,"19":0.003904,"20":0.003904,"21":0,"22":0.003904,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003904,"30":0,"31":0,"32":0.003904,"33":0,"34":0,"35":0.003904,"36":0,"37":0,"38":0.003904,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.015616,"46":0.007808,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.007808,"54":0,"55":0.003904,"56":0.035136,"57":0,"58":0,"60":0,"62":0,"63":0.011712,"64":0.011712,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.109312},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.007808,"12":0.035136,"13":0.245952,_:"0","3.1":0,"3.2":0,"5.1":4.07968,"6.1":0,"7.1":0,"9.1":0,"10.1":0.015616,"11.1":0.011712,"12.1":0.050752},G:{"8":0.00086859725972597,"3.2":0.0034743890389039,"4.0-4.1":0.0017371945194519,"4.2-4.3":0,"5.0-5.1":0.0052115835583558,"6.0-6.1":0.0017371945194519,"7.0-7.1":0.0060801808180818,"8.1-8.4":0.011291764376438,"9.0-9.2":0.010423167116712,"9.3":0.1103118519852,"10.0-10.2":0.038218279427943,"10.3":0.12334081088109,"11.0-11.2":0.10423167116712,"11.3-11.4":0.18587981358136,"12.0-12.1":0.26579076147615,"12.2-12.4":1.8813816645665,"13.0-13.1":2.7317383818382,"13.2":1.2438312759276,"13.3":1.9595554179418},I:{"3":0.002834985915493,"4":0.012284938967136,_:"76","2.1":0,"2.2":0.0018899906103286,"2.3":0.0018899906103286,"4.1":0.021734892018779,"4.2-4.3":0.47533263849765,"4.4":0,"4.4.3-4.4.4":0.28916856338028},P:{"4":1.485121849711,"5.0-5.4":0.12290663583815,"6.2-6.4":0.18435995375723,"7.2-7.4":0.44041544508671,"8.2":0.071695537572254,"9.2":0.43017322543353,"10.1":2.5810393526012},B:{"12":0.035136,"13":0.101504,"14":0.015616,"15":0.062464,"16":0.031232,"17":0.03904,"18":0.378688,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.003904,"8":0.01952,"9":0,"10":0.003904,"11":0.167872,"5.5":0},N:{"10":0.044048516129032,"11":0.29732748387097},J:{"7":0,"10":0.067056},R:{_:"0"},M:{"0":0.140208},O:{"0":2.090928},Q:{"1.2":0.006096},S:{"2.5":0},H:{"0":8.074047257732},L:{"0":52.876}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GN.js new file mode 100644 index 0000000..904a791 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.005316,"29":0,"30":0,"31":0,"32":0,"33":0.003987,"34":0,"35":0,"36":0,"37":0.002658,"38":0.001329,"39":0,"40":0.017277,"41":0,"42":0,"43":0.002658,"44":0,"45":0,"46":0,"47":0,"48":0.002658,"49":0.002658,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.015948,"56":0.003987,"57":0,"58":0.001329,"59":0,"60":0.002658,"61":0,"62":0,"63":0.017277,"64":0.001329,"65":0.002658,"66":0.001329,"67":0.001329,"68":0.001329,"69":0.034554,"70":0.002658,"71":0,"72":0.006645,"73":0.001329,"74":0.003987,"75":0.014619,"76":0.021264,"77":0.031896,"78":0.330921,"79":0.31896,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.005316,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.001329,"42":0,"43":0.002658,"44":0,"45":0,"46":0.001329,"47":0.001329,"48":0.001329,"49":0.001329,"50":0,"51":0,"52":0.002658,"53":0,"54":0,"55":0,"56":0.001329,"57":0,"58":0,"59":0,"60":0,"61":0.001329,"62":0.001329,"63":0,"64":0.001329,"65":0,"66":0.001329,"67":0.001329,"68":0.007974,"69":0.003987,"70":0.071766,"71":0.175428,"72":0.003987,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.003987,"17":0,"18":0,"19":0,"20":0.006645,"21":0,"22":0,"23":0.025251,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.001329,"33":0.001329,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.002658,"46":0.001329,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.001329,"54":0.001329,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.001329,"64":0.003987,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02658},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.001329,"11":0.001329,"12":0.011961,"13":0.025251,_:"0","3.1":0,"3.2":0,"5.1":0.014619,"6.1":0,"7.1":0,"9.1":0.005316,"10.1":0.003987,"11.1":0.021264,"12.1":0.017277},G:{"8":0.00022834533453345,"3.2":0.00091338133813381,"4.0-4.1":0.00045669066906691,"4.2-4.3":0,"5.0-5.1":0.0013700720072007,"6.0-6.1":0.00045669066906691,"7.0-7.1":0.0015984173417342,"8.1-8.4":0.0029684893489349,"9.0-9.2":0.0027401440144014,"9.3":0.028999857485749,"10.0-10.2":0.010047194719472,"10.3":0.03242503750375,"11.0-11.2":0.027401440144014,"11.3-11.4":0.048865901590159,"12.0-12.1":0.069873672367237,"12.2-12.4":0.49459599459946,"13.0-13.1":0.71814607710771,"13.2":0.32699051905191,"13.3":0.51514707470747},I:{"3":0.0016547007042254,"4":0.0071703697183099,_:"76","2.1":0,"2.2":0.0011031338028169,"2.3":0.0011031338028169,"4.1":0.012686038732394,"4.2-4.3":0.27743815140845,"4.4":0,"4.4.3-4.4.4":0.16877947183099},P:{"4":0.44511133333333,"5.0-5.4":0.0910455,"6.2-6.4":0.060697,"7.2-7.4":0.14162633333333,"8.2":0.050580833333333,"9.2":0.38441433333333,"10.1":0.58673766666667},B:{"12":0.006645,"13":0.002658,"14":0.002658,"15":0.001329,"16":0.003987,"17":0.019935,"18":0.078411,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0054425714285714,"9":0,"10":0.014967071428571,"11":0.036737357142857,"5.5":0},N:{"10":0.063587333333333,"11":0.031793666666667},J:{"7":0,"10":0.026013},R:{_:"0"},M:{"0":0.060697},O:{"0":1.777555},Q:{"1.2":0.26013},S:{"2.5":0.08671},H:{"0":36.038136065292},L:{"0":47.878158}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GP.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GP.js new file mode 100644 index 0000000..7df029a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GP.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005201,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.436884,"50":0.005201,"51":0,"52":0,"53":0.005201,"54":0,"55":0,"56":0,"57":0,"58":0.005201,"59":0,"60":0,"61":0.005201,"62":0,"63":0.010402,"64":0.020804,"65":0.078015,"66":0,"67":0.015603,"68":0.005201,"69":0.010402,"70":0.026005,"71":0.010402,"72":0.005201,"73":0.010402,"74":0.020804,"75":0.05201,"76":0.114422,"77":0.088417,"78":7.120169,"79":5.013764,"80":0.005201,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.020804,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.010402,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.109221,"49":0,"50":0,"51":0,"52":0.031206,"53":0.005201,"54":0,"55":0,"56":0.005201,"57":0.005201,"58":0.005201,"59":0,"60":0.031206,"61":0.005201,"62":0,"63":0,"64":0.005201,"65":0.005201,"66":0.010402,"67":0.005201,"68":0.20804,"69":0.036407,"70":1.024597,"71":2.158415,"72":0.005201,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.005201,"44":0,"45":0,"46":0.020804,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005201,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.072814,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005201,"9":0.057211,"10":0.041608,"11":0.062412,"12":0.213241,"13":2.54849,_:"0","3.1":0,"3.2":0,"5.1":0.265251,"6.1":0.020804,"7.1":0,"9.1":0.041608,"10.1":0.10402,"11.1":0.353668,"12.1":0.982989},G:{"8":0.0019818494849485,"3.2":0.007927397939794,"4.0-4.1":0.003963698969897,"4.2-4.3":0,"5.0-5.1":0.011891096909691,"6.0-6.1":0.003963698969897,"7.0-7.1":0.013872946394639,"8.1-8.4":0.02576404330433,"9.0-9.2":0.023782193819382,"9.3":0.25169488458846,"10.0-10.2":0.087201377337734,"10.3":0.28142262686269,"11.0-11.2":0.23782193819382,"11.3-11.4":0.42411578977898,"12.0-12.1":0.60644594239424,"12.2-12.4":4.2926859843984,"13.0-13.1":6.232916630163,"13.2":2.8380084624462,"13.3":4.4710524380438},I:{"3":0.0025806830985915,"4":0.011182960093897,_:"76","2.1":0,"2.2":0.001720455399061,"2.3":0.001720455399061,"4.1":0.019785237089202,"4.2-4.3":0.43269453286385,"4.4":0,"4.4.3-4.4.4":0.26322967605634},P:{"4":0.084646413943355,"5.0-5.4":0.010580801742919,"6.2-6.4":0.021161603485839,"7.2-7.4":0.074065612200436,"8.2":0.14813122440087,"9.2":0.34916645751634,"10.1":4.0947702745098},B:{"12":0.005201,"13":0.005201,"14":0.010402,"15":0.010402,"16":0.020804,"17":0.10402,"18":1.222235,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.769748,"9":0.005201,"10":0.005201,"11":1.149421,"5.5":0},N:{"10":0,"11":0.004799},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.345528},O:{"0":0.028794},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.1499316443299},L:{"0":46.03072}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GQ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GQ.js new file mode 100644 index 0000000..3949514 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GQ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00638,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01276,"27":0,"28":0.00638,"29":0,"30":0,"31":0,"32":0,"33":0.00638,"34":0,"35":0,"36":0,"37":0,"38":0.00638,"39":0.01276,"40":0.01914,"41":0,"42":0,"43":0.00638,"44":0,"45":0.22968,"46":0,"47":0,"48":0.1276,"49":0.32538,"50":0.00638,"51":0.0319,"52":0,"53":0,"54":0,"55":0.01914,"56":0,"57":0.28072,"58":0.00638,"59":0.00638,"60":0.0638,"61":0,"62":0.01276,"63":0.43384,"64":0.00638,"65":0.05742,"66":0.00638,"67":0.00638,"68":0.01914,"69":0.03828,"70":0.01276,"71":0.0638,"72":0.00638,"73":1.80554,"74":0.05104,"75":0.05742,"76":0.19778,"77":0.18502,"78":6.83298,"79":6.2205,"80":0.01914,"81":0},C:{"2":0.01276,"3":0,"4":0.01276,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00638,"21":0.00638,"22":0,"23":0.17226,"24":0,"25":0,"26":0.00638,"27":0,"28":0,"29":0,"30":0.01914,"31":0.10208,"32":0,"33":0,"34":0,"35":0,"36":0.00638,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.07656,"44":0,"45":0.01276,"46":0,"47":0.01914,"48":0.00638,"49":0,"50":0.0319,"51":0,"52":0.1595,"53":0,"54":0.01276,"55":0.03828,"56":0.05104,"57":0.04466,"58":0,"59":0,"60":0.0638,"61":0.00638,"62":0.01276,"63":0,"64":0.04466,"65":0,"66":0.00638,"67":0.08932,"68":0.20416,"69":0.08294,"70":1.06546,"71":1.9778,"72":0.07656,"73":0,"3.5":0,"3.6":0.01276},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00638,"33":0,"34":0.00638,"35":0,"36":0.00638,"37":0.00638,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00638,"46":0.00638,"47":0.00638,"48":0.01276,"49":0.00638,"50":0.01276,"51":0.04466,"52":0,"53":0,"54":0.00638,"55":0.04466,"56":0.0638,"57":0,"58":0.00638,"60":0.01276,"62":0.01276,"63":0.00638,"64":0.01276,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00638},E:{"4":0,"5":0.00638,"6":0,"7":0,"8":0,"9":0,"10":0.0319,"11":0.04466,"12":0.00638,"13":1.21858,_:"0","3.1":0,"3.2":0,"5.1":9.93366,"6.1":0,"7.1":0,"9.1":0.00638,"10.1":0.14674,"11.1":0.05104,"12.1":0.44022},G:{"8":0.00052131413141314,"3.2":0.0020852565256526,"4.0-4.1":0.0010426282628263,"4.2-4.3":0,"5.0-5.1":0.0031278847884788,"6.0-6.1":0.0010426282628263,"7.0-7.1":0.003649198919892,"8.1-8.4":0.0067770837083708,"9.0-9.2":0.0062557695769577,"9.3":0.066206894689469,"10.0-10.2":0.022937821782178,"10.3":0.074026606660666,"11.0-11.2":0.062557695769577,"11.3-11.4":0.11156122412241,"12.0-12.1":0.15952212421242,"12.2-12.4":1.1291664086409,"13.0-13.1":1.6395329432943,"13.2":0.74652183618362,"13.3":1.176084680468},I:{"3":0.0027264084507042,"4":0.011814436619718,_:"76","2.1":0,"2.2":0.0018176056338028,"2.3":0.0018176056338028,"4.1":0.020902464788732,"4.2-4.3":0.45712781690141,"4.4":0,"4.4.3-4.4.4":0.27809366197183},P:{"4":0.90297705882353,"5.0-5.4":0.071827720588235,"6.2-6.4":0.041044411764706,"7.2-7.4":0.051305514705882,"8.2":0.020522205882353,"9.2":0.26678867647059,"10.1":1.4262933088235},B:{"12":0.14036,"13":0.04466,"14":0.01276,"15":0.0638,"16":0.01276,"17":0.20416,"18":2.18834,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.14754626373626,"9":0,"10":0.01283010989011,"11":1.0071636263736,"5.5":0},N:{"10":0,"11":0.02534},J:{"7":0,"10":0.04706},R:{_:"0"},M:{"0":0.26064},O:{"0":0.6335},Q:{"1.2":0.26426},S:{"2.5":0},H:{"0":0.66144615120275},L:{"0":47.5626}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GR.js new file mode 100644 index 0000000..b3951e7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.039138,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.006523,"24":0,"25":0,"26":0.032615,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.058707,"35":0,"36":0,"37":0,"38":0.097845,"39":0,"40":0.006523,"41":0,"42":0,"43":0.006523,"44":0,"45":0,"46":0.006523,"47":0.006523,"48":0.032615,"49":1.552474,"50":0.006523,"51":0,"52":0.006523,"53":0.032615,"54":0.058707,"55":0.006523,"56":0.026092,"57":0.013046,"58":0.058707,"59":0,"60":0.006523,"61":0.443564,"62":0.058707,"63":0.052184,"64":0.019569,"65":0.013046,"66":0.026092,"67":0.045661,"68":0.013046,"69":0.032615,"70":0.117414,"71":0.071753,"72":0.110891,"73":0.052184,"74":0.182644,"75":0.13046,"76":0.104368,"77":0.234828,"78":13.039477,"79":11.519618,"80":0.019569,"81":0.013046},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.006523,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006523,"44":0,"45":0.006523,"46":0,"47":0.006523,"48":0.026092,"49":0,"50":0,"51":0,"52":0.665346,"53":0,"54":0,"55":0,"56":0.019569,"57":0.006523,"58":0.006523,"59":0.006523,"60":0.019569,"61":0.006523,"62":0.006523,"63":0.006523,"64":0.013046,"65":0.013046,"66":0.026092,"67":0.039138,"68":0.163075,"69":0.104368,"70":1.200232,"71":4.481301,"72":0.019569,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.032615,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.032615,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.541409,"32":0,"33":0,"34":0,"35":0,"36":0.143506,"37":0,"38":0,"39":0,"40":0.280489,"41":0,"42":0,"43":0,"44":0,"45":0.006523,"46":0.006523,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006523,"56":0,"57":0,"58":0.006523,"60":0,"62":0,"63":0,"64":0.026092,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.013046},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.006523,"11":0.006523,"12":0.039138,"13":0.593593,_:"0","3.1":0,"3.2":0,"5.1":0.013046,"6.1":0,"7.1":0,"9.1":0.013046,"10.1":0.06523,"11.1":0.078276,"12.1":0.097845},G:{"8":0.00073630283028303,"3.2":0.0029452113211321,"4.0-4.1":0.0014726056605661,"4.2-4.3":0,"5.0-5.1":0.0044178169816982,"6.0-6.1":0.0014726056605661,"7.0-7.1":0.0051541198119812,"8.1-8.4":0.0095719367936794,"9.0-9.2":0.0088356339633963,"9.3":0.093510459445945,"10.0-10.2":0.032397324532453,"10.3":0.10455500190019,"11.0-11.2":0.088356339633963,"11.3-11.4":0.15756880568057,"12.0-12.1":0.22530866606661,"12.2-12.4":1.594831930393,"13.0-13.1":2.3156724012401,"13.2":1.0543856529653,"13.3":1.6610991851185},I:{"3":0.0038592746478873,"4":0.016723523474178,_:"76","2.1":0,"2.2":0.0025728497652582,"2.3":0.0025728497652582,"4.1":0.029587772300469,"4.2-4.3":0.64707171596244,"4.4":0,"4.4.3-4.4.4":0.39364601408451},P:{"4":0.68580827586207,"5.0-5.4":0,"6.2-6.4":0.07273724137931,"7.2-7.4":0.020782068965517,"8.2":0.010391034482759,"9.2":0.11430137931034,"10.1":1.7976489655172},B:{"12":0.006523,"13":0.039138,"14":0.013046,"15":0.026092,"16":0.013046,"17":0.071753,"18":1.037157,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.03286022556391,"7":0,"8":0.072292496240601,"9":0,"10":0.046004315789474,"11":0.72292496240602,"5.5":0},N:{"10":0,"11":0.06954},J:{"7":0,"10":0.003477},R:{_:"0"},M:{"0":0.13908},O:{"0":0.111264},Q:{"1.2":0.003477},S:{"2.5":0},H:{"0":0.51352063917526},L:{"0":44.443305}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GT.js new file mode 100644 index 0000000..28ca76f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005318,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.005318,"32":0,"33":0,"34":0.005318,"35":0.005318,"36":0.005318,"37":0,"38":0.010636,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.005318,"45":0,"46":0.005318,"47":0,"48":0,"49":0.308444,"50":0,"51":0,"52":0,"53":0.010636,"54":0,"55":0.010636,"56":0.010636,"57":0,"58":0.005318,"59":0.005318,"60":0,"61":0.010636,"62":0.010636,"63":0.015954,"64":0.010636,"65":0.031908,"66":0.010636,"67":0.05318,"68":0.015954,"69":0.021272,"70":0.031908,"71":0.037226,"72":0.191448,"73":0.031908,"74":0.07977,"75":0.07977,"76":0.122314,"77":0.175494,"78":11.662374,"79":7.891912,"80":0.010636,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005318,"46":0,"47":0,"48":0.015954,"49":0,"50":0,"51":0,"52":0.085088,"53":0,"54":0,"55":0.005318,"56":0,"57":0.005318,"58":0,"59":0,"60":0.005318,"61":0.005318,"62":0,"63":0,"64":0.005318,"65":0.005318,"66":0.021272,"67":0.015954,"68":0.095724,"69":0.021272,"70":0.55839,"71":1.340136,"72":0.02659,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005318,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005318,"54":0.005318,"55":0.005318,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005318,"64":0.047862,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005318},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.015954,"11":0.058498,"12":0.148904,"13":1.398634,_:"0","3.1":0,"3.2":0,"5.1":0.13295,"6.1":0,"7.1":0,"9.1":0.010636,"10.1":0.090406,"11.1":0.218038,"12.1":0.382896},G:{"8":0.00071920712071207,"3.2":0.0028768284828483,"4.0-4.1":0.0014384142414241,"4.2-4.3":0,"5.0-5.1":0.0043152427242724,"6.0-6.1":0.0014384142414241,"7.0-7.1":0.0050344498449845,"8.1-8.4":0.0093496925692569,"9.0-9.2":0.0086304854485449,"9.3":0.091339304330433,"10.0-10.2":0.031645113311331,"10.3":0.10212741114111,"11.0-11.2":0.086304854485449,"11.3-11.4":0.15391032383238,"12.0-12.1":0.22007737893789,"12.2-12.4":1.5578026234623,"13.0-13.1":2.2619063946395,"13.2":1.0299045968597,"13.3":1.6225312643264},I:{"3":0.00077464788732394,"4":0.0033568075117371,_:"76","2.1":0,"2.2":0.00051643192488263,"2.3":0.00051643192488263,"4.1":0.0059389671361502,"4.2-4.3":0.12988262910798,"4.4":0,"4.4.3-4.4.4":0.079014084507042},P:{"4":0.40380305647841,"5.0-5.4":0.03028522923588,"6.2-6.4":0.040380305647841,"7.2-7.4":0.18171137541528,"8.2":0.070665534883721,"9.2":0.34323259800664,"10.1":1.9584448239203},B:{"12":0.005318,"13":0.005318,"14":0.005318,"15":0.005318,"16":0.010636,"17":0.095724,"18":0.350988,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.005318,"7":0,"8":0.02659,"9":0,"10":0.021272,"11":0.21272,"5.5":0},N:{"10":0,"11":0.028092},J:{"7":0,"10":0.004682},R:{_:"0"},M:{"0":0.182598},O:{"0":0.121732},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.42996366666667},L:{"0":59.82053}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GU.js new file mode 100644 index 0000000..c3d6124 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004364,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.056732,"50":0,"51":0,"52":0,"53":0.017456,"54":0.013092,"55":0.004364,"56":0.008728,"57":0,"58":0,"59":0,"60":0,"61":0.013092,"62":0,"63":0.113464,"64":0.004364,"65":0.013092,"66":0.004364,"67":0.056732,"68":0,"69":0.034912,"70":0.004364,"71":0.004364,"72":0.013092,"73":0.013092,"74":0.056732,"75":0.069824,"76":0.24002,"77":0.113464,"78":6.559092,"79":4.617112,"80":0.004364,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.013092,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.013092,"49":0,"50":0,"51":0,"52":0.008728,"53":0,"54":0,"55":0,"56":0.004364,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.013092,"68":0.170196,"69":0.017456,"70":0.253112,"71":0.514952,"72":0.034912,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004364,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004364,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.004364,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.013092,"11":0.026184,"12":0.148376,"13":1.632136,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004364,"10.1":0.1091,"11.1":0.091644,"12.1":0.405852},G:{"8":0.0034998283828383,"3.2":0.013999313531353,"4.0-4.1":0.0069996567656766,"4.2-4.3":0,"5.0-5.1":0.02099897029703,"6.0-6.1":0.0069996567656766,"7.0-7.1":0.024498798679868,"8.1-8.4":0.045497768976898,"9.0-9.2":0.041997940594059,"9.3":0.44447820462046,"10.0-10.2":0.15399244884488,"10.3":0.49697563036304,"11.0-11.2":0.41997940594059,"11.3-11.4":0.74896327392739,"12.0-12.1":1.0709474851485,"12.2-12.4":7.5806282772277,"13.0-13.1":11.006960264026,"13.2":5.0117542442244,"13.3":7.8956128316832},I:{"3":0.001017338028169,"4":0.0044084647887324,_:"76","2.1":0,"2.2":0.00067822535211268,"2.3":0.00067822535211268,"4.1":0.0077995915492958,"4.2-4.3":0.17057367605634,"4.4":0,"4.4.3-4.4.4":0.10376847887324},P:{"4":0.18050296428571,"5.0-5.4":0.021235642857143,"6.2-6.4":0.010617821428571,"7.2-7.4":0.12741385714286,"8.2":0.11679603571429,"9.2":0.31853464285714,"10.1":4.9691404285714},B:{"12":0.008728,"13":0.004364,"14":0.004364,"15":0.004364,"16":0.026184,"17":0.082916,"18":1.143368,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0090488823529412,"8":0.0045244411764706,"9":0,"10":0,"11":0.60175067647059,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.439608},O:{"0":0.067632},Q:{"1.2":0.005636},S:{"2.5":0},H:{"0":0.090708611683849},L:{"0":37.371764}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GW.js new file mode 100644 index 0000000..3fb3c63 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.013172,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.006586,"34":0,"35":0.003293,"36":0.003293,"37":0.003293,"38":0.006586,"39":0,"40":0.016465,"41":0,"42":0,"43":0.095497,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.019758,"50":0.003293,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.003293,"59":0.003293,"60":0.006586,"61":0,"62":0.003293,"63":0.046102,"64":0.003293,"65":0.009879,"66":0,"67":0.003293,"68":0,"69":0.019758,"70":0.046102,"71":0.003293,"72":0.006586,"73":0,"74":0.029637,"75":0.006586,"76":0.023051,"77":0.079032,"78":1.906647,"79":0.958263,"80":0.003293,"81":0},C:{"2":0,"3":0,"4":0.003293,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.06586,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.039516,"44":0,"45":0.006586,"46":0,"47":0.003293,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.003293,"57":0,"58":0,"59":0,"60":0,"61":0.029637,"62":0,"63":0,"64":0,"65":0.003293,"66":0,"67":0,"68":0.026344,"69":0.006586,"70":0.144892,"71":0.431383,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.003293,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.003293,"35":0,"36":0,"37":0.003293,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.009879,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.003293,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.006586,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.003293},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.003293,"13":0.075739,_:"0","3.1":0,"3.2":0,"5.1":4.188696,"6.1":0,"7.1":0,"9.1":0,"10.1":0.003293,"11.1":0.003293,"12.1":0.125134},G:{"8":0.00024364406440644,"3.2":0.00097457625762576,"4.0-4.1":0.00048728812881288,"4.2-4.3":0,"5.0-5.1":0.0014618643864386,"6.0-6.1":0.00048728812881288,"7.0-7.1":0.0017055084508451,"8.1-8.4":0.0031673728372837,"9.0-9.2":0.0029237287728773,"9.3":0.030942796179618,"10.0-10.2":0.010720338833883,"10.3":0.034597457145715,"11.0-11.2":0.029237287728773,"11.3-11.4":0.052139829782978,"12.0-12.1":0.074555083708371,"12.2-12.4":0.52773304350435,"13.0-13.1":0.76626058255826,"13.2":0.34889830023002,"13.3":0.54966100930093},I:{"3":0.0047805457746479,"4":0.020715698356808,_:"76","2.1":0,"2.2":0.0031870305164319,"2.3":0.0031870305164319,"4.1":0.036650850938967,"4.2-4.3":0.80153817488263,"4.4":0,"4.4.3-4.4.4":0.48761566901408},P:{"4":1.4939927614213,"5.0-5.4":0.080756365482233,"6.2-6.4":0.070661819796954,"7.2-7.4":0.92869820304569,"8.2":0.12113454822335,"9.2":0.2927418248731,"10.1":0.98926547715736},B:{"12":0.052688,"13":0.003293,"14":0.003293,"15":0.141599,"16":0.039516,"17":0.052688,"18":0.177822,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.036223,"9":0,"10":0.036223,"11":0.088911,"5.5":0},N:{"10":0.012575625,"11":0.088029375},J:{"7":0,"10":0.006707},R:{_:"0"},M:{"0":0.274987},O:{"0":1.254209},Q:{"1.2":0},S:{"2.5":0},H:{"0":7.7022519604811},L:{"0":68.417872}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/GY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/GY.js new file mode 100644 index 0000000..e601478 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/GY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0.00882,"9":0,"10":0,"11":0,"12":0,"13":0.00441,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00441,"37":0,"38":0.00882,"39":0,"40":0.0882,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00441,"47":0,"48":0,"49":0.01323,"50":0.00441,"51":0.00441,"52":0.00441,"53":0.00882,"54":0,"55":0.05733,"56":0,"57":0,"58":0.01323,"59":0,"60":0.00441,"61":0,"62":0.00441,"63":0.05733,"64":0.01323,"65":0.02205,"66":0.00441,"67":0.00882,"68":0.00882,"69":0.11907,"70":0.04851,"71":0.11907,"72":0.00882,"73":0.01764,"74":0.03969,"75":0.03087,"76":0.09702,"77":0.07497,"78":7.02954,"79":5.60952,"80":0.00882,"81":0.00441},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00441,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00882,"53":0,"54":0,"55":0,"56":0,"57":0.01323,"58":0,"59":0,"60":0,"61":0.00441,"62":0,"63":0.00441,"64":0,"65":0,"66":0,"67":0,"68":0.09702,"69":0.01323,"70":0.19845,"71":0.63945,"72":0.01764,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00882,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00441,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00441,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00441,"55":0.00441,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01323,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00441},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00441,"11":0,"12":0.00882,"13":0.3969,_:"0","3.1":0,"3.2":0,"5.1":0.10143,"6.1":0,"7.1":0,"9.1":0.00441,"10.1":0.00882,"11.1":0.03969,"12.1":0.07938},G:{"8":0.00090375937593759,"3.2":0.0036150375037504,"4.0-4.1":0.0018075187518752,"4.2-4.3":0,"5.0-5.1":0.0054225562556256,"6.0-6.1":0.0018075187518752,"7.0-7.1":0.0063263156315632,"8.1-8.4":0.011748871887189,"9.0-9.2":0.010845112511251,"9.3":0.11477744074407,"10.0-10.2":0.039765412541254,"10.3":0.12833383138314,"11.0-11.2":0.10845112511251,"11.3-11.4":0.19340450645065,"12.0-12.1":0.2765503690369,"12.2-12.4":1.9575428082808,"13.0-13.1":2.8423232373237,"13.2":1.2941834263426,"13.3":2.0388811521152},I:{"3":0.0059571126760563,"4":0.025814154929577,_:"76","2.1":0,"2.2":0.0039714084507042,"2.3":0.0039714084507042,"4.1":0.045671197183099,"4.2-4.3":0.99880922535211,"4.4":0,"4.4.3-4.4.4":0.60762549295775},P:{"4":0.2891615625,"5.0-5.4":0.0535484375,"6.2-6.4":0.0535484375,"7.2-7.4":0.149935625,"8.2":0.0321290625,"9.2":0.321290625,"10.1":3.534196875},B:{"12":0.00441,"13":0.01323,"14":0.00882,"15":0.0441,"16":0.02646,"17":0.1323,"18":0.92169,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.004536,"9":0,"10":0.004536,"11":0.149688,"5.5":0},N:{"10":0,"11":0.03354},J:{"7":0,"10":0.01677},R:{_:"0"},M:{"0":0.20683},O:{"0":1.118},Q:{"1.2":0.02236},S:{"2.5":0},H:{"0":0.77266862542955},L:{"0":62.74781}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/HK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/HK.js new file mode 100644 index 0000000..abdfac5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/HK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.006452,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.006452,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.025808,"35":0,"36":0.006452,"37":0,"38":0.058068,"39":0,"40":0.006452,"41":0,"42":0,"43":0,"44":0,"45":0.006452,"46":0,"47":0.006452,"48":0.025808,"49":0.303244,"50":0,"51":0.019356,"52":0.006452,"53":0.051616,"54":0.012904,"55":0.045164,"56":0.025808,"57":0.051616,"58":0.019356,"59":0.012904,"60":0.012904,"61":0.012904,"62":0.051616,"63":0.574228,"64":0.025808,"65":0.083876,"66":0.03226,"67":0.135492,"68":0.070972,"69":0.303244,"70":0.148396,"71":0.12904,"72":0.154848,"73":0.283888,"74":0.283888,"75":0.361312,"76":0.41938,"77":0.561324,"78":13.820184,"79":10.890976,"80":0.051616,"81":0.012904},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.012904,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.006452,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006452,"46":0,"47":0.006452,"48":0.025808,"49":0,"50":0,"51":0.006452,"52":0.051616,"53":0,"54":0.012904,"55":0.006452,"56":0.019356,"57":0.006452,"58":0,"59":0.006452,"60":0.019356,"61":0.006452,"62":0.006452,"63":0.006452,"64":0.006452,"65":0.012904,"66":0.019356,"67":0.025808,"68":0.167752,"69":0.038712,"70":0.509708,"71":1.561384,"72":0.006452,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006452,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006452,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.006452,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.012904},E:{"4":0,"5":0,"6":0,"7":0,"8":0.025808,"9":0.006452,"10":0.03226,"11":0.06452,"12":0.22582,"13":2.64532,_:"0","3.1":0,"3.2":0,"5.1":0.012904,"6.1":0,"7.1":0,"9.1":0.03226,"10.1":0.103232,"11.1":0.200012,"12.1":0.683912},G:{"8":0.0025772089208921,"3.2":0.010308835683568,"4.0-4.1":0.0051544178417842,"4.2-4.3":0,"5.0-5.1":0.015463253525353,"6.0-6.1":0.0051544178417842,"7.0-7.1":0.018040462446245,"8.1-8.4":0.033503715971597,"9.0-9.2":0.030926507050705,"9.3":0.3273055329533,"10.0-10.2":0.11339719251925,"10.3":0.36596366676668,"11.0-11.2":0.30926507050705,"11.3-11.4":0.55152270907091,"12.0-12.1":0.78862592979298,"12.2-12.4":5.5822345226523,"13.0-13.1":8.1053220562056,"13.2":3.6905631747175,"13.3":5.8141833255326},I:{"3":0.0012380422535211,"4":0.0053648497652582,_:"76","2.1":0,"2.2":0.00082536150234742,"2.3":0.00082536150234742,"4.1":0.0094916572769953,"4.2-4.3":0.20757841784038,"4.4":0,"4.4.3-4.4.4":0.12628030985915},P:{"4":0.24233915151515,"5.0-5.4":0.02107296969697,"6.2-6.4":0.02107296969697,"7.2-7.4":0.063218909090909,"8.2":0.052682424242424,"9.2":0.23180266666667,"10.1":2.8448509090909},B:{"12":0.006452,"13":0.006452,"14":0.012904,"15":0.025808,"16":0.025808,"17":0.083876,"18":1.22588,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.035665222222222,"9":0.028532177777778,"10":0.014266088888889,"11":1.2054845111111,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.209332},O:{"0":0.56768},Q:{"1.2":0.198688},S:{"2.5":0},H:{"0":0.087334446735395},L:{"0":27.323648}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/HN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/HN.js new file mode 100644 index 0000000..022d0ae --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/HN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.021261,"37":0,"38":0.028348,"39":0,"40":0.007087,"41":0.021261,"42":0.007087,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.007087,"49":0.673265,"50":0.007087,"51":0.007087,"52":0.021261,"53":0.056696,"54":0,"55":0.014174,"56":0.007087,"57":0.021261,"58":0.007087,"59":0.007087,"60":0.049609,"61":0,"62":0.007087,"63":0.028348,"64":0.007087,"65":0.049609,"66":0.021261,"67":0.035435,"68":0.014174,"69":0.14174,"70":0.085044,"71":0.063783,"72":0.035435,"73":0.113392,"74":0.276393,"75":0.226784,"76":0.248045,"77":0.276393,"78":15.102397,"79":10.743892,"80":0.021261,"81":0.007087},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.014174,"13":0.007087,"14":0,"15":0,"16":0.021261,"17":0.007087,"18":0,"19":0.014174,"20":0.007087,"21":0.028348,"22":0.021261,"23":0.014174,"24":0.014174,"25":0.021261,"26":0.028348,"27":0.021261,"28":0.021261,"29":0.021261,"30":0.021261,"31":0.049609,"32":0.042522,"33":0.007087,"34":0.007087,"35":0.007087,"36":0.007087,"37":0.007087,"38":0.007087,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.007087,"48":0,"49":0,"50":0.049609,"51":0,"52":0.07087,"53":0,"54":0,"55":0.007087,"56":0.021261,"57":0,"58":0.007087,"59":0,"60":0.007087,"61":0.007087,"62":0.014174,"63":0,"64":0.014174,"65":0,"66":0.014174,"67":0.014174,"68":0.099218,"69":0.056696,"70":0.722874,"71":2.097752,"72":0.021261,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.007087,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.007087,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.007087,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.007087,"56":0,"57":0,"58":0.007087,"60":0,"62":0,"63":0.007087,"64":0.07087,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.014174},E:{"4":0,"5":0,"6":0,"7":0,"8":0.007087,"9":0,"10":0.014174,"11":0.106305,"12":0.14174,"13":1.722141,_:"0","3.1":0,"3.2":0,"5.1":11.204547,"6.1":0,"7.1":0,"9.1":0.007087,"10.1":0.155914,"11.1":0.177175,"12.1":0.503177},G:{"8":0.0007471098109811,"3.2":0.0029884392439244,"4.0-4.1":0.0014942196219622,"4.2-4.3":0,"5.0-5.1":0.0044826588658866,"6.0-6.1":0.0014942196219622,"7.0-7.1":0.0052297686768677,"8.1-8.4":0.0097124275427543,"9.0-9.2":0.0089653177317732,"9.3":0.094882945994599,"10.0-10.2":0.032872831683168,"10.3":0.10608959315932,"11.0-11.2":0.089653177317732,"11.3-11.4":0.15988149954995,"12.0-12.1":0.22861560216022,"12.2-12.4":1.6182398505851,"13.0-13.1":2.3496603555356,"13.2":1.0698612493249,"13.3":1.6854797335734},I:{"3":0.0015770035211268,"4":0.0068336819248826,_:"76","2.1":0,"2.2":0.0010513356807512,"2.3":0.0010513356807512,"4.1":0.012090360328638,"4.2-4.3":0.26441092370892,"4.4":0,"4.4.3-4.4.4":0.16085435915493},P:{"4":0.25304848484848,"5.0-5.4":0.080975515151515,"6.2-6.4":0.020243878787879,"7.2-7.4":0.080975515151515,"8.2":0.030365818181818,"9.2":0.16195103030303,"10.1":1.3664618181818},B:{"12":0.028348,"13":0.028348,"14":0.063783,"15":0.021261,"16":0.021261,"17":0.099218,"18":0.531525,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0073232333333333,"7":0,"8":0.16843436666667,"9":0.0439394,"10":0.0439394,"11":0.1757576,"5.5":0},N:{"10":0,"11":0.026217},J:{"7":0,"10":0.008739},R:{_:"0"},M:{"0":0.101955},O:{"0":0.151476},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.27026834020619},L:{"0":38.918118}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/HR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/HR.js new file mode 100644 index 0000000..0dcaced --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/HR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004583,"35":0,"36":0.004583,"37":0,"38":0.004583,"39":0,"40":0,"41":0.004583,"42":0.004583,"43":0.022915,"44":0,"45":0,"46":0.004583,"47":0.004583,"48":0,"49":0.334559,"50":0.004583,"51":0.004583,"52":0.004583,"53":0.013749,"54":0.004583,"55":0.004583,"56":0.004583,"57":0.004583,"58":0.009166,"59":0.004583,"60":0,"61":0.114575,"62":0.009166,"63":0.013749,"64":0.009166,"65":0.013749,"66":0.009166,"67":0.022915,"68":0.009166,"69":0.018332,"70":0.054996,"71":0.054996,"72":0.036664,"73":0.04583,"74":0.128324,"75":0.054996,"76":0.064162,"77":0.22915,"78":6.769091,"79":5.554596,"80":0.013749,"81":0.004583},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004583,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004583,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.004583,"44":0,"45":0.004583,"46":0,"47":0.013749,"48":0.013749,"49":0,"50":0.004583,"51":0,"52":0.119158,"53":0.004583,"54":0,"55":0,"56":0.004583,"57":0,"58":0.004583,"59":0.009166,"60":0.013749,"61":0,"62":0.004583,"63":0.004583,"64":0.009166,"65":0.009166,"66":0.018332,"67":0.013749,"68":0.128324,"69":0.032081,"70":0.64162,"71":2.030269,"72":0.027498,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.004583,"33":0,"34":0,"35":0,"36":0.004583,"37":0,"38":0,"39":0,"40":0.009166,"41":0,"42":0,"43":0,"44":0,"45":0.004583,"46":0.009166,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004583,"54":0,"55":0.009166,"56":0,"57":0.004583,"58":0.004583,"60":0,"62":0,"63":0,"64":0.036664,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004583},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004583,"9":0,"10":0.004583,"11":0.009166,"12":0.032081,"13":0.545377,_:"0","3.1":0,"3.2":0,"5.1":0.009166,"6.1":0,"7.1":0,"9.1":0.004583,"10.1":0.036664,"11.1":0.059579,"12.1":0.109992},G:{"8":0.00066532633263326,"3.2":0.0026613053305331,"4.0-4.1":0.0013306526652665,"4.2-4.3":0,"5.0-5.1":0.0039919579957996,"6.0-6.1":0.0013306526652665,"7.0-7.1":0.0046572843284328,"8.1-8.4":0.0086492423242324,"9.0-9.2":0.0079839159915992,"9.3":0.084496444244424,"10.0-10.2":0.029274358635864,"10.3":0.094476339233923,"11.0-11.2":0.079839159915992,"11.3-11.4":0.14237983518352,"12.0-12.1":0.20358985778578,"12.2-12.4":1.4410968364836,"13.0-13.1":2.0924513161316,"13.2":0.95274730833083,"13.3":1.5009762064206},I:{"3":0.00056777112676056,"4":0.0024603415492958,_:"76","2.1":0,"2.2":0.00037851408450704,"2.3":0.00037851408450704,"4.1":0.004352911971831,"4.2-4.3":0.095196292253521,"4.4":0,"4.4.3-4.4.4":0.057912654929577},P:{"4":0.1837552097561,"5.0-5.4":0.030625868292683,"6.2-6.4":0.051043113821138,"7.2-7.4":0.13271209593496,"8.2":0.061251736585366,"9.2":0.53084838373984,"10.1":5.2574407235772},B:{"12":0.004583,"13":0.004583,"14":0.009166,"15":0.022915,"16":0.009166,"17":0.082494,"18":0.627871,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.24564362146893,"9":0.0046347853107345,"10":0.0092695706214689,"11":0.56080902259887,"5.5":0},N:{"10":0.00947975,"11":0.06635825},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.21668},O:{"0":0.048753},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.28719407560137},L:{"0":63.031573}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/HT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/HT.js new file mode 100644 index 0000000..0c8f57d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/HT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.004722,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.004722,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.018888,"50":0.004722,"51":0,"52":0,"53":0,"54":0.004722,"55":0.004722,"56":0.004722,"57":0.004722,"58":0.014166,"59":0,"60":0.004722,"61":0,"62":0.004722,"63":0.018888,"64":0.004722,"65":0.028332,"66":0,"67":0.009444,"68":0.004722,"69":0.099162,"70":0.014166,"71":0.004722,"72":0.009444,"73":0.009444,"74":0.028332,"75":0.018888,"76":0.028332,"77":0.061386,"78":2.096568,"79":1.803804,"80":0.004722,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.004722,"44":0,"45":0,"46":0,"47":0,"48":0.004722,"49":0,"50":0.004722,"51":0,"52":0.009444,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.009444,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.04722,"69":0.009444,"70":0.132216,"71":0.42498,"72":0.004722,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.009444,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.004722,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.004722,"45":0.009444,"46":0.004722,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.009444,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.028332,"64":0.02361,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004722},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.004722,"11":0.028332,"12":0.042498,"13":0.580806,_:"0","3.1":0,"3.2":0,"5.1":14.548482,"6.1":0,"7.1":0,"9.1":0.009444,"10.1":0.018888,"11.1":0.051942,"12.1":0.103884},G:{"8":0.00051150155015502,"3.2":0.0020460062006201,"4.0-4.1":0.00102300310031,"4.2-4.3":0,"5.0-5.1":0.0030690093009301,"6.0-6.1":0.00102300310031,"7.0-7.1":0.0035805108510851,"8.1-8.4":0.0066495201520152,"9.0-9.2":0.0061380186018602,"9.3":0.064960696869687,"10.0-10.2":0.022506068206821,"10.3":0.072633220122012,"11.0-11.2":0.061380186018602,"11.3-11.4":0.10946133173317,"12.0-12.1":0.15651947434743,"12.2-12.4":1.1079123576358,"13.0-13.1":1.6086723752375,"13.2":0.73247021982198,"13.3":1.1539474971497},I:{"3":0.0011834788732394,"4":0.0051284084507042,_:"76","2.1":0,"2.2":0.00078898591549296,"2.3":0.00078898591549296,"4.1":0.009073338028169,"4.2-4.3":0.19842995774648,"4.4":0,"4.4.3-4.4.4":0.12071484507042},P:{"4":0.36727156097561,"5.0-5.4":0.19383776829268,"6.2-6.4":0.030605963414634,"7.2-7.4":0.17343379268293,"8.2":0.040807951219512,"9.2":0.17343379268293,"10.1":0.69373517073171},B:{"12":0.018888,"13":0.014166,"14":0.009444,"15":0.028332,"16":0.02361,"17":0.037776,"18":0.316374,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.028332,"9":0,"10":0.004722,"11":0.108606,"5.5":0},N:{"10":0.019352666666667,"11":0.038705333333333},J:{"7":0,"10":0.010556},R:{_:"0"},M:{"0":0.095004},O:{"0":0.36946},Q:{"1.2":0.010556},S:{"2.5":0},H:{"0":2.1936256735395},L:{"0":66.255312}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/HU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/HU.js new file mode 100644 index 0000000..4eaa96c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/HU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01749,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.04081,"35":0,"36":0,"37":0,"38":0.09911,"39":0,"40":0,"41":0,"42":0,"43":0.01166,"44":0,"45":0,"46":0.00583,"47":0,"48":0.00583,"49":0.37312,"50":0,"51":0,"52":0,"53":0.10494,"54":0,"55":0.00583,"56":0.00583,"57":0.00583,"58":0.02332,"59":0.00583,"60":0.00583,"61":0.00583,"62":0.00583,"63":0.13409,"64":0.01166,"65":0.01166,"66":0.01749,"67":0.02332,"68":0.01166,"69":0.04081,"70":0.04081,"71":0.0583,"72":0.04664,"73":0.05247,"74":0.04664,"75":0.06413,"76":0.08745,"77":0.15741,"78":10.75052,"79":10.39489,"80":0.01749,"81":0.00583},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00583,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00583,"42":0,"43":0,"44":0,"45":0.00583,"46":0,"47":0.01166,"48":0.00583,"49":0,"50":0.00583,"51":0.00583,"52":0.16907,"53":0.00583,"54":0.00583,"55":0.00583,"56":0.02332,"57":0.01166,"58":0.00583,"59":0.00583,"60":0.01749,"61":0.00583,"62":0.00583,"63":0.01166,"64":0.01166,"65":0.01166,"66":0.02915,"67":0.02332,"68":0.25652,"69":0.05247,"70":1.2243,"71":4.07517,"72":0.01166,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00583,"33":0,"34":0,"35":0,"36":0.01749,"37":0,"38":0,"39":0,"40":0.01166,"41":0,"42":0,"43":0,"44":0,"45":0.01749,"46":0.01166,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00583,"54":0,"55":0.01166,"56":0,"57":0,"58":0.00583,"60":0.00583,"62":0,"63":0.00583,"64":0.08745,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00583},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00583,"12":0.04081,"13":0.80454,_:"0","3.1":0,"3.2":0,"5.1":0.05247,"6.1":0,"7.1":0,"9.1":0.00583,"10.1":0.01749,"11.1":0.0583,"12.1":0.12826},G:{"8":0.0011865606560656,"3.2":0.0047462426242624,"4.0-4.1":0.0023731213121312,"4.2-4.3":0,"5.0-5.1":0.0071193639363936,"6.0-6.1":0.0023731213121312,"7.0-7.1":0.0083059245924592,"8.1-8.4":0.015425288528853,"9.0-9.2":0.014238727872787,"9.3":0.15069320332033,"10.0-10.2":0.052208668866887,"10.3":0.16849161316132,"11.0-11.2":0.14238727872787,"11.3-11.4":0.25392398039804,"12.0-12.1":0.36308756075608,"12.2-12.4":2.5700903810381,"13.0-13.1":3.7317332633263,"13.2":1.6991548594859,"13.3":2.676880840084},I:{"3":0.001425985915493,"4":0.0061792723004695,_:"76","2.1":0,"2.2":0.00095065727699531,"2.3":0.00095065727699531,"4.1":0.010932558685446,"4.2-4.3":0.23909030516432,"4.4":0,"4.4.3-4.4.4":0.14545056338028},P:{"4":0.71179975384615,"5.0-5.4":0.010315938461538,"6.2-6.4":0.020631876923077,"7.2-7.4":0.041263753846154,"8.2":0.020631876923077,"9.2":0.14442313846154,"10.1":2.3726658461538},B:{"12":0.00583,"13":0.00583,"14":0.01166,"15":0.02915,"16":0.01166,"17":0.10494,"18":1.166,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01166,"9":0,"10":0,"11":0.41976,"5.5":0},N:{"10":0,"11":0.06255},J:{"7":0,"10":0.00834},R:{_:"0"},M:{"0":0.26688},O:{"0":0.06255},Q:{"1.2":0.00417},S:{"2.5":0},H:{"0":0.37110134020619},L:{"0":47.86169}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ID.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ID.js new file mode 100644 index 0000000..f255abd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ID.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00901,"30":0.004505,"31":0.004505,"32":0.004505,"33":0.00901,"34":0,"35":0,"36":0.013515,"37":0,"38":0.004505,"39":0,"40":0.004505,"41":0.004505,"42":0,"43":0.00901,"44":0,"45":0.004505,"46":0.004505,"47":0,"48":0.004505,"49":0.085595,"50":0.004505,"51":0.00901,"52":0,"53":0.004505,"54":0.004505,"55":0.00901,"56":0.004505,"57":0.004505,"58":0.05406,"59":0.004505,"60":0.00901,"61":0.01802,"62":0.00901,"63":0.049555,"64":0.00901,"65":0.013515,"66":0.013515,"67":0.031535,"68":0.013515,"69":0.02703,"70":0.058565,"71":0.076585,"72":0.058565,"73":0.076585,"74":0.11713,"75":0.10812,"76":0.13515,"77":0.175695,"78":6.82958,"79":5.08164,"80":0.01802,"81":0.004505},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.004505,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.013515,"37":0,"38":0,"39":0,"40":0.004505,"41":0.004505,"42":0.004505,"43":0.00901,"44":0.004505,"45":0.004505,"46":0.004505,"47":0.01802,"48":0.01802,"49":0.00901,"50":0.004505,"51":0.004505,"52":0.058565,"53":0.004505,"54":0.004505,"55":0.004505,"56":0.02703,"57":0.00901,"58":0.00901,"59":0.004505,"60":0.013515,"61":0.013515,"62":0.013515,"63":0.00901,"64":0.01802,"65":0.01802,"66":0.031535,"67":0.022525,"68":0.103615,"69":0.067575,"70":0.70278,"71":1.93715,"72":0.112625,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004505,"29":0,"30":0,"31":0,"32":0.004505,"33":0.004505,"34":0.004505,"35":0,"36":0,"37":0.094605,"38":0.00901,"39":0,"40":0,"41":0,"42":0.004505,"43":0,"44":0,"45":0.130645,"46":0.07208,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004505,"54":0.004505,"55":0.013515,"56":0.004505,"57":0.004505,"58":0.004505,"60":0,"62":0,"63":0.004505,"64":0.01802,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004505},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004505,"9":0.004505,"10":0.01802,"11":0.022525,"12":0.07208,"13":0.32436,_:"0","3.1":0,"3.2":0,"5.1":1.19833,"6.1":0,"7.1":0,"9.1":0.004505,"10.1":0.02703,"11.1":0.058565,"12.1":0.13515},G:{"8":0.00048248774877488,"3.2":0.0019299509950995,"4.0-4.1":0.00096497549754975,"4.2-4.3":0,"5.0-5.1":0.0028949264926493,"6.0-6.1":0.00096497549754975,"7.0-7.1":0.0033774142414241,"8.1-8.4":0.0062723407340734,"9.0-9.2":0.0057898529852985,"9.3":0.061275944094409,"10.0-10.2":0.021229460946095,"10.3":0.068513260326033,"11.0-11.2":0.057898529852985,"11.3-11.4":0.10325237823782,"12.0-12.1":0.14764125112511,"12.2-12.4":1.0450684638464,"13.0-13.1":1.517423969897,"13.2":0.69092245624562,"13.3":1.0884923612361},I:{"3":0.0062395246478873,"4":0.027037940140845,_:"76","2.1":0,"2.2":0.0041596830985915,"2.3":0.0041596830985915,"4.1":0.047836355633803,"4.2-4.3":1.0461602992958,"4.4":0,"4.4.3-4.4.4":0.63643151408451},P:{"4":0.74716466431095,"5.0-5.4":0.020193639575972,"6.2-6.4":0.070677738515901,"7.2-7.4":0.1413554770318,"8.2":0.11106501766784,"9.2":0.39377597173145,"10.1":1.3731674911661},B:{"12":0.004505,"13":0.004505,"14":0.004505,"15":0.004505,"16":0.004505,"17":0.049555,"18":0.238765,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04505,"9":0.004505,"10":0,"11":0.049555,"5.5":0},N:{"10":0,"11":0.016485},J:{"7":0,"10":0.01099},R:{_:"0"},M:{"0":0.12089},O:{"0":3.63769},Q:{"1.2":0.005495},S:{"2.5":0},H:{"0":2.2109821735395},L:{"0":59.957215}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IE.js new file mode 100644 index 0000000..21a0c57 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.004028,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.008056,"30":0,"31":0,"32":0,"33":0,"34":0.004028,"35":0,"36":0,"37":0,"38":0.004028,"39":0,"40":0,"41":0,"42":0,"43":0.004028,"44":0,"45":0.008056,"46":0,"47":0.02014,"48":0.213484,"49":0.185288,"50":0,"51":0,"52":0,"53":0.012084,"54":0,"55":0.004028,"56":0.06042,"57":0.008056,"58":0.004028,"59":0.008056,"60":0.008056,"61":0.012084,"62":0.004028,"63":0.052364,"64":0.008056,"65":0.024168,"66":0.004028,"67":0.08056,"68":0.173204,"69":0.028196,"70":0.04028,"71":0.088616,"72":0.056392,"73":0.032224,"74":0.04028,"75":0.08056,"76":0.092644,"77":0.108756,"78":5.61906,"79":3.492276,"80":0.004028,"81":0},C:{"2":0,"3":0.008056,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004028,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02014,"39":0,"40":0.016112,"41":0,"42":0,"43":0.024168,"44":0.08056,"45":0.02014,"46":0.036252,"47":0,"48":0.008056,"49":0,"50":0,"51":0.004028,"52":0.036252,"53":0,"54":0.004028,"55":0.004028,"56":0.004028,"57":0,"58":0.004028,"59":0,"60":0.012084,"61":0.104728,"62":0,"63":0.012084,"64":0.012084,"65":0.028196,"66":0.024168,"67":0.008056,"68":0.128896,"69":0.012084,"70":0.213484,"71":0.62434,"72":0.004028,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004028,"46":0.004028,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004028,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.008056,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0.004028,"5":0.004028,"6":0,"7":0,"8":0.012084,"9":0.036252,"10":0.048336,"11":0.012084,"12":0.036252,"13":0.894216,_:"0","3.1":0,"3.2":0,"5.1":0.004028,"6.1":0,"7.1":0,"9.1":0.012084,"10.1":0.036252,"11.1":0.06042,"12.1":0.145008},G:{"8":0.0037816665666567,"3.2":0.015126666266627,"4.0-4.1":0.0075633331333133,"4.2-4.3":0,"5.0-5.1":0.02268999939994,"6.0-6.1":0.0075633331333133,"7.0-7.1":0.026471665966597,"8.1-8.4":0.049161665366537,"9.0-9.2":0.04537999879988,"9.3":0.4802716539654,"10.0-10.2":0.16639332893289,"10.3":0.53699665246525,"11.0-11.2":0.4537999879988,"11.3-11.4":0.80927664526453,"12.0-12.1":1.1571899693969,"12.2-12.4":8.1910897833783,"13.0-13.1":11.893341352135,"13.2":5.4153465234523,"13.3":8.5314397743774},I:{"3":0.0011854647887324,"4":0.005137014084507,_:"76","2.1":0,"2.2":0.00079030985915493,"2.3":0.00079030985915493,"4.1":0.0090885633802817,"4.2-4.3":0.19876292957746,"4.4":0,"4.4.3-4.4.4":0.1209174084507},P:{"4":0.095124337595908,"5.0-5.4":0.01056937084399,"6.2-6.4":0.01056937084399,"7.2-7.4":0.052846854219949,"8.2":0.031708112531969,"9.2":0.25366490025575,"10.1":3.6464329411765},B:{"12":0.012084,"13":0.012084,"14":0.008056,"15":0.012084,"16":0.024168,"17":0.088616,"18":0.829768,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0044613924050633,"8":0.071382278481013,"9":0.12491898734177,"10":0.022306962025316,"11":0.48183037974684,"5.5":0},N:{"10":0,"11":0.041804},J:{"7":0,"10":0.005972},R:{_:"0"},M:{"0":0.256796},O:{"0":0.077636},Q:{"1.2":0.047776},S:{"2.5":0},H:{"0":0.14134759450172},L:{"0":39.733984}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IL.js new file mode 100644 index 0000000..31866f5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.033828,"32":0.011276,"33":0,"34":0.005638,"35":0,"36":0.005638,"37":0,"38":0.016914,"39":0,"40":0.005638,"41":0.005638,"42":0,"43":0.005638,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.377746,"50":0,"51":0,"52":0,"53":0.016914,"54":0,"55":0.005638,"56":0.011276,"57":0.005638,"58":0.005638,"59":0.005638,"60":0.005638,"61":0.022552,"62":0.011276,"63":0.022552,"64":0.011276,"65":0.022552,"66":0.016914,"67":0.11276,"68":0.022552,"69":0.02819,"70":0.078932,"71":0.11276,"72":0.101484,"73":0.090208,"74":0.062018,"75":0.135312,"76":0.14095,"77":0.214244,"78":13.497372,"79":10.385196,"80":0.02819,"81":0.011276},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005638,"22":0,"23":0,"24":0.005638,"25":0.011276,"26":0.02819,"27":0.005638,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005638,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005638,"46":0,"47":0,"48":0.033828,"49":0,"50":0,"51":0,"52":0.039466,"53":0,"54":0,"55":0.005638,"56":0.022552,"57":0.011276,"58":0,"59":0,"60":0.016914,"61":0,"62":0.005638,"63":0.005638,"64":0,"65":0.005638,"66":0.090208,"67":0.005638,"68":0.095846,"69":0.022552,"70":0.36647,"71":0.952822,"72":0.011276,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005638,"56":0,"57":0,"58":0,"60":0,"62":0.005638,"63":0,"64":0.022552,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005638},E:{"4":0,"5":0,"6":0,"7":0.005638,"8":0.118398,"9":0,"10":0.005638,"11":0.011276,"12":0.039466,"13":0.682198,_:"0","3.1":0,"3.2":0,"5.1":0.016914,"6.1":0.011276,"7.1":0,"9.1":0.011276,"10.1":0.039466,"11.1":0.073294,"12.1":0.16914},G:{"8":0.0014782736273627,"3.2":0.0059130945094509,"4.0-4.1":0.0029565472547255,"4.2-4.3":0,"5.0-5.1":0.0088696417641764,"6.0-6.1":0.0029565472547255,"7.0-7.1":0.010347915391539,"8.1-8.4":0.019217557155716,"9.0-9.2":0.017739283528353,"9.3":0.18774075067507,"10.0-10.2":0.06504403960396,"10.3":0.20991485508551,"11.0-11.2":0.17739283528353,"11.3-11.4":0.31635055625563,"12.0-12.1":0.452351729973,"12.2-12.4":3.2019406768677,"13.0-13.1":4.6491705580558,"13.2":2.1168878343834,"13.3":3.3349853033303},I:{"3":0.00053715492957746,"4":0.0023276713615023,_:"76","2.1":0,"2.2":0.00035810328638498,"2.3":0.00035810328638498,"4.1":0.0041181877934272,"4.2-4.3":0.090062976525822,"4.4":0,"4.4.3-4.4.4":0.054789802816901},P:{"4":0.15262781431335,"5.0-5.4":0.020350375241779,"6.2-6.4":0.020350375241779,"7.2-7.4":0.13227743907157,"8.2":0.061051125725338,"9.2":0.55963531914894,"10.1":4.2634036131528},B:{"12":0,"13":0,"14":0.011276,"15":0.005638,"16":0.016914,"17":0.11276,"18":0.896442,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.011276,"9":0.005638,"10":0.016914,"11":1.037392,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.148308},O:{"0":0.04362},Q:{"1.2":0.004362},S:{"2.5":0},H:{"0":0.10737115463918},L:{"0":45.098152}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IM.js new file mode 100644 index 0000000..a6ebe97 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.006734,"48":0,"49":0.10101,"50":0,"51":0,"52":0,"53":0.047138,"54":0,"55":0.006734,"56":0.026936,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.181818,"64":0.006734,"65":0,"66":0.006734,"67":0.074074,"68":0,"69":0.006734,"70":0.013468,"71":0.006734,"72":0.531986,"73":0.37037,"74":0.020202,"75":0.148148,"76":0.047138,"77":0.161616,"78":28.020174,"79":3.548818,"80":0.006734,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.026936,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.006734,"48":0.020202,"49":0,"50":0,"51":0,"52":0.020202,"53":0,"54":0,"55":0,"56":0.060606,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.006734,"67":0,"68":0.148148,"69":0.006734,"70":0.249158,"71":0.90909,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.013468,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.006734,"10":0,"11":0.020202,"12":0.047138,"13":2.42424,_:"0","3.1":0,"3.2":0,"5.1":0.013468,"6.1":0,"7.1":0,"9.1":0.006734,"10.1":0.053872,"11.1":0.23569,"12.1":0.410774},G:{"8":0.0032749894989499,"3.2":0.0130999579958,"4.0-4.1":0.0065499789978998,"4.2-4.3":0,"5.0-5.1":0.019649936993699,"6.0-6.1":0.0065499789978998,"7.0-7.1":0.022924926492649,"8.1-8.4":0.042574863486349,"9.0-9.2":0.039299873987399,"9.3":0.41592366636664,"10.0-10.2":0.1440995379538,"10.3":0.46504850885089,"11.0-11.2":0.39299873987399,"11.3-11.4":0.70084775277528,"12.0-12.1":1.0021467866787,"12.2-12.4":7.0936272547255,"13.0-13.1":10.299841974197,"13.2":4.6897849624962,"13.3":7.388376309631},I:{"3":0.0016691549295775,"4":0.0072330046948357,_:"76","2.1":0,"2.2":0.0011127699530516,"2.3":0.0011127699530516,"4.1":0.012796854460094,"4.2-4.3":0.27986164319249,"4.4":0,"4.4.3-4.4.4":0.1702538028169},P:{"4":0.043034352941176,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.021517176470588,"9.2":0.34427482352941,"10.1":2.6896470588235},B:{"12":0,"13":0,"14":0.03367,"15":0.154882,"16":0.013468,"17":0.215488,"18":2.451176,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0068100903954802,"7":0,"8":0,"9":0,"10":0,"11":1.1985759096045,"5.5":0},N:{"10":0,"11":0.009798},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.225354},O:{"0":0.026128},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.071116869415808},L:{"0":18.44335}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IN.js new file mode 100644 index 0000000..cf6c536 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.002549,"31":0.002549,"32":0,"33":0.002549,"34":0,"35":0,"36":0.002549,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.002549,"47":0,"48":0.012745,"49":0.053529,"50":0.002549,"51":0.002549,"52":0,"53":0,"54":0,"55":0.005098,"56":0.002549,"57":0.002549,"58":0.007647,"59":0,"60":0.002549,"61":0.002549,"62":0.002549,"63":0.010196,"64":0.002549,"65":0.002549,"66":0.005098,"67":0.005098,"68":0.005098,"69":0.012745,"70":0.012745,"71":0.02549,"72":0.020392,"73":0.017843,"74":0.033137,"75":0.028039,"76":0.028039,"77":0.05098,"78":2.37057,"79":2.138611,"80":0.010196,"81":0.002549},C:{"2":0,"3":0,"4":0.002549,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.002549,"32":0,"33":0,"34":0,"35":0.043333,"36":0,"37":0,"38":0,"39":0,"40":0.002549,"41":0,"42":0,"43":0.002549,"44":0.002549,"45":0,"46":0,"47":0.012745,"48":0.002549,"49":0,"50":0,"51":0,"52":0.015294,"53":0,"54":0,"55":0,"56":0.005098,"57":0.002549,"58":0,"59":0.002549,"60":0.002549,"61":0.002549,"62":0.002549,"63":0.002549,"64":0.002549,"65":0.05098,"66":0.02549,"67":0.002549,"68":0.035686,"69":0.007647,"70":0.089215,"71":0.298233,"72":0.038235,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.017843,"38":0.002549,"39":0,"40":0,"41":0,"42":0.002549,"43":0,"44":0,"45":0.066274,"46":0.038235,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005098,"54":0.005098,"55":0.012745,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.002549,"64":0.002549,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005098},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.002549,"12":0.007647,"13":0.073921,_:"0","3.1":0,"3.2":0,"5.1":0.05098,"6.1":0,"7.1":0,"9.1":0,"10.1":0.005098,"11.1":0.007647,"12.1":0.022941},G:{"8":0.00021713941394139,"3.2":0.00086855765576558,"4.0-4.1":0.00043427882788279,"4.2-4.3":0,"5.0-5.1":0.0013028364836484,"6.0-6.1":0.00043427882788279,"7.0-7.1":0.0015199758975898,"8.1-8.4":0.0028228123812381,"9.0-9.2":0.0026056729672967,"9.3":0.027576705570557,"10.0-10.2":0.0095541342134213,"10.3":0.030833796779678,"11.0-11.2":0.026056729672967,"11.3-11.4":0.046467834583458,"12.0-12.1":0.066444660666067,"12.2-12.4":0.47032397059706,"13.0-13.1":0.68290345684568,"13.2":0.31094364076408,"13.3":0.48986651785179},I:{"3":0.00039629929577465,"4":0.0017172969483568,_:"76","2.1":0,"2.2":0.00026419953051643,"2.3":0.00026419953051643,"4.1":0.003038294600939,"4.2-4.3":0.066446181924883,"4.4":0,"4.4.3-4.4.4":0.040422528169014},P:{"4":0.59381739267016,"5.0-5.4":0.020129403141361,"6.2-6.4":0.070452910994764,"7.2-7.4":0.17109992670157,"8.2":0.060388209424084,"9.2":0.35226455497382,"10.1":0.64414090052356},B:{"12":0.002549,"13":0.002549,"14":0.002549,"15":0.002549,"16":0.002549,"17":0.012745,"18":0.07647,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.007647,"9":0,"10":0,"11":0.035686,"5.5":0},N:{"10":0,"11":0.052157},J:{"7":0,"10":0.007451},R:{_:"0"},M:{"0":0.104314},O:{"0":15.699257},Q:{"1.2":0},S:{"2.5":1.557259},H:{"0":2.7440547920962},L:{"0":63.508659}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IQ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IQ.js new file mode 100644 index 0000000..f604fe1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IQ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.002133,"27":0,"28":0,"29":0,"30":0,"31":0.002133,"32":0,"33":0.006399,"34":0.002133,"35":0,"36":0.002133,"37":0,"38":0.010665,"39":0,"40":0.006399,"41":0,"42":0,"43":0.053325,"44":0,"45":0.002133,"46":0,"47":0.002133,"48":0,"49":0.014931,"50":0.002133,"51":0,"52":0,"53":0.002133,"54":0,"55":0.002133,"56":0.002133,"57":0.002133,"58":0.002133,"59":0,"60":0.002133,"61":0.002133,"62":0.002133,"63":0.027729,"64":0.002133,"65":0.006399,"66":0,"67":0.004266,"68":0.002133,"69":0.057591,"70":0.012798,"71":0.017064,"72":0.006399,"73":0.006399,"74":0.019197,"75":0.017064,"76":0.019197,"77":0.04266,"78":1.384317,"79":1.34379,"80":0.004266,"81":0.002133},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.002133,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.002133,"44":0,"45":0,"46":0,"47":0.004266,"48":0,"49":0,"50":0,"51":0,"52":0.004266,"53":0,"54":0,"55":0,"56":0.002133,"57":0,"58":0,"59":0,"60":0.002133,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.002133,"67":0.002133,"68":0.027729,"69":0.004266,"70":0.059724,"71":0.198369,"72":0.008532,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.002133,"56":0,"57":0,"58":0,"60":0,"62":0.002133,"63":0.002133,"64":0.008532,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.006399,"13":0.091719,_:"0","3.1":0,"3.2":0,"5.1":0.398871,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.002133,"12.1":0.012798},G:{"8":0.0014698859885989,"3.2":0.0058795439543954,"4.0-4.1":0.0029397719771977,"4.2-4.3":0,"5.0-5.1":0.0088193159315932,"6.0-6.1":0.0029397719771977,"7.0-7.1":0.010289201920192,"8.1-8.4":0.019108517851785,"9.0-9.2":0.017638631863186,"9.3":0.18667552055206,"10.0-10.2":0.06467498349835,"10.3":0.20872381038104,"11.0-11.2":0.17638631863186,"11.3-11.4":0.31455560156016,"12.0-12.1":0.44978511251125,"12.2-12.4":3.1837730513051,"13.0-13.1":4.6227914341434,"13.2":2.1048767356736,"13.3":3.316062790279},I:{"3":0.00078635563380282,"4":0.0034075410798122,_:"76","2.1":0,"2.2":0.00052423708920188,"2.3":0.00052423708920188,"4.1":0.0060287265258216,"4.2-4.3":0.13184562793427,"4.4":0,"4.4.3-4.4.4":0.080208274647887},P:{"4":0.50064604625,"5.0-5.4":0.03065179875,"6.2-6.4":0.08173813,"7.2-7.4":0.2656489225,"8.2":0.09195539625,"9.2":0.62325324125,"10.1":6.56970219875},B:{"12":0,"13":0.002133,"14":0.002133,"15":0.002133,"16":0.004266,"17":0.014931,"18":0.113049,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01539759375,"9":0.00219965625,"10":0.0043993125,"11":0.0483924375,"5.5":0},N:{"10":0,"11":0.007867},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.125872},O:{"0":0.39335},Q:{"1.2":0.015734},S:{"2.5":0},H:{"0":0.24578292268041},L:{"0":69.760412}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IR.js new file mode 100644 index 0000000..d0efdd5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IR.js @@ -0,0 +1 @@ +module.exports={D:{"13":0.750266,"29":0.016797,"30":0.011198,"31":0.022396,"33":0.005599,"34":0.005599,"35":0.016797,"36":0.016797,"38":0.022396,"39":0.005599,"43":0.011198,"45":0.005599,"46":0.011198,"47":0.011198,"48":0.016797,"49":0.459118,"50":0.005599,"51":0.011198,"52":0.005599,"53":0.011198,"54":0.016797,"55":0.022396,"56":0.016797,"57":0.011198,"58":0.039193,"59":0.016797,"60":0.044792,"61":0.016797,"62":0.044792,"63":0.134376,"64":0.016797,"65":0.022396,"66":0.027995,"67":0.05599,"68":0.05599,"69":0.083985,"70":0.627088,"71":0.845449,"72":0.582296,"73":0.380732,"74":0.11198,"75":0.201564,"76":0.251955,"77":0.341539,"78":13.504788,"79":13.275229,"80":0.011198,_:"4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 32 37 40 41 42 44 81"},C:{"33":0.005599,"37":0.005599,"38":0.005599,"39":0.005599,"41":0.005599,"42":0.011198,"43":0.039193,"44":0.011198,"45":0.027995,"47":0.078386,"48":0.027995,"49":0.016797,"50":0.011198,"51":0.016797,"52":0.95183,"53":0.011198,"54":0.016797,"55":0.033594,"56":0.078386,"57":0.027995,"58":0.022396,"59":0.016797,"60":0.067188,"61":0.027995,"62":0.039193,"63":0.100782,"64":0.128777,"65":0.128777,"66":0.083985,"67":0.050391,"68":0.442321,"69":0.156772,"70":2.116422,"71":7.788209,"72":0.173569,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 40 46 73 3.5 3.6"},F:{"36":0.005599,"56":0.050391,"57":0.061589,"58":0.044792,"62":0.005599,"63":0.011198,"64":0.050391,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 60 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.011198},E:{"4":0.005599,"9":0.027995,"10":0.016797,"11":0.016797,"12":0.083985,"13":0.431123,_:"0 5 6 7 8 3.1 3.2 6.1 7.1","5.1":0.324742,"9.1":0.011198,"10.1":0.039193,"11.1":0.061589,"12.1":0.156772},G:{"8":0.00051705170517052,"3.2":0.0020682068206821,"4.0-4.1":0.001034103410341,"4.2-4.3":0,"5.0-5.1":0.0031023102310231,"6.0-6.1":0.001034103410341,"7.0-7.1":0.0036193619361936,"8.1-8.4":0.0067216721672167,"9.0-9.2":0.0062046204620462,"9.3":0.065665566556656,"10.0-10.2":0.022750275027503,"10.3":0.073421342134213,"11.0-11.2":0.062046204620462,"11.3-11.4":0.11064906490649,"12.0-12.1":0.15821782178218,"12.2-12.4":1.1199339933993,"13.0-13.1":1.6261276127613,"13.2":0.74041804180418,"13.3":1.1664686468647},I:{"3":0.00085211267605634,"4":0.0036924882629108,_:"76","2.1":0,"2.2":0.00056807511737089,"2.3":0.00056807511737089,"4.1":0.0065328638497653,"4.2-4.3":0.14287089201878,"4.4":0,"4.4.3-4.4.4":0.086915492957746},P:{"4":1.4292124711316,"5.0-5.4":0.24327020785219,"6.2-6.4":0.17231639722864,"7.2-7.4":0.58790300230947,"8.2":0.36490531177829,"9.2":1.8143903002309,"10.1":4.1457297921478},B:{"12":0.027995,"13":0.022396,"14":0.050391,"15":0.027995,"16":0.044792,"17":0.330341,"18":0.599093,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.20840989681857,"7":0.31543119518487,"8":1.6729118744626,"9":0.022530799656062,"10":0.38302359415305,"11":3.9485226397248,_:"5.5"},N:{"10":0,"11":0.0176},J:{"7":0,"10":0.022},R:{_:"0"},M:{"0":0.7216},O:{"0":0.1452},Q:{_:"1.2"},S:{_:"2.5"},H:{"0":0.79980206185567},L:{"0":28.455922}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IS.js new file mode 100644 index 0000000..4b25c89 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.012274,"39":0,"40":0,"41":0.006137,"42":0,"43":0,"44":0,"45":0,"46":0.006137,"47":0,"48":0,"49":0.196384,"50":0,"51":0,"52":0.006137,"53":0.006137,"54":0,"55":0,"56":0,"57":0.006137,"58":0.012274,"59":0,"60":0.006137,"61":0.018411,"62":0,"63":0.006137,"64":0,"65":0.024548,"66":0.018411,"67":0.073644,"68":0.006137,"69":0.018411,"70":0.030685,"71":0.288439,"72":0.110466,"73":0.251617,"74":0.036822,"75":0.049096,"76":0.147288,"77":0.282302,"78":13.538222,"79":9.150267,"80":0.055233,"81":0.006137},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.012274,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.006137,"32":0.006137,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006137,"46":0,"47":0,"48":0.018411,"49":0,"50":0.006137,"51":0,"52":0.024548,"53":0,"54":0,"55":0.006137,"56":0.012274,"57":0.006137,"58":0.092055,"59":0,"60":0.024548,"61":0.006137,"62":0.006137,"63":0,"64":0.036822,"65":0.012274,"66":0.018411,"67":0.006137,"68":0.239343,"69":0.049096,"70":0.564604,"71":1.736771,"72":0.018411,"73":0,"3.5":0,"3.6":0.006137},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.049096,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006137,"54":0,"55":0.012274,"56":0,"57":0.006137,"58":0,"60":0,"62":0,"63":0.006137,"64":0.030685,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.006137,"8":0.006137,"9":0,"10":0.012274,"11":0.036822,"12":0.276165,"13":3.271021,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.497097,"10.1":0.104329,"11.1":0.288439,"12.1":0.6137},G:{"8":0.0029449186918692,"3.2":0.011779674767477,"4.0-4.1":0.0058898373837384,"4.2-4.3":0,"5.0-5.1":0.017669512151215,"6.0-6.1":0.0058898373837384,"7.0-7.1":0.020614430843084,"8.1-8.4":0.038283942994299,"9.0-9.2":0.03533902430243,"9.3":0.37400467386739,"10.0-10.2":0.12957642244224,"10.3":0.41817845424542,"11.0-11.2":0.3533902430243,"11.3-11.4":0.63021260006001,"12.0-12.1":0.90114511971197,"12.2-12.4":6.3786938865887,"13.0-13.1":9.2617692859286,"13.2":4.2171235667567,"13.3":6.6437365688569},I:{"3":0.0007586338028169,"4":0.0032874131455399,_:"76","2.1":0,"2.2":0.0005057558685446,"2.3":0.0005057558685446,"4.1":0.0058161924882629,"4.2-4.3":0.12719760093897,"4.4":0,"4.4.3-4.4.4":0.077380647887324},P:{"4":0.051970226666667,"5.0-5.4":0.010394045333333,"6.2-6.4":0.010394045333333,"7.2-7.4":0.041576181333333,"8.2":0.051970226666667,"9.2":0.124728544,"10.1":3.5651575493333},B:{"12":0,"13":0.006137,"14":0.012274,"15":0.012274,"16":0.006137,"17":0.110466,"18":2.172498,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.012274,"7":0,"8":0.006137,"9":0.006137,"10":0,"11":0.576878,"5.5":0},N:{"10":0,"11":0.007726},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.285862},O:{"0":0.019315},Q:{"1.2":0.003863},S:{"2.5":0},H:{"0":0.12434612027491},L:{"0":27.137961}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/IT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/IT.js new file mode 100644 index 0000000..d4f3d6e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/IT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005985,"35":0,"36":0.005985,"37":0,"38":0.017955,"39":0.005985,"40":0.005985,"41":0.005985,"42":0,"43":0.005985,"44":0,"45":0.005985,"46":0.005985,"47":0.005985,"48":0.01197,"49":0.7182,"50":0.01197,"51":0.005985,"52":0.005985,"53":0.02394,"54":0.005985,"55":0.02394,"56":0.005985,"57":0.005985,"58":0.01197,"59":0.005985,"60":0.005985,"61":0.01197,"62":0.01197,"63":0.065835,"64":0.01197,"65":0.041895,"66":0.05985,"67":0.065835,"68":0.053865,"69":0.04788,"70":0.077805,"71":0.101745,"72":0.09576,"73":0.077805,"74":0.07182,"75":0.101745,"76":0.10773,"77":0.19152,"78":11.69469,"79":8.36703,"80":0.017955,"81":0.005985},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01197,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005985,"39":0,"40":0,"41":0.005985,"42":0.005985,"43":0.005985,"44":0.005985,"45":0.01197,"46":0,"47":0.005985,"48":0.08379,"49":0.005985,"50":0.005985,"51":0.005985,"52":0.125685,"53":0.005985,"54":0.005985,"55":0.005985,"56":0.041895,"57":0.005985,"58":0.005985,"59":0.01197,"60":0.02394,"61":0.005985,"62":0.005985,"63":0.01197,"64":0.02394,"65":0.017955,"66":0.03591,"67":0.02394,"68":0.185535,"69":0.065835,"70":0.903735,"71":2.60946,"72":0.017955,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01197,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.017955,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005985,"56":0.005985,"57":0.005985,"58":0.005985,"60":0,"62":0,"63":0,"64":0.017955,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005985},E:{"4":0,"5":0.005985,"6":0,"7":0.005985,"8":0.01197,"9":0.017955,"10":0.017955,"11":0.04788,"12":0.185535,"13":2.90871,_:"0","3.1":0,"3.2":0,"5.1":0.10773,"6.1":0.005985,"7.1":0,"9.1":0.041895,"10.1":0.137655,"11.1":0.29925,"12.1":0.640395},G:{"8":0.0016496759675968,"3.2":0.006598703870387,"4.0-4.1":0.0032993519351935,"4.2-4.3":0,"5.0-5.1":0.0098980558055806,"6.0-6.1":0.0032993519351935,"7.0-7.1":0.011547731773177,"8.1-8.4":0.021445787578758,"9.0-9.2":0.019796111611161,"9.3":0.20950884788479,"10.0-10.2":0.072585742574257,"10.3":0.23425398739874,"11.0-11.2":0.19796111611161,"11.3-11.4":0.35303065706571,"12.0-12.1":0.50480084608461,"12.2-12.4":3.5731981458146,"13.0-13.1":5.1882309180918,"13.2":2.3623359855986,"13.3":3.7216689828983},I:{"3":0.00084507042253521,"4":0.0036619718309859,_:"76","2.1":0,"2.2":0.00056338028169014,"2.3":0.00056338028169014,"4.1":0.0064788732394366,"4.2-4.3":0.14169014084507,"4.4":0,"4.4.3-4.4.4":0.086197183098592},P:{"4":0.16566133333333,"5.0-5.4":0.0310615,"6.2-6.4":0.041415333333333,"7.2-7.4":0.072476833333333,"8.2":0.051769166666667,"9.2":0.28990733333333,"10.1":2.7437658333333},B:{"12":0.005985,"13":0.005985,"14":0.01197,"15":0.02394,"16":0.02394,"17":0.113715,"18":1.30473,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.054835540540541,"9":0.012185675675676,"10":0.024371351351351,"11":1.2612174324324,"5.5":0},N:{"10":0,"11":0.068255},J:{"7":0,"10":0.004015},R:{_:"0"},M:{"0":0.196735},O:{"0":0.22484},Q:{"1.2":0.044165},S:{"2.5":0},H:{"0":0.16344913230241},L:{"0":41.96214}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/JE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/JE.js new file mode 100644 index 0000000..4193bd6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/JE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004667,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.056004,"50":0,"51":0,"52":0,"53":0.023335,"54":0,"55":0.009334,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.009334,"64":0.009334,"65":0.04667,"66":0.004667,"67":0.070005,"68":0.009334,"69":0,"70":0,"71":0.004667,"72":0.014001,"73":0.009334,"74":0.018668,"75":0.074672,"76":0.037336,"77":0.224016,"78":5.138367,"79":3.934281,"80":0.014001,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004667,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.014001,"46":0,"47":0,"48":0.004667,"49":0,"50":0,"51":0,"52":0.018668,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.014001,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.004667,"67":0.004667,"68":0.112008,"69":0.009334,"70":0.214682,"71":0.728052,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.004667,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.014001,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.028002,"9":0.004667,"10":0.009334,"11":0.018668,"12":0.154011,"13":3.150225,_:"0","3.1":0,"3.2":0,"5.1":0.037336,"6.1":0,"7.1":0,"9.1":0.04667,"10.1":0.09334,"11.1":0.182013,"12.1":0.662714},G:{"8":0.0051950434043404,"3.2":0.020780173617362,"4.0-4.1":0.010390086808681,"4.2-4.3":0,"5.0-5.1":0.031170260426043,"6.0-6.1":0.010390086808681,"7.0-7.1":0.036365303830383,"8.1-8.4":0.067535564256426,"9.0-9.2":0.062340520852085,"9.3":0.65977051235124,"10.0-10.2":0.22858190979098,"10.3":0.73769616341634,"11.0-11.2":0.62340520852085,"11.3-11.4":1.1117392885289,"12.0-12.1":1.5896832817282,"12.2-12.4":11.252464013801,"13.0-13.1":16.338411506651,"13.2":7.4393021550155,"13.3":11.720017920192},I:{"3":0.0011620422535211,"4":0.0050355164319249,_:"76","2.1":0,"2.2":0.00077469483568075,"2.3":0.00077469483568075,"4.1":0.0089089906103286,"4.2-4.3":0.19483575117371,"4.4":0,"4.4.3-4.4.4":0.11852830985915},P:{"4":0.24234083980583,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03304647815534,"8.2":0.011015492718447,"9.2":0.13218591262136,"10.1":4.0977632912621},B:{"12":0,"13":0.004667,"14":0.014001,"15":0.219349,"16":0.032669,"17":0.084006,"18":1.810796,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.004667,"7":0,"8":0.004667,"9":0,"10":0.009334,"11":2.039479,"5.5":0},N:{"10":0,"11":0.085328},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.245318},O:{"0":0.069329},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.090880917525773},L:{"0":20.722825}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/JM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/JM.js new file mode 100644 index 0000000..5a41f5d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/JM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004258,"34":0,"35":0,"36":0.004258,"37":0,"38":0.004258,"39":0.004258,"40":0,"41":0.004258,"42":0.004258,"43":0.004258,"44":0,"45":0,"46":0.004258,"47":0,"48":0,"49":0.166062,"50":0.004258,"51":0,"52":0.004258,"53":0.008516,"54":0,"55":0.004258,"56":0.004258,"57":0,"58":0.004258,"59":0.004258,"60":0.004258,"61":0.008516,"62":0.008516,"63":0.025548,"64":0,"65":0.025548,"66":0.012774,"67":0.017032,"68":0.004258,"69":0.080902,"70":0.008516,"71":0.04258,"72":0.008516,"73":0.025548,"74":0.051096,"75":0.055354,"76":0.10645,"77":0.119224,"78":6.357194,"79":4.424062,"80":0.038322,"81":0.008516},C:{"2":0,"3":0.004258,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.004258,"49":0.004258,"50":0,"51":0,"52":0.012774,"53":0,"54":0,"55":0,"56":0.004258,"57":0.008516,"58":0,"59":0.004258,"60":0.004258,"61":0.008516,"62":0.004258,"63":0,"64":0,"65":0,"66":0.004258,"67":0.017032,"68":0.097934,"69":0.017032,"70":0.183094,"71":0.519476,"72":0.012774,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.004258,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.004258,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004258,"54":0,"55":0.004258,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.004258,"64":0.012774,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004258},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004258,"9":0,"10":0,"11":0.004258,"12":0.038322,"13":1.0645,_:"0","3.1":0,"3.2":0,"5.1":0.38322,"6.1":0,"7.1":0,"9.1":0.004258,"10.1":0.046838,"11.1":0.093676,"12.1":0.217158},G:{"8":0.0015311309130913,"3.2":0.0061245236523652,"4.0-4.1":0.0030622618261826,"4.2-4.3":0,"5.0-5.1":0.0091867854785479,"6.0-6.1":0.0030622618261826,"7.0-7.1":0.010717916391639,"8.1-8.4":0.019904701870187,"9.0-9.2":0.018373570957096,"9.3":0.1944536259626,"10.0-10.2":0.067369760176018,"10.3":0.21742058965897,"11.0-11.2":0.18373570957096,"11.3-11.4":0.32766201540154,"12.0-12.1":0.46852605940594,"12.2-12.4":3.3164295577558,"13.0-13.1":4.8154067216722,"13.2":2.1925794675468,"13.3":3.454231339934},I:{"3":0.0032041901408451,"4":0.013884823943662,_:"76","2.1":0,"2.2":0.0021361267605634,"2.3":0.0021361267605634,"4.1":0.024565457746479,"4.2-4.3":0.53723588028169,"4.4":0,"4.4.3-4.4.4":0.3268273943662},P:{"4":0.21043979057592,"5.0-5.4":0.042087958115183,"6.2-6.4":0.031565968586387,"7.2-7.4":0.14730785340314,"8.2":0.042087958115183,"9.2":0.19991780104712,"10.1":3.3249486910995},B:{"12":0.008516,"13":0.012774,"14":0.02129,"15":0.025548,"16":0.038322,"17":0.114966,"18":0.804762,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.022593469387755,"9":0.004518693877551,"10":0.004518693877551,"11":0.18978514285714,"5.5":0},N:{"10":0,"11":0.063162},J:{"7":0,"10":0.034452},R:{_:"0"},M:{"0":0.22968},O:{"0":0.562716},Q:{"1.2":0.005742},S:{"2.5":0},H:{"0":0.36965851546392},L:{"0":60.19019}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/JO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/JO.js new file mode 100644 index 0000000..63f71c3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/JO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.004043,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004043,"34":0,"35":0,"36":0.008086,"37":0,"38":0.008086,"39":0,"40":0.004043,"41":0,"42":0,"43":0.008086,"44":0,"45":0.004043,"46":0,"47":0.004043,"48":0,"49":0.198107,"50":0.012129,"51":0,"52":0,"53":0.004043,"54":0.008086,"55":0,"56":0.004043,"57":0,"58":0.016172,"59":0.004043,"60":0.004043,"61":0,"62":0.004043,"63":0.016172,"64":0,"65":0.016172,"66":0.008086,"67":0.036387,"68":0.004043,"69":0.04043,"70":0.04043,"71":0.036387,"72":0.068731,"73":0.044473,"74":0.036387,"75":0.048516,"76":0.072774,"77":0.109161,"78":5.506566,"79":4.940546,"80":0.016172,"81":0.004043},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.008086,"41":0,"42":0,"43":0,"44":0.004043,"45":0,"46":0,"47":0,"48":0.008086,"49":0,"50":0,"51":0,"52":0.012129,"53":0,"54":0,"55":0,"56":0.004043,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.024258,"64":0.004043,"65":0.008086,"66":0.004043,"67":0.004043,"68":0.048516,"69":0.012129,"70":0.206193,"71":0.64688,"72":0.008086,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.004043,"47":0.004043,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004043,"54":0,"55":0.004043,"56":0,"57":0.012129,"58":0,"60":0,"62":0,"63":0,"64":0.036387,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.020215,"10":0.004043,"11":0.012129,"12":0.052559,"13":0.481117,_:"0","3.1":0,"3.2":0,"5.1":1.766791,"6.1":0,"7.1":0,"9.1":0.008086,"10.1":0.048516,"11.1":0.092989,"12.1":0.169806},G:{"8":0.0010090626062606,"3.2":0.0040362504250425,"4.0-4.1":0.0020181252125213,"4.2-4.3":0,"5.0-5.1":0.0060543756375638,"6.0-6.1":0.0020181252125213,"7.0-7.1":0.0070634382438244,"8.1-8.4":0.013117813881388,"9.0-9.2":0.012108751275128,"9.3":0.1281509509951,"10.0-10.2":0.044398754675468,"10.3":0.14328689008901,"11.0-11.2":0.12108751275128,"11.3-11.4":0.21593939773977,"12.0-12.1":0.30877315751575,"12.2-12.4":2.1856296051605,"13.0-13.1":3.1735018966897,"13.2":1.4449776521652,"13.3":2.276445239724},I:{"3":0.0004719823943662,"4":0.0020452570422535,_:"76","2.1":0,"2.2":0.00031465492957746,"2.3":0.00031465492957746,"4.1":0.0036185316901408,"4.2-4.3":0.079135714788732,"4.4":0,"4.4.3-4.4.4":0.048142204225352},P:{"4":0.26231775352113,"5.0-5.4":0.020178288732394,"6.2-6.4":0.050445721830986,"7.2-7.4":0.16142630985915,"8.2":0.080713154929577,"9.2":0.42374406338028,"10.1":1.8463134190141},B:{"12":0.004043,"13":0.004043,"14":0.008086,"15":0.008086,"16":0.008086,"17":0.072774,"18":0.412386,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.020215,"7":0,"8":0.084903,"9":0,"10":0.004043,"11":0.109161,"5.5":0},N:{"10":0,"11":0.023828},J:{"7":0,"10":0.005957},R:{_:"0"},M:{"0":0.089355},O:{"0":0.452732},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.23686751546392},L:{"0":68.355305}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/JP.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/JP.js new file mode 100644 index 0000000..6ea494f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/JP.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.012722,"36":0,"37":0,"38":0,"39":0,"40":0.006361,"41":0.006361,"42":0,"43":0.006361,"44":0,"45":0.006361,"46":0.006361,"47":0.006361,"48":0.012722,"49":0.801486,"50":0.006361,"51":0.006361,"52":0.006361,"53":0.006361,"54":0.006361,"55":0.025444,"56":0.012722,"57":0.019083,"58":0.038166,"59":0.006361,"60":0.019083,"61":0.012722,"62":0.025444,"63":0.25444,"64":0.012722,"65":0.06361,"66":0.012722,"67":0.082693,"68":0.076332,"69":0.12722,"70":0.050888,"71":0.076332,"72":0.076332,"73":0.095415,"74":0.101776,"75":0.12722,"76":0.165386,"77":0.25444,"78":9.503334,"79":7.550507,"80":0.025444,"81":0.006361},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.006361,"21":0.012722,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.012722,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006361,"46":0,"47":0.006361,"48":0.076332,"49":0,"50":0.006361,"51":0,"52":0.06361,"53":0.006361,"54":0.006361,"55":0.006361,"56":0.057249,"57":0.012722,"58":0.006361,"59":0.012722,"60":0.031805,"61":0.006361,"62":0.012722,"63":0.006361,"64":0.006361,"65":0.025444,"66":0.019083,"67":0.019083,"68":0.146303,"69":0.044527,"70":0.706071,"71":2.092769,"72":0.019083,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006361,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006361,"46":0.006361,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006361,"56":0,"57":0,"58":0,"60":0,"62":0.006361,"63":0,"64":0.006361,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.012722},E:{"4":0,"5":0.006361,"6":0,"7":0.006361,"8":0.006361,"9":0.012722,"10":0.019083,"11":0.076332,"12":0.19083,"13":2.506234,_:"0","3.1":0,"3.2":0,"5.1":0.019083,"6.1":0.006361,"7.1":0,"9.1":0.057249,"10.1":0.152664,"11.1":0.305328,"12.1":0.585212},G:{"8":0.0039393857385739,"3.2":0.015757542954295,"4.0-4.1":0.0078787714771477,"4.2-4.3":0,"5.0-5.1":0.023636314431443,"6.0-6.1":0.0078787714771477,"7.0-7.1":0.027575700170017,"8.1-8.4":0.05121201460146,"9.0-9.2":0.047272628862886,"9.3":0.50030198879888,"10.0-10.2":0.17333297249725,"10.3":0.55939277487749,"11.0-11.2":0.47272628862886,"11.3-11.4":0.84302854805481,"12.0-12.1":1.2054520360036,"12.2-12.4":8.532709509751,"13.0-13.1":12.389368147815,"13.2":5.6412003776378,"13.3":8.8872542262226},I:{"3":0.0020295422535211,"4":0.0087946830985915,_:"76","2.1":0,"2.2":0.0013530281690141,"2.3":0.0013530281690141,"4.1":0.015559823943662,"4.2-4.3":0.34028658450704,"4.4":0,"4.4.3-4.4.4":0.20701330985915},P:{"4":0.021085794392523,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.021085794392523,"8.2":0.010542897196262,"9.2":0.094886074766355,"10.1":0.98048943925234},B:{"12":0,"13":0.006361,"14":0.012722,"15":0.012722,"16":0.038166,"17":0.184469,"18":3.269554,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0064461539491299,"7":0.0064461539491299,"8":0.058015385542169,"9":0.025784615796519,"10":0.038676923694779,"11":4.6799077670683,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.003639},R:{_:"0"},M:{"0":0.149199},O:{"0":0.29112},Q:{"1.2":0.105531},S:{"2.5":0},H:{"0":0.11369061340206},L:{"0":20.735923}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KE.js new file mode 100644 index 0000000..e26d866 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003032,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003032,"30":0.003032,"31":0.003032,"32":0,"33":0.003032,"34":0.003032,"35":0,"36":0.006064,"37":0,"38":0.003032,"39":0.003032,"40":0.006064,"41":0,"42":0.003032,"43":0.003032,"44":0,"45":0,"46":0.003032,"47":0.003032,"48":0.003032,"49":0.051544,"50":0.006064,"51":0.003032,"52":0,"53":0.003032,"54":0.003032,"55":0.006064,"56":0.003032,"57":0.003032,"58":0.009096,"59":0.003032,"60":0.006064,"61":0.003032,"62":0.006064,"63":0.048512,"64":0.003032,"65":0.009096,"66":0.006064,"67":0.01516,"68":0.006064,"69":0.039416,"70":0.018192,"71":0.021224,"72":0.01516,"73":0.021224,"74":0.03032,"75":0.03032,"76":0.04548,"77":0.057608,"78":2.534752,"79":1.797976,"80":0.01516,"81":0.003032},C:{"2":0,"3":0,"4":0.003032,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.003032,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.003032,"39":0,"40":0.003032,"41":0,"42":0.003032,"43":0.006064,"44":0.003032,"45":0.003032,"46":0.003032,"47":0.009096,"48":0.009096,"49":0.003032,"50":0.003032,"51":0.003032,"52":0.036384,"53":0.003032,"54":0.003032,"55":0.003032,"56":0.006064,"57":0.009096,"58":0.003032,"59":0.003032,"60":0.009096,"61":0.003032,"62":0.003032,"63":0.003032,"64":0.003032,"65":0.006064,"66":0.009096,"67":0.009096,"68":0.0758,"69":0.018192,"70":0.275912,"71":0.706456,"72":0.069736,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.003032,"15":0.009096,"16":0.009096,"17":0,"18":0,"19":0.006064,"20":0.027288,"21":0.003032,"22":0.003032,"23":0.033352,"24":0.003032,"25":0,"26":0.003032,"27":0.003032,"28":0.009096,"29":0.003032,"30":0.006064,"31":0.003032,"32":0.006064,"33":0.009096,"34":0,"35":0.003032,"36":0,"37":0.012128,"38":0.006064,"39":0,"40":0,"41":0,"42":0.003032,"43":0,"44":0,"45":0.036384,"46":0.01516,"47":0,"48":0.003032,"49":0.003032,"50":0,"51":0,"52":0,"53":0.021224,"54":0.01516,"55":0.024256,"56":0.003032,"57":0,"58":0,"60":0,"62":0,"63":0.003032,"64":0.009096,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.157664},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.009096,"12":0.03032,"13":0.21224,_:"0","3.1":0,"3.2":0,"5.1":0.427512,"6.1":0,"7.1":0,"9.1":0.003032,"10.1":0.018192,"11.1":0.027288,"12.1":0.072768},G:{"8":0.00025929712971297,"3.2":0.0010371885188519,"4.0-4.1":0.00051859425942594,"4.2-4.3":0,"5.0-5.1":0.0015557827782778,"6.0-6.1":0.00051859425942594,"7.0-7.1":0.0018150799079908,"8.1-8.4":0.0033708626862686,"9.0-9.2":0.0031115655565557,"9.3":0.032930735473547,"10.0-10.2":0.011409073707371,"10.3":0.036820192419242,"11.0-11.2":0.031115655565557,"11.3-11.4":0.055489585758576,"12.0-12.1":0.079344921692169,"12.2-12.4":0.5616375829583,"13.0-13.1":0.81548947294729,"13.2":0.37131348974897,"13.3":0.58497432463246},I:{"3":0.0014831830985915,"4":0.0064271267605634,_:"76","2.1":0,"2.2":0.00098878873239437,"2.3":0.00098878873239437,"4.1":0.011371070422535,"4.2-4.3":0.24868036619718,"4.4":0,"4.4.3-4.4.4":0.15128467605634},P:{"4":0.28727911811024,"5.0-5.4":0,"6.2-6.4":0.020519937007874,"7.2-7.4":0.082079748031496,"8.2":0.020519937007874,"9.2":0.12311962204724,"10.1":0.75923766929134},B:{"12":0.012128,"13":0.009096,"14":0.012128,"15":0.012128,"16":0.009096,"17":0.039416,"18":0.230432,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0233464,"9":0.0066704,"10":0.0066704,"11":0.0633688,"5.5":0},N:{"10":0.088777481481482,"11":0.21084651851852},J:{"7":0,"10":0.03484},R:{_:"0"},M:{"0":0.216008},O:{"0":1.052168},Q:{"1.2":0.013936},S:{"2.5":0},H:{"0":27.812329017182},L:{"0":46.636552}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KG.js new file mode 100644 index 0000000..673d5a1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.014552,"39":0,"40":0.007276,"41":0,"42":0,"43":0,"44":0,"45":0.007276,"46":0,"47":0,"48":0,"49":0.429284,"50":0,"51":0.007276,"52":0,"53":0,"54":0,"55":0.007276,"56":0.007276,"57":0,"58":0.007276,"59":0.07276,"60":0.007276,"61":0.03638,"62":0,"63":0.050932,"64":0,"65":0.080036,"66":0.014552,"67":0.07276,"68":0.058208,"69":0.050932,"70":0.07276,"71":0.116416,"72":0.138244,"73":0.043656,"74":0.276488,"75":0.123692,"76":0.349248,"77":0.247384,"78":21.777068,"79":18.692044,"80":0.014552,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.043656,"53":0,"54":0,"55":0,"56":0,"57":0.014552,"58":0,"59":0,"60":0,"61":0.021828,"62":0,"63":0.014552,"64":0,"65":0,"66":0.014552,"67":0.014552,"68":0.050932,"69":0.014552,"70":0.341972,"71":0.953156,"72":0.029104,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.021828,"37":0,"38":0.007276,"39":0,"40":0,"41":0,"42":0.007276,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.007276,"54":0.007276,"55":0.021828,"56":0,"57":0,"58":0,"60":0.007276,"62":0.007276,"63":0.014552,"64":0.1819,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.021828},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.007276,"11":0.03638,"12":0.050932,"13":1.040468,_:"0","3.1":0,"3.2":0,"5.1":0.160072,"6.1":0,"7.1":0,"9.1":0,"10.1":0.007276,"11.1":0.065484,"12.1":0.152796},G:{"8":0.0004650205020502,"3.2":0.0018600820082008,"4.0-4.1":0.00093004100410041,"4.2-4.3":0,"5.0-5.1":0.0027901230123012,"6.0-6.1":0.00093004100410041,"7.0-7.1":0.0032551435143514,"8.1-8.4":0.0060452665266527,"9.0-9.2":0.0055802460246025,"9.3":0.059057603760376,"10.0-10.2":0.020460902090209,"10.3":0.066032911291129,"11.0-11.2":0.055802460246025,"11.3-11.4":0.099514387438744,"12.0-12.1":0.14229627362736,"12.2-12.4":1.0072344074407,"13.0-13.1":1.4624894789479,"13.2":0.66590935893589,"13.3":1.0490862526253},I:{"3":0.00058559154929577,"4":0.0025375633802817,_:"76","2.1":0,"2.2":0.00039039436619718,"2.3":0.00039039436619718,"4.1":0.0044895352112676,"4.2-4.3":0.098184183098592,"4.4":0,"4.4.3-4.4.4":0.059730338028169},P:{"4":0.68977606694561,"5.0-5.4":0.040575062761506,"6.2-6.4":0.12172518828452,"7.2-7.4":0.19273154811715,"8.2":0.081150125523013,"9.2":0.28402543933054,"10.1":1.0143765690377},B:{"12":0,"13":0.007276,"14":0,"15":0.029104,"16":0.007276,"17":0.043656,"18":0.385628,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.007276,"9":0,"10":0,"11":0.116416,"5.5":0},N:{"10":0,"11":0.01362},J:{"7":0,"10":0.002724},R:{_:"0"},M:{"0":0.024516},O:{"0":1.214904},Q:{"1.2":0.032688},S:{"2.5":0},H:{"0":0.56220177319588},L:{"0":35.101644}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KH.js new file mode 100644 index 0000000..14c3781 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.007051,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.014102,"31":0.007051,"32":0,"33":0.014102,"34":0,"35":0,"36":0.021153,"37":0,"38":0.007051,"39":0,"40":0.056408,"41":0.007051,"42":0,"43":0.035255,"44":0.007051,"45":0.007051,"46":0.007051,"47":0.007051,"48":0.028204,"49":0.267938,"50":0.084612,"51":0.007051,"52":0.007051,"53":0.014102,"54":0.014102,"55":0.014102,"56":0.021153,"57":0.042306,"58":0.028204,"59":0.007051,"60":0.021153,"61":0.014102,"62":0.021153,"63":0.218581,"64":0.007051,"65":0.028204,"66":0.028204,"67":0.063459,"68":0.028204,"69":0.366652,"70":0.56408,"71":0.761508,"72":0.789712,"73":0.408958,"74":0.289091,"75":0.176275,"76":0.232683,"77":0.303193,"78":15.766036,"79":15.575659,"80":0.126918,"81":0.056408},C:{"2":0,"3":0,"4":0.007051,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.007051,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.014102,"38":0.007051,"39":0.007051,"40":0.007051,"41":0.007051,"42":0.007051,"43":0.007051,"44":0.007051,"45":0.007051,"46":0.007051,"47":0.021153,"48":0.035255,"49":0.042306,"50":0.014102,"51":0.014102,"52":0.035255,"53":0.014102,"54":0.007051,"55":0.028204,"56":0.042306,"57":0.021153,"58":0.021153,"59":0.014102,"60":0.021153,"61":0.014102,"62":0.014102,"63":0.035255,"64":0.098714,"65":0.077561,"66":0.091663,"67":0.133969,"68":0.14102,"69":0.119867,"70":1.078803,"71":4.026121,"72":0.246785,"73":0,"3.5":0,"3.6":0.007051},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.056408,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.014102,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.007051,"56":0.021153,"57":0,"58":0.049357,"60":0,"62":0,"63":0,"64":0.042306,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.007051},E:{"4":0.007051,"5":0,"6":0,"7":0,"8":0.021153,"9":0.021153,"10":0.014102,"11":0.056408,"12":0.21153,"13":1.346741,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.007051,"10.1":0.056408,"11.1":0.091663,"12.1":0.416009},G:{"8":0.0017003447344734,"3.2":0.0068013789378938,"4.0-4.1":0.0034006894689469,"4.2-4.3":0,"5.0-5.1":0.010202068406841,"6.0-6.1":0.0034006894689469,"7.0-7.1":0.011902413141314,"8.1-8.4":0.022104481548155,"9.0-9.2":0.020404136813681,"9.3":0.21594378127813,"10.0-10.2":0.074815168316832,"10.3":0.24144895229523,"11.0-11.2":0.20404136813681,"11.3-11.4":0.36387377317732,"12.0-12.1":0.52030548874887,"12.2-12.4":3.6829466948695,"13.0-13.1":5.347584189919,"13.2":2.434893659766,"13.3":3.8359777209721},I:{"3":0.0010613345070423,"4":0.0045991161971831,_:"76","2.1":0,"2.2":0.00070755633802817,"2.3":0.00070755633802817,"4.1":0.0081368978873239,"4.2-4.3":0.17795041901408,"4.4":0,"4.4.3-4.4.4":0.10825611971831},P:{"4":0.29463363870968,"5.0-5.4":0.030479341935484,"6.2-6.4":0.020319561290323,"7.2-7.4":0.060958683870968,"8.2":0.040639122580645,"9.2":0.1320771483871,"10.1":0.98549872258064},B:{"12":0.014102,"13":0.007051,"14":0.021153,"15":0.021153,"16":0.021153,"17":0.204479,"18":0.888426,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0080125,"7":0.0080125,"8":0.080125,"9":0.0400625,"10":0.03205,"11":0.3605625,"5.5":0},N:{"10":0.016711,"11":0.033422},J:{"7":0,"10":0.041286},R:{_:"0"},M:{"0":0.135654},O:{"0":0.687117},Q:{"1.2":0.109113},S:{"2.5":0},H:{"0":0.75940296907217},L:{"0":28.042009}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KI.js new file mode 100644 index 0000000..1246be8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004916,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.002458,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004916,"56":0.009832,"57":0,"58":0.004916,"59":0,"60":0,"61":0.002458,"62":0.002458,"63":0.027038,"64":0.017206,"65":0.002458,"66":0.002458,"67":0.019664,"68":0,"69":0.031954,"70":0.01229,"71":0,"72":0,"73":0.004916,"74":0.022122,"75":0.002458,"76":0.044244,"77":0.044244,"78":1.550998,"79":0.882422,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01229,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.002458,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.002458,"46":0,"47":0.014748,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01229,"57":0,"58":0,"59":0.002458,"60":0.004916,"61":0.007374,"62":0.002458,"63":0,"64":0,"65":0,"66":0.002458,"67":0,"68":0.066366,"69":0.027038,"70":0.115526,"71":0.299876,"72":0.03687,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004916,"54":0,"55":0,"56":0.002458,"57":0,"58":0.002458,"60":0.004916,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.105694,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.004916},G:{"8":0.00054752775277528,"3.2":0.0021901110111011,"4.0-4.1":0.0010950555055506,"4.2-4.3":0,"5.0-5.1":0.0032851665166517,"6.0-6.1":0.0010950555055506,"7.0-7.1":0.0038326942694269,"8.1-8.4":0.0071178607860786,"9.0-9.2":0.0065703330333033,"9.3":0.06953602460246,"10.0-10.2":0.024091221122112,"10.3":0.077748940894089,"11.0-11.2":0.065703330333033,"11.3-11.4":0.11717093909391,"12.0-12.1":0.16754349234923,"12.2-12.4":1.1859451125113,"13.0-13.1":1.7219747824782,"13.2":0.7840597419742,"13.3":1.235222610261},I:{"3":0.0077148169014085,"4":0.033430873239437,_:"76","2.1":0,"2.2":0.0051432112676056,"2.3":0.0051432112676056,"4.1":0.059146929577465,"4.2-4.3":1.2935176338028,"4.4":0,"4.4.3-4.4.4":0.78691132394366},P:{"4":3.5932048375451,"5.0-5.4":0.12987487364621,"6.2-6.4":0.15152068592058,"7.2-7.4":1.0173531768953,"8.2":0,"9.2":0.61690564981949,"10.1":0.48703077617329},B:{"12":0.034412,"13":0.014748,"14":0.056534,"15":0.029496,"16":0.390822,"17":0.076198,"18":0.113068,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.017206,"9":0,"10":0.009832,"11":0.14748,"5.5":0},N:{"10":0.241344,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.248886},O:{"0":1.16901},Q:{"1.2":0.052794},S:{"2.5":0},H:{"0":0.52838059793814},L:{"0":77.790834}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KM.js new file mode 100644 index 0000000..ed1f45a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.003027,"10":0,"11":0.033297,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.006054,"33":0,"34":0,"35":0,"36":0,"37":0.003027,"38":0.003027,"39":0,"40":0.003027,"41":0,"42":0,"43":0.03027,"44":0,"45":0,"46":0,"47":0.003027,"48":0,"49":0.012108,"50":0,"51":0,"52":0.003027,"53":0,"54":0,"55":0.003027,"56":0,"57":0,"58":0.018162,"59":0.006054,"60":0.003027,"61":0,"62":0.003027,"63":0.039351,"64":0.006054,"65":0.024216,"66":0,"67":0.003027,"68":0,"69":0.133188,"70":0.003027,"71":0.012108,"72":0.015135,"73":0.006054,"74":0.012108,"75":0.021189,"76":0.03027,"77":0.051459,"78":2.08863,"79":1.728417,"80":0.039351,"81":0},C:{"2":0,"3":0.015135,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.006054,"33":0,"34":0,"35":0.003027,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.003027,"43":0.006054,"44":0,"45":0.003027,"46":0,"47":0.015135,"48":0.006054,"49":0.003027,"50":0,"51":0,"52":0.003027,"53":0,"54":0,"55":0,"56":0.003027,"57":0,"58":0,"59":0,"60":0.003027,"61":0,"62":0,"63":0,"64":0,"65":0.006054,"66":0,"67":0,"68":0.048432,"69":0.006054,"70":0.538806,"71":1.147233,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.003027,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.012108,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.036324,"44":0,"45":0.009081,"46":0.006054,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006054,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.003027,"64":0.021189,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.015135},E:{"4":0,"5":0,"6":0,"7":0,"8":0.006054,"9":0,"10":0.018162,"11":0.003027,"12":0.003027,"13":0.139242,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.003027,"10.1":0.015135,"11.1":0.015135,"12.1":0.15135},G:{"8":0.0004183502350235,"3.2":0.001673400940094,"4.0-4.1":0.000836700470047,"4.2-4.3":0,"5.0-5.1":0.002510101410141,"6.0-6.1":0.000836700470047,"7.0-7.1":0.0029284516451645,"8.1-8.4":0.0054385530553055,"9.0-9.2":0.005020202820282,"9.3":0.053130479847985,"10.0-10.2":0.018407410341034,"10.3":0.059405733373337,"11.0-11.2":0.05020202820282,"11.3-11.4":0.089526950295029,"12.0-12.1":0.12801517191719,"12.2-12.4":0.90614660906091,"13.0-13.1":1.3157114891489,"13.2":0.59907753655366,"13.3":0.94379813021302},I:{"3":0.0045626197183099,"4":0.019771352112676,_:"76","2.1":0,"2.2":0.0030417464788732,"2.3":0.0030417464788732,"4.1":0.034980084507042,"4.2-4.3":0.76499923943662,"4.4":0,"4.4.3-4.4.4":0.46538721126761},P:{"4":0.93503065116279,"5.0-5.4":0.040216372093023,"6.2-6.4":0.12064911627907,"7.2-7.4":0.432326,"8.2":0.040216372093023,"9.2":0.37200144186047,"10.1":0.65351604651163},B:{"12":0.009081,"13":0.027243,"14":0.021189,"15":0.009081,"16":0.006054,"17":0.075675,"18":0.124107,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.083565606741573,"9":0,"10":0.018570134831461,"11":0.17332125842697,"5.5":0},N:{"10":0.0453245,"11":0.1359735},J:{"7":0,"10":0.034865},R:{_:"0"},M:{"0":0.160379},O:{"0":1.290005},Q:{"1.2":0.034865},S:{"2.5":0},H:{"0":3.1423548934708},L:{"0":77.077568}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KN.js new file mode 100644 index 0000000..7e74ab0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01021,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.025525,"50":0.005105,"51":0,"52":0,"53":0,"54":0,"55":0.056155,"56":0,"57":0,"58":0.01021,"59":0,"60":0,"61":0,"62":0,"63":0.005105,"64":0.01021,"65":0.015315,"66":0,"67":0.005105,"68":0,"69":0.005105,"70":0.05105,"71":0.005105,"72":0,"73":0.015315,"74":0.066365,"75":0.025525,"76":0.04084,"77":0.08168,"78":8.346675,"79":4.364775,"80":0.01021,"81":0.005105},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.035735,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.005105,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.18378,"69":0.005105,"70":0.08168,"71":0.37777,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005105,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.005105,"52":0,"53":0,"54":0.005105,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01021,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.086785,"12":0.02042,"13":2.28704,_:"0","3.1":0,"3.2":0,"5.1":0.005105,"6.1":0,"7.1":0,"9.1":0.005105,"10.1":0.005105,"11.1":0.15315,"12.1":0.16336},G:{"8":0.0018137523752375,"3.2":0.0072550095009501,"4.0-4.1":0.003627504750475,"4.2-4.3":0,"5.0-5.1":0.010882514251425,"6.0-6.1":0.003627504750475,"7.0-7.1":0.012696266626663,"8.1-8.4":0.023578780878088,"9.0-9.2":0.02176502850285,"9.3":0.23034655165517,"10.0-10.2":0.079805104510451,"10.3":0.25755283728373,"11.0-11.2":0.2176502850285,"11.3-11.4":0.38814300830083,"12.0-12.1":0.55500822682268,"12.2-12.4":3.9285876447645,"13.0-13.1":5.704251220122,"13.2":2.5972934013401,"13.3":4.0918253585359},I:{"3":0.0084447183098592,"4":0.036593779342723,_:"76","2.1":0,"2.2":0.0056298122065728,"2.3":0.0056298122065728,"4.1":0.064742840375587,"4.2-4.3":1.4158977699531,"4.4":0,"4.4.3-4.4.4":0.86136126760563},P:{"4":0.076893897637795,"5.0-5.4":0,"6.2-6.4":0.02196968503937,"7.2-7.4":0.076893897637795,"8.2":0.02196968503937,"9.2":0.10984842519685,"10.1":2.4825744094488},B:{"12":0.005105,"13":0.005105,"14":0.03063,"15":0.03063,"16":0.01021,"17":0.11231,"18":1.36814,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":5.07437,"5.5":0},N:{"10":0,"11":0.014685},J:{"7":0,"10":0.71467},R:{_:"0"},M:{"0":0.465025},O:{"0":0.08811},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.53294102233677},L:{"0":49.18885}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KP.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KP.js new file mode 100644 index 0000000..3581e8f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KP.js @@ -0,0 +1 @@ +module.exports={D:{"63":1.56366,"69":0.11186,"71":0.22372,"72":0.22372,"75":0.11186,"76":1.56366,"77":2.79412,"78":5.69772,"79":1.78738,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 73 74 80 81"},C:{"52":0.5593,"57":0.11186,"68":0.67116,"69":0.33558,"70":0.89488,"71":1.4518,"72":0.33558,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 73 3.5 3.6"},F:{"53":0.33558,"64":1.67552,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.11186,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.11186},G:{"8":0.00062337833783378,"3.2":0.0024935133513351,"4.0-4.1":0.0012467566756676,"4.2-4.3":0,"5.0-5.1":0.0037402700270027,"6.0-6.1":0.0012467566756676,"7.0-7.1":0.0043636483648365,"8.1-8.4":0.0081039183918392,"9.0-9.2":0.0074805400540054,"9.3":0.07916904890489,"10.0-10.2":0.027428646864686,"10.3":0.088519723972397,"11.0-11.2":0.074805400540054,"11.3-11.4":0.13340296429643,"12.0-12.1":0.19075377137714,"12.2-12.4":1.350237479748,"13.0-13.1":1.9605248724872,"13.2":0.89267777977798,"13.3":1.406341530153},I:{"3":0.00040246478873239,"4":0.001744014084507,_:"76","2.1":0,"2.2":0.00026830985915493,"2.3":0.00026830985915493,"4.1":0.0030855633802817,"4.2-4.3":0.067479929577465,"4.4":0,"4.4.3-4.4.4":0.041051408450704},P:{"4":3.5932048375451,"5.0-5.4":0.12987487364621,"6.2-6.4":0.15152068592058,"7.2-7.4":1.0173531768953,"8.2":0.11246734177215,"9.2":0.5827853164557,"10.1":0.11246734177215},B:{"16":0.22372,"18":0.44744,_:"12 13 14 15 17 76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.78302,_:"6 7 8 9 10 5.5"},N:{"10":0.241344,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.2286},O:{"0":8.77824},Q:{_:"1.2"},S:{_:"2.5"},H:{"0":0},L:{"0":59.92368}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KR.js new file mode 100644 index 0000000..a1c4295 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KR.js @@ -0,0 +1 @@ +module.exports={D:{"31":0.4028,"36":0.01007,"38":0.01007,"42":0.025175,"49":0.226575,"53":0.005035,"55":0.01007,"56":0.01007,"57":0.005035,"58":0.005035,"59":0.16112,"60":0.01007,"61":0.02014,"62":0.01007,"63":0.065455,"64":0.01007,"65":0.02014,"66":0.015105,"67":0.04028,"68":0.025175,"69":0.045315,"70":0.176225,"71":0.22154,"72":0.17119,"73":0.12084,"74":0.06042,"75":0.105735,"76":0.11077,"77":0.236645,"78":16.89746,"79":15.220805,"80":0.015105,"81":0.015105,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 39 40 41 43 44 45 46 47 48 50 51 52 54"},C:{"48":0.005035,"52":0.02014,"54":0.075525,"55":0.005035,"56":0.01007,"60":0.01007,"63":0.025175,"64":0.02014,"65":0.015105,"66":0.01007,"68":0.01007,"69":0.005035,"70":0.13091,"71":0.43301,"72":0.005035,"73":0.005035,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 57 58 59 61 62 67 3.5 3.6"},F:{"56":0.005035,"57":0.01007,"58":0.03021,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 60 62 63 64 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.015105,"9":0.005035,"10":0.005035,"11":0.025175,"12":0.085595,"13":1.007,_:"0 5 6 7 3.1 3.2 5.1 6.1 7.1","9.1":0.015105,"10.1":0.06042,"11.1":0.085595,"12.1":0.28196},G:{"8":0.0010680783078308,"3.2":0.0042723132313231,"4.0-4.1":0.0021361566156616,"4.2-4.3":0,"5.0-5.1":0.0064084698469847,"6.0-6.1":0.0021361566156616,"7.0-7.1":0.0074765481548155,"8.1-8.4":0.0138850180018,"9.0-9.2":0.012816939693969,"9.3":0.13564594509451,"10.0-10.2":0.046995445544554,"10.3":0.15166711971197,"11.0-11.2":0.12816939693969,"11.3-11.4":0.22856875787579,"12.0-12.1":0.32683196219622,"12.2-12.4":2.3134576147615,"13.0-13.1":3.3591062781278,"13.2":1.5294881368137,"13.3":2.4095846624662},I:{"3":0.00012237676056338,"4":0.00053029929577465,_:"76","2.1":0,"2.2":0.000081584507042254,"2.3":0.000081584507042254,"4.1":0.00093822183098592,"4.2-4.3":0.020518503521127,"4.4":0,"4.4.3-4.4.4":0.012482429577465},P:{"4":0.10097130541872,"5.0-5.4":0.080777044334975,"6.2-6.4":0.030291391625616,"7.2-7.4":0.12116556650246,"8.2":0.16155408866995,"9.2":0.6462163546798,"10.1":10.995775160099},B:{"13":0.005035,"14":0.01007,"15":0.01007,"16":0.025175,"17":0.16112,"18":2.139875,_:"12 76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.055598292682927,"9":0.010108780487805,"10":0.080870243902439,"11":7.7281626829268,_:"6 7 5.5"},N:{"10":0.241344,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.153915},O:{"0":0.104265},Q:{"1.2":0.024825},S:{_:"2.5"},H:{"0":0.11751353092784},L:{"0":20.70665}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KW.js new file mode 100644 index 0000000..cf3a4e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.003452,"32":0,"33":0,"34":0,"35":0,"36":0.006904,"37":0,"38":0.003452,"39":0,"40":0,"41":0,"42":0,"43":0.010356,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.10356,"50":0,"51":0.003452,"52":0,"53":0,"54":0.006904,"55":0.003452,"56":0.003452,"57":0.003452,"58":0.006904,"59":0,"60":0,"61":0,"62":0.003452,"63":0.027616,"64":0,"65":0.020712,"66":0.006904,"67":0.024164,"68":0.003452,"69":0.062136,"70":0.01726,"71":0.024164,"72":0.03452,"73":0.031068,"74":0.03452,"75":0.041424,"76":0.072492,"77":0.079396,"78":3.880048,"79":3.162032,"80":0.010356,"81":0.003452},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003452,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.003452,"44":0,"45":0,"46":0,"47":0.003452,"48":0.027616,"49":0,"50":0,"51":0,"52":0.031068,"53":0.003452,"54":0,"55":0,"56":0.003452,"57":0,"58":0,"59":0,"60":0.003452,"61":0,"62":0,"63":0.006904,"64":0.003452,"65":0.006904,"66":0.003452,"67":0.006904,"68":0.06904,"69":0.010356,"70":0.196764,"71":0.538512,"72":0.006904,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.003452,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.024164,"46":0.020712,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.003452,"54":0,"55":0.010356,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.003452,"64":0.006904,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.01726,"9":0.006904,"10":0.010356,"11":0.024164,"12":0.079396,"13":0.900972,_:"0","3.1":0,"3.2":0,"5.1":0.048328,"6.1":0,"7.1":0,"9.1":0.01726,"10.1":0.072492,"11.1":0.113916,"12.1":0.214024},G:{"8":0.002506802680268,"3.2":0.010027210721072,"4.0-4.1":0.0050136053605361,"4.2-4.3":0,"5.0-5.1":0.015040816081608,"6.0-6.1":0.0050136053605361,"7.0-7.1":0.017547618761876,"8.1-8.4":0.032588434843484,"9.0-9.2":0.030081632163216,"9.3":0.31836394039404,"10.0-10.2":0.11029931793179,"10.3":0.35596598059806,"11.0-11.2":0.30081632163216,"11.3-11.4":0.53645577357736,"12.0-12.1":0.76708162016202,"12.2-12.4":5.4297346054605,"13.0-13.1":7.8838944294429,"13.2":3.5897414381438,"13.3":5.6553468466847},I:{"3":0.00038732394366197,"4":0.0016784037558685,_:"76","2.1":0,"2.2":0.00025821596244131,"2.3":0.00025821596244131,"4.1":0.0029694835680751,"4.2-4.3":0.064941314553991,"4.4":0,"4.4.3-4.4.4":0.039507042253521},P:{"4":0.5310031565762,"5.0-5.4":0.030634797494781,"6.2-6.4":0.081692793319415,"7.2-7.4":0.23486678079332,"8.2":0.18380878496868,"9.2":0.66375394572025,"10.1":3.1247493444676},B:{"12":0.003452,"13":0.003452,"14":0.006904,"15":0.006904,"16":0.01726,"17":0.065588,"18":0.44876,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.017372810457516,"9":0,"10":0.0034745620915033,"11":0.51076062745098,"5.5":0},N:{"10":0,"11":0.006548},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.137508},O:{"0":5.506868},Q:{"1.2":0.019644},S:{"2.5":0},H:{"0":2.4238963367698},L:{"0":45.341664}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KY.js new file mode 100644 index 0000000..daa119f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01108,"37":0,"38":0.00554,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06094,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00554,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00554,"64":0,"65":0.00554,"66":0.01108,"67":0.01108,"68":0.00554,"69":0.01662,"70":0.20498,"71":0.50414,"72":0.0277,"73":0.0277,"74":0.03324,"75":0.03324,"76":0.04986,"77":0.09972,"78":11.2462,"79":6.27682,"80":0.00554,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.04432,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00554,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00554,"52":0.01108,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00554,"61":0,"62":0,"63":0.01108,"64":0.1939,"65":0,"66":0,"67":0.00554,"68":0.10526,"69":0.08864,"70":0.42658,"71":0.96396,"72":0.04986,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00554,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.19944,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00554,"12":0.16066,"13":3.35724,_:"0","3.1":0,"3.2":0,"5.1":0.03324,"6.1":0,"7.1":0,"9.1":0.01662,"10.1":0.03878,"11.1":0.09972,"12.1":0.43766},G:{"8":0.0031060306030603,"3.2":0.012424122412241,"4.0-4.1":0.0062120612061206,"4.2-4.3":0,"5.0-5.1":0.018636183618362,"6.0-6.1":0.0062120612061206,"7.0-7.1":0.021742214221422,"8.1-8.4":0.040378397839784,"9.0-9.2":0.037272367236724,"9.3":0.39446588658866,"10.0-10.2":0.13666534653465,"10.3":0.44105634563456,"11.0-11.2":0.37272367236724,"11.3-11.4":0.66469054905491,"12.0-12.1":0.95044536453645,"12.2-12.4":6.7276622862286,"13.0-13.1":9.7684662466247,"13.2":4.4478358235824,"13.3":7.007205040504},I:{"3":0.0013383802816901,"4":0.0057996478873239,_:"76","2.1":0,"2.2":0.00089225352112676,"2.3":0.00089225352112676,"4.1":0.010260915492958,"4.2-4.3":0.22440176056338,"4.4":0,"4.4.3-4.4.4":0.13651478873239},P:{"4":0.063521749502982,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.021173916500994,"8.2":0.021173916500994,"9.2":0.10586958250497,"10.1":5.0817399602386},B:{"12":0,"13":0.03324,"14":0.0831,"15":0.02216,"16":0.0831,"17":0.1939,"18":2.57056,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00554,"11":0.90302,"5.5":0},N:{"10":0,"11":0.00892},J:{"7":0,"10":0.02676},R:{_:"0"},M:{"0":0.3568},O:{"0":0.74482},Q:{"1.2":0.00446},S:{"2.5":0},H:{"0":0.054891718213058},L:{"0":29.74938}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/KZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/KZ.js new file mode 100644 index 0000000..34f6347 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/KZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00722,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0361,"37":0,"38":0.00722,"39":0,"40":0.02166,"41":0,"42":0,"43":0,"44":0,"45":0.02166,"46":0.00722,"47":0.00722,"48":0.00722,"49":0.29602,"50":0.05054,"51":0.01444,"52":0,"53":0.01444,"54":0,"55":0.02166,"56":0.0361,"57":0.02888,"58":0.05054,"59":0.02166,"60":0.02888,"61":0.02166,"62":0.00722,"63":0.26714,"64":0.05054,"65":0.02888,"66":0.0361,"67":0.05054,"68":0.05776,"69":0.11552,"70":0.15162,"71":0.1805,"72":0.2166,"73":0.27436,"74":0.22382,"75":0.18772,"76":0.33934,"77":0.80142,"78":17.19804,"79":14.2234,"80":0.02888,"81":0.01444},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00722,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00722,"41":0.00722,"42":0.00722,"43":0.01444,"44":0,"45":0.00722,"46":0.00722,"47":0.00722,"48":0.20938,"49":0,"50":0.00722,"51":0.00722,"52":0.1805,"53":0.00722,"54":0.00722,"55":0.00722,"56":0.05776,"57":0.02888,"58":0.00722,"59":0.00722,"60":0.00722,"61":0.02166,"62":0.01444,"63":0.01444,"64":0.02166,"65":0.00722,"66":0.02888,"67":0.02166,"68":0.22382,"69":0.08664,"70":0.51262,"71":1.55952,"72":0.02166,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00722,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.01444,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0722,"37":0.00722,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00722,"54":0,"55":0.00722,"56":0,"57":0,"58":0.00722,"60":0,"62":0.00722,"63":0.01444,"64":0.15884,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.19494,"12.1":0.01444},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00722,"11":0.01444,"12":0.1083,"13":1.07578,_:"0","3.1":0,"3.2":0,"5.1":0.04332,"6.1":0.00722,"7.1":0,"9.1":0.00722,"10.1":0.02166,"11.1":0.08664,"12.1":0.31768},G:{"8":0.00091297329732973,"3.2":0.0036518931893189,"4.0-4.1":0.0018259465946595,"4.2-4.3":0,"5.0-5.1":0.0054778397839784,"6.0-6.1":0.0018259465946595,"7.0-7.1":0.0063908130813081,"8.1-8.4":0.011868652865287,"9.0-9.2":0.010955679567957,"9.3":0.11594760876088,"10.0-10.2":0.040170825082508,"10.3":0.12964220822082,"11.0-11.2":0.10955679567957,"11.3-11.4":0.19537628562856,"12.0-12.1":0.2793698289829,"12.2-12.4":1.9775001620162,"13.0-13.1":2.871301020102,"13.2":1.3073777617762,"13.3":2.0596677587759},I:{"3":0.0008530985915493,"4":0.0036967605633803,_:"76","2.1":0,"2.2":0.0005687323943662,"2.3":0.0005687323943662,"4.1":0.0065404225352113,"4.2-4.3":0.1430361971831,"4.4":0,"4.4.3-4.4.4":0.087016056338028},P:{"4":0.27201744,"5.0-5.4":0.02014944,"6.2-6.4":0.0503736,"7.2-7.4":0.11082192,"8.2":0.04029888,"9.2":0.4029888,"10.1":1.6119552},B:{"12":0.00722,"13":0.00722,"14":0.01444,"15":0.00722,"16":0.06498,"17":0.09386,"18":0.62814,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0077078378378378,"7":0,"8":0.038539189189189,"9":0.0077078378378378,"10":0.023123513513514,"11":0.49330162162162,"5.5":0},N:{"10":0,"11":0.03058},J:{"7":0,"10":0.00834},R:{_:"0"},M:{"0":0.07506},O:{"0":0.5838},Q:{"1.2":0.02224},S:{"2.5":0},H:{"0":0.3000393814433},L:{"0":31.93944}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LA.js new file mode 100644 index 0000000..72ca136 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.012828,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.004276,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.008552,"27":0,"28":0.004276,"29":0,"30":0.004276,"31":0,"32":0,"33":0.012828,"34":0.004276,"35":0,"36":0.012828,"37":0.004276,"38":0.008552,"39":0.012828,"40":0.02138,"41":0.012828,"42":0.008552,"43":0.1069,"44":0.012828,"45":0.017104,"46":0.02138,"47":0.02138,"48":0.02138,"49":0.166764,"50":0.025656,"51":0.034208,"52":0.017104,"53":0.02138,"54":0.025656,"55":0.025656,"56":0.02138,"57":0.02138,"58":0.029932,"59":0.02138,"60":0.034208,"61":0.038484,"62":0.076968,"63":0.124004,"64":0.012828,"65":0.012828,"66":0.004276,"67":0.008552,"68":0.008552,"69":0.029932,"70":0.025656,"71":0.179592,"72":0.012828,"73":0.051312,"74":0.183868,"75":0.068416,"76":0.098348,"77":0.141108,"78":5.635768,"79":5.533144,"80":0.029932,"81":0},C:{"2":0,"3":0.004276,"4":0.004276,"5":0,"6":0,"7":0.004276,"8":0,"9":0,"10":0.004276,"11":0.004276,"12":0.004276,"13":0,"14":0.004276,"15":0.004276,"16":0.004276,"17":0.004276,"18":0.004276,"19":0.004276,"20":0.008552,"21":0.004276,"22":0,"23":0,"24":0.004276,"25":0,"26":0.004276,"27":0,"28":0,"29":0.004276,"30":0.004276,"31":0.008552,"32":0,"33":0.004276,"34":0.004276,"35":0.004276,"36":0.004276,"37":0,"38":0.008552,"39":0.008552,"40":0.008552,"41":0.008552,"42":0.008552,"43":0.012828,"44":0.012828,"45":0.012828,"46":0.008552,"47":0.025656,"48":0.025656,"49":0.012828,"50":0.012828,"51":0.034208,"52":0.051312,"53":0.034208,"54":0.02138,"55":0.029932,"56":0.038484,"57":0.029932,"58":0.012828,"59":0.008552,"60":0.008552,"61":0,"62":0,"63":0,"64":0,"65":0.004276,"66":0.004276,"67":0.025656,"68":0.06414,"69":0.025656,"70":0.226628,"71":0.98348,"72":0.089796,"73":0,"3.5":0,"3.6":0.004276},F:{"9":0,"11":0.004276,"12":0.004276,"15":0.008552,"16":0,"17":0.004276,"18":0,"19":0.004276,"20":0.004276,"21":0.004276,"22":0,"23":0,"24":0,"25":0,"26":0.004276,"27":0.004276,"28":0.004276,"29":0.004276,"30":0.004276,"31":0.004276,"32":0.008552,"33":0.004276,"34":0.008552,"35":0.004276,"36":0.008552,"37":0.025656,"38":0,"39":0.004276,"40":0,"41":0.004276,"42":0.004276,"43":0.004276,"44":0.004276,"45":0.004276,"46":0.008552,"47":0,"48":0.004276,"49":0,"50":0,"51":0,"52":0,"53":0.004276,"54":0,"55":0.004276,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.008552,"9.5-9.6":0,"10.0-10.1":0.004276,"10.5":0,"10.6":0,"11.1":0.004276,"11.5":0,"11.6":0.004276,"12.1":0.017104},E:{"4":0,"5":0.004276,"6":0.004276,"7":0.004276,"8":0.008552,"9":0.008552,"10":0.008552,"11":0.02138,"12":0.072692,"13":0.380564,_:"0","3.1":0,"3.2":0,"5.1":0.008552,"6.1":0,"7.1":0,"9.1":0.012828,"10.1":0.038484,"11.1":0.08552,"12.1":0.132556},G:{"8":0.0021108258825883,"3.2":0.008443303530353,"4.0-4.1":0.0042216517651765,"4.2-4.3":0,"5.0-5.1":0.01266495529553,"6.0-6.1":0.0042216517651765,"7.0-7.1":0.014775781178118,"8.1-8.4":0.027440736473647,"9.0-9.2":0.025329910591059,"9.3":0.26807488708871,"10.0-10.2":0.092876338833883,"10.3":0.29973727532753,"11.0-11.2":0.25329910591059,"11.3-11.4":0.45171673887389,"12.0-12.1":0.64591272007201,"12.2-12.4":4.5720488616862,"13.0-13.1":6.6385474007401,"13.2":3.0227026638664,"13.3":4.7620231911191},I:{"3":0.0018467605633803,"4":0.0080026291079812,_:"76","2.1":0,"2.2":0.0012311737089202,"2.3":0.0012311737089202,"4.1":0.014158497652582,"4.2-4.3":0.30964018779343,"4.4":0,"4.4.3-4.4.4":0.18836957746479},P:{"4":2.3714250491803,"5.0-5.4":0.060805770491803,"6.2-6.4":0.13174583606557,"7.2-7.4":0.48644616393443,"8.2":0.19255160655738,"9.2":1.1046381639344,"10.1":3.0605571147541},B:{"12":0.012828,"13":0.02138,"14":0.02138,"15":0.012828,"16":0.017104,"17":0.038484,"18":0.47036,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.004463956043956,"7":0,"8":0.12499076923077,"9":0.080351208791209,"10":0.026783736263736,"11":0.16963032967033,"5.5":0},N:{"10":0.15145394594595,"11":0.35798205405405},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.188892},O:{"0":0.732672},Q:{"1.2":0.280476},S:{"2.5":0},H:{"0":0.56900690721649},L:{"0":46.669252}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LB.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LB.js new file mode 100644 index 0000000..0ffec71 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LB.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.005925,"34":0,"35":0,"36":0.005925,"37":0,"38":0.005925,"39":0,"40":0,"41":0,"42":0,"43":0.01185,"44":0,"45":0,"46":0.005925,"47":0,"48":0,"49":0.148125,"50":0,"51":0.005925,"52":0,"53":0.005925,"54":0,"55":0.005925,"56":0.005925,"57":0.005925,"58":0.017775,"59":0.0237,"60":0.005925,"61":0,"62":0.005925,"63":0.0237,"64":0.005925,"65":0.0237,"66":0.0237,"67":0.0474,"68":0.0237,"69":0.03555,"70":0.05925,"71":0.05925,"72":0.0474,"73":0.053325,"74":0.136275,"75":0.065175,"76":0.08295,"77":0.1659,"78":8.3424,"79":7.0863,"80":0.0237,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.005925,"48":0.03555,"49":0.005925,"50":0,"51":0,"52":0.017775,"53":0,"54":0,"55":0.005925,"56":0.005925,"57":0.005925,"58":0.017775,"59":0,"60":0.005925,"61":0.005925,"62":0,"63":0,"64":0.005925,"65":0.005925,"66":0.01185,"67":0.0237,"68":0.077025,"69":0.03555,"70":0.503625,"71":1.226475,"72":0.029625,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.005925,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01185,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01185,"64":0.01185,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.005925,"6":0,"7":0.005925,"8":0.242925,"9":0.065175,"10":0.08295,"11":0.088875,"12":0.1896,"13":1.12575,_:"0","3.1":0,"3.2":0,"5.1":11.464875,"6.1":0,"7.1":0,"9.1":0.0237,"10.1":0.15405,"11.1":0.3081,"12.1":0.562875},G:{"8":0.0011161191119112,"3.2":0.0044644764476448,"4.0-4.1":0.0022322382238224,"4.2-4.3":0,"5.0-5.1":0.0066967146714671,"6.0-6.1":0.0022322382238224,"7.0-7.1":0.0078128337833783,"8.1-8.4":0.014509548454845,"9.0-9.2":0.013393429342934,"9.3":0.14174712721272,"10.0-10.2":0.049109240924092,"10.3":0.15848891389139,"11.0-11.2":0.13393429342934,"11.3-11.4":0.23884948994899,"12.0-12.1":0.34153244824482,"12.2-12.4":2.4175139963996,"13.0-13.1":3.5101946069607,"13.2":1.5982825682568,"13.3":2.5179647164716},I:{"3":0.00055818661971831,"4":0.002418808685446,_:"76","2.1":0,"2.2":0.00037212441314554,"2.3":0.00037212441314554,"4.1":0.0042794307511737,"4.2-4.3":0.093589289906103,"4.4":0,"4.4.3-4.4.4":0.056935035211268},P:{"4":0.42517263157895,"5.0-5.4":0.050615789473684,"6.2-6.4":0.11135473684211,"7.2-7.4":0.19234,"8.2":0.070862105263158,"9.2":0.46566526315789,"10.1":4.4440663157895},B:{"12":0.0237,"13":0.01185,"14":0.01185,"15":0.03555,"16":0.03555,"17":0.1422,"18":0.74655,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.074147142857143,"9":0.0061789285714286,"10":0.018536785714286,"11":0.33366214285714,"5.5":0},N:{"10":0,"11":0.00815},J:{"7":0,"10":0.004075},R:{_:"0"},M:{"0":0.101875},O:{"0":0.541975},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.34721520618557},L:{"0":43.1233}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LC.js new file mode 100644 index 0000000..fcc55b3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004117,"37":0,"38":0.008234,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.004117,"49":0.045287,"50":0,"51":0,"52":0,"53":0.024702,"54":0,"55":0.004117,"56":0,"57":0,"58":0.008234,"59":0,"60":0.004117,"61":0,"62":0,"63":0.04117,"64":0,"65":0.008234,"66":0.004117,"67":0.012351,"68":0.008234,"69":0.090574,"70":0.008234,"71":0.020585,"72":0.004117,"73":0.057638,"74":0.04117,"75":0.049404,"76":0.074106,"77":0.144095,"78":5.784385,"79":3.590024,"80":0.016468,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.004117,"49":0,"50":0,"51":0,"52":0.008234,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.012351,"61":0,"62":0,"63":0,"64":0.012351,"65":0.004117,"66":0.004117,"67":0.008234,"68":0.131744,"69":0.012351,"70":0.308775,"71":0.588731,"72":0.012351,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.004117,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.028819,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.020585,"12":0.016468,"13":0.761645,_:"0","3.1":0,"3.2":0,"5.1":0.078223,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004117,"11.1":0.016468,"12.1":0.135861},G:{"8":0.0010654839483948,"3.2":0.0042619357935794,"4.0-4.1":0.0021309678967897,"4.2-4.3":0,"5.0-5.1":0.006392903690369,"6.0-6.1":0.0021309678967897,"7.0-7.1":0.0074583876387639,"8.1-8.4":0.013851291329133,"9.0-9.2":0.012785807380738,"9.3":0.13531646144614,"10.0-10.2":0.046881293729373,"10.3":0.15129872067207,"11.0-11.2":0.12785807380738,"11.3-11.4":0.2280135649565,"12.0-12.1":0.32603808820882,"12.2-12.4":2.3078382322232,"13.0-13.1":3.3509470177018,"13.2":1.5257730141014,"13.3":2.4037317875788},I:{"3":0.0040716830985915,"4":0.017643960093897,_:"76","2.1":0,"2.2":0.002714455399061,"2.3":0.002714455399061,"4.1":0.031216237089202,"4.2-4.3":0.68268553286385,"4.4":0,"4.4.3-4.4.4":0.41531167605634},P:{"4":0.22327725796662,"5.0-5.4":0.010632250379363,"6.2-6.4":0.031896751138088,"7.2-7.4":0.47845126707132,"8.2":0.074425752655539,"9.2":0.20201275720789,"10.1":5.9859569635812},B:{"12":0.004117,"13":0.004117,"14":0.016468,"15":0.016468,"16":0.049404,"17":0.127627,"18":0.885155,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.325243,"5.5":0},N:{"10":0,"11":0.041181},J:{"7":0,"10":0.023532},R:{_:"0"},M:{"0":0.347097},O:{"0":0.229437},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.29519114948454},L:{"0":63.195778}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LI.js new file mode 100644 index 0000000..ffd4aa5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.014142,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.014142,"59":0.007071,"60":0,"61":0.007071,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.063639,"68":0.028284,"69":0.176775,"70":0.014142,"71":0.007071,"72":0.007071,"73":0.106065,"74":0.014142,"75":0.14142,"76":0.622248,"77":0.205059,"78":11.589369,"79":6.865941,"80":0.014142,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.007071,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.247485,"46":0,"47":0,"48":0.091923,"49":0.007071,"50":0,"51":0,"52":0.487899,"53":0,"54":0,"55":0,"56":0,"57":0.007071,"58":0,"59":0.007071,"60":0.247485,"61":0,"62":0.014142,"63":0,"64":0,"65":0.007071,"66":0.155562,"67":0.07071,"68":0.289911,"69":0.035355,"70":1.456626,"71":3.768843,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.007071,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.007071,"10":0,"11":0.049497,"12":0.268698,"13":6.307332,_:"0","3.1":0,"3.2":0,"5.1":0.007071,"6.1":0.007071,"7.1":0,"9.1":0.226272,"10.1":0.091923,"11.1":0.459615,"12.1":0.770739},G:{"8":0.0028879593959396,"3.2":0.011551837583758,"4.0-4.1":0.0057759187918792,"4.2-4.3":0,"5.0-5.1":0.017327756375638,"6.0-6.1":0.0057759187918792,"7.0-7.1":0.020215715771577,"8.1-8.4":0.037543472147215,"9.0-9.2":0.034655512751275,"9.3":0.36677084328433,"10.0-10.2":0.12707021342134,"10.3":0.41009023422342,"11.0-11.2":0.34655512751275,"11.3-11.4":0.61802331073107,"12.0-12.1":0.88371557515752,"12.2-12.4":6.2553200516052,"13.0-13.1":9.08263230023,"13.2":4.1355578549855,"13.3":6.5152363972397},I:{"3":0.00029450352112676,"4":0.0012761819248826,_:"76","2.1":0,"2.2":0.00019633568075117,"2.3":0.00019633568075117,"4.1":0.0022578603286385,"4.2-4.3":0.04937842370892,"4.4":0,"4.4.3-4.4.4":0.03003935915493},P:{"4":0.074323375,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.010617625,"8.2":0,"9.2":0.010617625,"10.1":2.8455235},B:{"12":0,"13":0,"14":0.021213,"15":0.007071,"16":0.028284,"17":0.148491,"18":4.129464,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.028284,"9":0,"10":0,"11":4.801209,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.137663},O:{"0":0.002929},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.027729879725086},L:{"0":18.625607}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LK.js new file mode 100644 index 0000000..23389b5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003696,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.003696,"26":0,"27":0,"28":0,"29":0,"30":0.003696,"31":0.007392,"32":0.003696,"33":0.003696,"34":0,"35":0.003696,"36":0.011088,"37":0,"38":0.003696,"39":0,"40":0.011088,"41":0,"42":0,"43":0.007392,"44":0,"45":0,"46":0.003696,"47":0,"48":0,"49":0.07392,"50":0.003696,"51":0.003696,"52":0.003696,"53":0.003696,"54":0.003696,"55":0.003696,"56":0.003696,"57":0.003696,"58":0.014784,"59":0.003696,"60":0.007392,"61":0.003696,"62":0.003696,"63":0.040656,"64":0.011088,"65":0.011088,"66":0.007392,"67":0.014784,"68":0.011088,"69":0.070224,"70":0.022176,"71":0.025872,"72":0.033264,"73":0.029568,"74":0.070224,"75":0.044352,"76":0.07392,"77":0.099792,"78":4.95264,"79":4.390848,"80":0.014784,"81":0.003696},C:{"2":0,"3":0,"4":0,"5":0.003696,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003696,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.007392,"44":0,"45":0.003696,"46":0,"47":0.011088,"48":0.003696,"49":0.003696,"50":0,"51":0,"52":0.022176,"53":0,"54":0,"55":0,"56":0.003696,"57":0.003696,"58":0.003696,"59":0,"60":0.007392,"61":0.003696,"62":0.003696,"63":0,"64":0.007392,"65":0.003696,"66":0.007392,"67":0.011088,"68":0.066528,"69":0.033264,"70":0.269808,"71":0.909216,"72":0.048048,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.003696,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.003696,"33":0,"34":0.014784,"35":0,"36":0,"37":0.040656,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.007392,"46":0.007392,"47":0,"48":0,"49":0.003696,"50":0,"51":0,"52":0,"53":0.014784,"54":0.011088,"55":0.014784,"56":0,"57":0,"58":0.007392,"60":0,"62":0.003696,"63":0.007392,"64":0.01848,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.003696},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.003696,"11":0.011088,"12":0.029568,"13":0.24024,_:"0","3.1":0,"3.2":0,"5.1":0.011088,"6.1":0,"7.1":0,"9.1":0.003696,"10.1":0.01848,"11.1":0.022176,"12.1":0.085008},G:{"8":0.00071202160216022,"3.2":0.0028480864086409,"4.0-4.1":0.0014240432043204,"4.2-4.3":0,"5.0-5.1":0.0042721296129613,"6.0-6.1":0.0014240432043204,"7.0-7.1":0.0049841512151215,"8.1-8.4":0.0092562808280828,"9.0-9.2":0.0085442592259226,"9.3":0.090426743474347,"10.0-10.2":0.03132895049505,"10.3":0.10110706750675,"11.0-11.2":0.085442592259226,"11.3-11.4":0.15237262286229,"12.0-12.1":0.21787861026103,"12.2-12.4":1.542238790279,"13.0-13.1":2.2393079387939,"13.2":1.0196149342934,"13.3":1.6063207344734},I:{"3":0.0016380845070423,"4":0.0070983661971831,_:"76","2.1":0,"2.2":0.0010920563380282,"2.3":0.0010920563380282,"4.1":0.012558647887324,"4.2-4.3":0.27465216901408,"4.4":0,"4.4.3-4.4.4":0.16708461971831},P:{"4":2.5560295384615,"5.0-5.4":0.081467076923077,"6.2-6.4":0.15275076923077,"7.2-7.4":0.51935261538462,"8.2":0.24440123076923,"9.2":0.93687138461538,"10.1":1.853376},B:{"12":0.011088,"13":0.011088,"14":0.022176,"15":0.01848,"16":0.011088,"17":0.05544,"18":0.269808,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01848,"9":0,"10":0.003696,"11":0.088704,"5.5":0},N:{"10":0.01084288,"11":0.26022912},J:{"7":0,"10":0.012608},R:{_:"0"},M:{"0":0.132384},O:{"0":3.038528},Q:{"1.2":0.006304},S:{"2.5":0},H:{"0":3.5093133195876},L:{"0":60.539328}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LR.js new file mode 100644 index 0000000..d004384 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002861,"30":0.002861,"31":0,"32":0,"33":0.002861,"34":0,"35":0,"36":0.005722,"37":0.002861,"38":0.002861,"39":0.002861,"40":0.002861,"41":0,"42":0.002861,"43":0.011444,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.034332,"50":0.005722,"51":0.002861,"52":0.002861,"53":0.002861,"54":0,"55":0.011444,"56":0.002861,"57":0,"58":0.002861,"59":0,"60":0.065803,"61":0.002861,"62":0,"63":0.040054,"64":0.022888,"65":0.022888,"66":0.002861,"67":0.005722,"68":0.002861,"69":0.097274,"70":0.008583,"71":0.005722,"72":0.005722,"73":0.017166,"74":0.025749,"75":0.022888,"76":0.051498,"77":0.051498,"78":1.7166,"79":1.178732,"80":0.002861,"81":0},C:{"2":0,"3":0,"4":0.002861,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.002861,"20":0,"21":0.002861,"22":0,"23":0,"24":0.002861,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.002861,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.002861,"43":0.005722,"44":0.002861,"45":0,"46":0,"47":0.020027,"48":0.005722,"49":0.002861,"50":0,"51":0,"52":0.008583,"53":0,"54":0,"55":0,"56":0.08583,"57":0,"58":0.002861,"59":0,"60":0.005722,"61":0,"62":0.002861,"63":0.002861,"64":0.002861,"65":0.002861,"66":0,"67":0.005722,"68":0.071525,"69":0.014305,"70":0.185965,"71":0.560756,"72":0.048637,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.002861,"17":0.002861,"18":0,"19":0,"20":0.034332,"21":0,"22":0,"23":0.045776,"24":0,"25":0,"26":0,"27":0.002861,"28":0.002861,"29":0.002861,"30":0,"31":0,"32":0.002861,"33":0,"34":0,"35":0,"36":0,"37":0.011444,"38":0.002861,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.048637,"46":0.017166,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.017166,"54":0.008583,"55":0.002861,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.011444,"64":0.008583,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.154494},E:{"4":0.005722,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.080108,"13":0.191687,_:"0","3.1":0,"3.2":0,"5.1":0.220297,"6.1":0,"7.1":0,"9.1":0.002861,"10.1":0.002861,"11.1":0.008583,"12.1":0.017166},G:{"8":0.00045589308930893,"3.2":0.0018235723572357,"4.0-4.1":0.00091178617861786,"4.2-4.3":0,"5.0-5.1":0.0027353585358536,"6.0-6.1":0.00091178617861786,"7.0-7.1":0.0031912516251625,"8.1-8.4":0.0059266101610161,"9.0-9.2":0.0054707170717072,"9.3":0.057898422342234,"10.0-10.2":0.020059295929593,"10.3":0.064736818681868,"11.0-11.2":0.054707170717072,"11.3-11.4":0.097561121112111,"12.0-12.1":0.13950328532853,"12.2-12.4":0.98746443144314,"13.0-13.1":1.4337837658766,"13.2":0.65283890389039,"13.3":1.0284948094809},I:{"3":0.0039286936619718,"4":0.017024339201878,_:"76","2.1":0,"2.2":0.0026191291079812,"2.3":0.0026191291079812,"4.1":0.030119984741784,"4.2-4.3":0.65871097065728,"4.4":0,"4.4.3-4.4.4":0.40072675352113},P:{"4":0.37788878947368,"5.0-5.4":0.15319815789474,"6.2-6.4":0.051066052631579,"7.2-7.4":0.11234531578947,"8.2":0.061279263157895,"9.2":0.40852842105263,"10.1":0.970255},B:{"12":0.042915,"13":0.037193,"14":0.022888,"15":0.025749,"16":0.022888,"17":0.051498,"18":0.503536,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.017166,"9":0,"10":0.017166,"11":0.274656,"5.5":0},N:{"10":0.01093159375,"11":0.33887940625},J:{"7":0,"10":0.042834},R:{_:"0"},M:{"0":0.278421},O:{"0":4.040674},Q:{"1.2":0.049973},S:{"2.5":0.185614},H:{"0":13.030858405498},L:{"0":61.052036}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LS.js new file mode 100644 index 0000000..3cf44f6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.003169,"36":0.012676,"37":0,"38":0,"39":0,"40":0.047535,"41":0.003169,"42":0,"43":0.015845,"44":0,"45":0.003169,"46":0.041197,"47":0,"48":0,"49":0.009507,"50":0.006338,"51":0,"52":0.003169,"53":0.003169,"54":0.003169,"55":0.03169,"56":0.006338,"57":0,"58":0.012676,"59":0,"60":0.053873,"61":0,"62":0,"63":0.145774,"64":0.003169,"65":0.047535,"66":0.015845,"67":0.003169,"68":0.003169,"69":0.076056,"70":0.012676,"71":0.015845,"72":0.022183,"73":0.019014,"74":0.047535,"75":0.082394,"76":0.041197,"77":0.050704,"78":2.272173,"79":1.283445,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0.003169,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.006338,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003169,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.003169,"44":0.003169,"45":0,"46":0.003169,"47":0.006338,"48":0,"49":0,"50":0,"51":0.003169,"52":0.006338,"53":0,"54":0,"55":0.003169,"56":0.003169,"57":0,"58":0,"59":0,"60":0.003169,"61":0,"62":0,"63":0.003169,"64":0,"65":0,"66":0.006338,"67":0.003169,"68":0.088732,"69":0.006338,"70":0.167957,"71":0.405632,"72":0.028521,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.003169,"18":0.003169,"19":0,"20":0.003169,"21":0.003169,"22":0.003169,"23":0.006338,"24":0.003169,"25":0,"26":0.015845,"27":0,"28":0.009507,"29":0.003169,"30":0.012676,"31":0.003169,"32":0.009507,"33":0,"34":0,"35":0.053873,"36":0,"37":0.003169,"38":0.006338,"39":0.003169,"40":0,"41":0,"42":0.003169,"43":0,"44":0,"45":0.025352,"46":0.006338,"47":0,"48":0,"49":0,"50":0.003169,"51":0,"52":0,"53":0.012676,"54":0.006338,"55":0.034859,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.009507,"64":0.006338,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.145774},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003169,"12":0.012676,"13":0.076056,_:"0","3.1":0,"3.2":0,"5.1":1.445064,"6.1":0.003169,"7.1":0,"9.1":0,"10.1":0.085563,"11.1":0.003169,"12.1":0.03169},G:{"8":0.00024449634963496,"3.2":0.00097798539853985,"4.0-4.1":0.00048899269926993,"4.2-4.3":0,"5.0-5.1":0.0014669780978098,"6.0-6.1":0.00048899269926993,"7.0-7.1":0.0017114744474447,"8.1-8.4":0.0031784525452545,"9.0-9.2":0.0029339561956196,"9.3":0.03105103640364,"10.0-10.2":0.010757839383938,"10.3":0.034718481648165,"11.0-11.2":0.029339561956196,"11.3-11.4":0.052322218821882,"12.0-12.1":0.074815882988299,"12.2-12.4":0.52957909330933,"13.0-13.1":0.76894101960196,"13.2":0.35011877267727,"13.3":0.55158376477648},I:{"3":0.0016256690140845,"4":0.0070445657276995,_:"76","2.1":0,"2.2":0.001083779342723,"2.3":0.001083779342723,"4.1":0.012463462441315,"4.2-4.3":0.27257050469484,"4.4":0,"4.4.3-4.4.4":0.16581823943662},P:{"4":1.7855330152672,"5.0-5.4":0.03060913740458,"6.2-6.4":0.071421320610687,"7.2-7.4":0.52035533587786,"8.2":0.11223350381679,"9.2":0.33670051145038,"10.1":1.1529441755725},B:{"12":0.028521,"13":0.022183,"14":0.041197,"15":0.015845,"16":0.117253,"17":0.12676,"18":0.465843,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.015845,"9":0,"10":0.006338,"11":0.25352,"5.5":0},N:{"10":0.0324162,"11":0.5618808},J:{"7":0,"10":0.081972},R:{_:"0"},M:{"0":0.266409},O:{"0":2.343033},Q:{"1.2":0.06831},S:{"2.5":0},H:{"0":17.784661082474},L:{"0":54.147555}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LT.js new file mode 100644 index 0000000..dcd63e7 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.05432,"30":0,"31":0.00679,"32":0,"33":0,"34":0.01358,"35":0,"36":0.00679,"37":0,"38":0.00679,"39":0.00679,"40":0,"41":0.00679,"42":0,"43":0.01358,"44":0.00679,"45":0.00679,"46":0.01358,"47":0.00679,"48":0.04074,"49":0.80122,"50":0.00679,"51":0.00679,"52":0.00679,"53":0.01358,"54":0.00679,"55":0.00679,"56":0.01358,"57":0.01358,"58":0.02716,"59":0.00679,"60":0.01358,"61":0.15617,"62":0.01358,"63":0.04753,"64":0.05432,"65":0.02037,"66":0.01358,"67":0.06111,"68":0.03395,"69":0.04074,"70":0.12901,"71":0.12222,"72":0.11543,"73":0.0679,"74":0.06111,"75":0.19012,"76":0.23086,"77":0.27839,"78":14.89047,"79":12.02509,"80":0.02037,"81":0.00679},C:{"2":0,"3":0.02716,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00679,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00679,"37":0,"38":0.00679,"39":0,"40":0,"41":0,"42":0.00679,"43":0.00679,"44":0.01358,"45":0.00679,"46":0,"47":0.01358,"48":0.02716,"49":0.00679,"50":0.01358,"51":0.03395,"52":0.21049,"53":0.01358,"54":0.00679,"55":0.00679,"56":0.05432,"57":0.01358,"58":0.00679,"59":0,"60":0.04753,"61":0.00679,"62":0.00679,"63":0.03395,"64":0.01358,"65":0.04074,"66":0.05432,"67":0.03395,"68":0.25802,"69":0.07469,"70":1.32405,"71":4.33881,"72":0.04753,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01358,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00679,"46":0.00679,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00679,"54":0.00679,"55":0.01358,"56":0,"57":0.00679,"58":0.03395,"60":0,"62":0.00679,"63":0.00679,"64":0.07469,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00679},E:{"4":0.03395,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00679,"11":0.02037,"12":0.09506,"13":1.60923,_:"0","3.1":0,"3.2":0,"5.1":0.19691,"6.1":0,"7.1":0,"9.1":0.02716,"10.1":0.06111,"11.1":0.11543,"12.1":0.34629},G:{"8":0.0010881608160816,"3.2":0.0043526432643264,"4.0-4.1":0.0021763216321632,"4.2-4.3":0,"5.0-5.1":0.0065289648964896,"6.0-6.1":0.0021763216321632,"7.0-7.1":0.0076171257125713,"8.1-8.4":0.014146090609061,"9.0-9.2":0.013057929792979,"9.3":0.13819642364236,"10.0-10.2":0.047879075907591,"10.3":0.15451883588359,"11.0-11.2":0.13057929792979,"11.3-11.4":0.23286641464146,"12.0-12.1":0.33297720972097,"12.2-12.4":2.3569563276328,"13.0-13.1":3.4222657665767,"13.2":1.5582462886289,"13.3":2.4548908010801},I:{"3":0.00092028169014084,"4":0.0039878873239437,_:"76","2.1":0,"2.2":0.00061352112676056,"2.3":0.00061352112676056,"4.1":0.0070554929577465,"4.2-4.3":0.15430056338028,"4.4":0,"4.4.3-4.4.4":0.093868732394366},P:{"4":0.17215016,"5.0-5.4":0.04050592,"6.2-6.4":0.02025296,"7.2-7.4":0.08101184,"8.2":0.04050592,"9.2":0.27341496,"10.1":3.1392088},B:{"12":0,"13":0.00679,"14":0.04074,"15":0.02716,"16":0.02716,"17":0.18333,"18":1.82651,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0080482867132867,"7":0,"8":0.53118692307692,"9":0.1207243006993,"10":0.20120716783217,"11":1.4406433216783,"5.5":0},N:{"10":0.013482,"11":0.053928},J:{"7":0,"10":0.00321},R:{_:"0"},M:{"0":0.17655},O:{"0":0.12198},Q:{"1.2":0.00642},S:{"2.5":0},H:{"0":0.22792654639175},L:{"0":35.67414}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LU.js new file mode 100644 index 0000000..9c47177 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.016818,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005606,"39":0,"40":0.022424,"41":0.005606,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.078484,"49":0.2803,"50":0,"51":0.005606,"52":0,"53":0.005606,"54":0,"55":0.005606,"56":0,"57":0,"58":0,"59":0.033636,"60":0.005606,"61":0.005606,"62":0.02803,"63":0.033636,"64":0.005606,"65":0.011212,"66":0.005606,"67":0.022424,"68":0.005606,"69":0.044848,"70":0.08409,"71":0.173786,"72":0.106514,"73":1.132412,"74":0.039242,"75":0.11212,"76":0.145756,"77":0.22424,"78":6.205842,"79":4.142834,"80":0.011212,"81":0.005606},C:{"2":0,"3":0.005606,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.02803,"22":0,"23":0,"24":0.005606,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.050454,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.044848,"46":0,"47":0.005606,"48":0.016818,"49":0,"50":0.033636,"51":0.005606,"52":0.151362,"53":0,"54":0,"55":0.011212,"56":0.016818,"57":0,"58":0.02803,"59":0,"60":0.246664,"61":0.005606,"62":0.005606,"63":0.044848,"64":0.044848,"65":0.2803,"66":0.044848,"67":0.016818,"68":0.880142,"69":0.072878,"70":0.947414,"71":2.309672,"72":0.011212,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005606,"37":0.011212,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.011212,"46":0.005606,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.033636,"54":0,"55":0.011212,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005606,"64":0.02803,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005606},E:{"4":0.005606,"5":0,"6":0,"7":0.005606,"8":0.005606,"9":0.011212,"10":0.005606,"11":0.039242,"12":0.128938,"13":3.301934,_:"0","3.1":0,"3.2":0,"5.1":2.063008,"6.1":0.005606,"7.1":0,"9.1":0.033636,"10.1":0.151362,"11.1":0.201816,"12.1":0.543782},G:{"8":0.0025598269826983,"3.2":0.010239307930793,"4.0-4.1":0.0051196539653965,"4.2-4.3":0,"5.0-5.1":0.01535896189619,"6.0-6.1":0.0051196539653965,"7.0-7.1":0.017918788878888,"8.1-8.4":0.033277750775078,"9.0-9.2":0.030717923792379,"9.3":0.32509802680268,"10.0-10.2":0.11263238723872,"10.3":0.36349543154315,"11.0-11.2":0.30717923792379,"11.3-11.4":0.54780297429743,"12.0-12.1":0.78330705670567,"12.2-12.4":5.5445852445245,"13.0-13.1":8.0506558605861,"13.2":3.6656722392239,"13.3":5.7749696729673},I:{"3":0.0011886478873239,"4":0.0051508075117371,_:"76","2.1":0,"2.2":0.00079243192488263,"2.3":0.00079243192488263,"4.1":0.0091129671361502,"4.2-4.3":0.19929662910798,"4.4":0,"4.4.3-4.4.4":0.12124208450704},P:{"4":0.38166176829268,"5.0-5.4":0.082521463414634,"6.2-6.4":0.041260731707317,"7.2-7.4":0.13409737804878,"8.2":0.051575914634146,"9.2":0.53638951219512,"10.1":3.7959873170732},B:{"12":0,"13":0,"14":0.022424,"15":0.033636,"16":0.033636,"17":0.123332,"18":1.351046,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.011390598230088,"7":0.66634999646018,"8":1.4864730690265,"9":0.017085897345133,"10":0.034171794690265,"11":1.0023726442478,"5.5":0},N:{"10":0,"11":0.008788},J:{"7":0,"10":0.030758},R:{_:"0"},M:{"0":0.672282},O:{"0":0.742586},Q:{"1.2":0.008788},S:{"2.5":0},H:{"0":0.49919463917526},L:{"0":32.750014}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LV.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LV.js new file mode 100644 index 0000000..d3f106a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LV.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.026672,"25":0,"26":0.006668,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.013336,"37":0,"38":0.013336,"39":0,"40":0.020004,"41":0.006668,"42":0,"43":0,"44":0,"45":0.013336,"46":0.013336,"47":0,"48":0,"49":0.606788,"50":0.006668,"51":0.020004,"52":0.020004,"53":0.026672,"54":0.006668,"55":0.013336,"56":0.013336,"57":0.040008,"58":0.026672,"59":0.120024,"60":0.080016,"61":0.146696,"62":0.006668,"63":0.026672,"64":0.013336,"65":0.020004,"66":0.060012,"67":0.040008,"68":0.020004,"69":0.046676,"70":0.060012,"71":0.093352,"72":0.093352,"73":0.086684,"74":0.080016,"75":0.173368,"76":0.260052,"77":0.43342,"78":15.809828,"79":10.648796,"80":0.026672,"81":0.006668},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.020004,"13":0.013336,"14":0,"15":0,"16":0.03334,"17":0.013336,"18":0,"19":0.020004,"20":0.013336,"21":0.046676,"22":0.03334,"23":0.020004,"24":0.020004,"25":0.03334,"26":0.03334,"27":0.03334,"28":0.03334,"29":0.03334,"30":0.06668,"31":0.06668,"32":0.06668,"33":0.013336,"34":0.013336,"35":0.013336,"36":0.013336,"37":0.026672,"38":0.020004,"39":0,"40":0,"41":0,"42":0.020004,"43":0.006668,"44":0,"45":0.006668,"46":0,"47":0.006668,"48":0.013336,"49":0,"50":0.086684,"51":0,"52":0.246716,"53":0,"54":0.006668,"55":0.013336,"56":0.026672,"57":0.020004,"58":0.020004,"59":0,"60":0.03334,"61":0.006668,"62":0.013336,"63":0.006668,"64":0.026672,"65":0.03334,"66":0.073348,"67":0.046676,"68":0.280056,"69":0.060012,"70":1.186904,"71":3.687404,"72":0.03334,"73":0.006668,"3.5":0,"3.6":0.006668},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.013336,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.013336,"37":0.013336,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006668,"46":0,"47":0,"48":0,"49":0.006668,"50":0,"51":0,"52":0,"53":0.006668,"54":0,"55":0.020004,"56":0,"57":0,"58":0.040008,"60":0,"62":0.013336,"63":0.013336,"64":0.086684,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.013336},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.020004,"11":0.026672,"12":0.146696,"13":2.06708,_:"0","3.1":0,"3.2":0,"5.1":0.006668,"6.1":0,"7.1":0,"9.1":0.006668,"10.1":0.040008,"11.1":0.206708,"12.1":0.426752},G:{"8":0.0014769400940094,"3.2":0.0059077603760376,"4.0-4.1":0.0029538801880188,"4.2-4.3":0,"5.0-5.1":0.0088616405640564,"6.0-6.1":0.0029538801880188,"7.0-7.1":0.010338580658066,"8.1-8.4":0.019200221222122,"9.0-9.2":0.017723281128113,"9.3":0.18757139193919,"10.0-10.2":0.064985364136414,"10.3":0.20972549334933,"11.0-11.2":0.17723281128113,"11.3-11.4":0.31606518011801,"12.0-12.1":0.45194366876688,"12.2-12.4":3.1990522436244,"13.0-13.1":4.6449765956596,"13.2":2.1149782146215,"13.3":3.3319768520852},I:{"3":0.0012440422535211,"4":0.0053908497652582,_:"76","2.1":0,"2.2":0.00082936150234742,"2.3":0.00082936150234742,"4.1":0.0095376572769953,"4.2-4.3":0.20858441784038,"4.4":0,"4.4.3-4.4.4":0.12689230985915},P:{"4":0.1026256,"5.0-5.4":0.07183792,"6.2-6.4":0.01026256,"7.2-7.4":0.0513128,"8.2":0.04105024,"9.2":0.23603888,"10.1":3.04798032},B:{"12":0,"13":0.040008,"14":0.093352,"15":0.020004,"16":0.03334,"17":0.093352,"18":1.240248,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.013336,"7":0,"8":0.060012,"9":0.060012,"10":0.040008,"11":0.760152,"5.5":0},N:{"10":0,"11":0.026656},J:{"7":0,"10":0.006664},R:{_:"0"},M:{"0":0.196588},O:{"0":0.09996},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.32176127835052},L:{"0":34.267944}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/LY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/LY.js new file mode 100644 index 0000000..f8523a9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/LY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.05733,"20":0,"21":0,"22":0,"23":0,"24":0.18081,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.05733,"31":0.00441,"32":0,"33":0.07056,"34":0,"35":0.12789,"36":0,"37":0,"38":0.00441,"39":0,"40":0.01323,"41":0,"42":0,"43":0.02646,"44":0,"45":0,"46":0,"47":0.00441,"48":0,"49":0.03528,"50":0,"51":0,"52":0,"53":0.00441,"54":0.06615,"55":0.06174,"56":0.29547,"57":0.00441,"58":0.00441,"59":0.00441,"60":0.02205,"61":0,"62":0.00441,"63":0.02646,"64":0.00441,"65":0.00882,"66":0.00441,"67":0.00882,"68":0.00441,"69":0.0441,"70":0.02205,"71":0.01323,"72":0.03528,"73":0.01323,"74":0.05292,"75":0.03528,"76":0.05733,"77":0.06615,"78":2.6901,"79":2.40786,"80":0.00441,"81":0.00441},C:{"2":0.07056,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.06615,"16":0,"17":0,"18":0.06174,"19":0,"20":0,"21":0.06615,"22":0,"23":0.05292,"24":0,"25":0.11907,"26":0,"27":0,"28":0,"29":0,"30":0.05733,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00441,"44":0,"45":0,"46":0,"47":0.00441,"48":0,"49":0,"50":0,"51":0.06615,"52":0.01323,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00441,"62":0,"63":0,"64":0.00441,"65":0,"66":0.01764,"67":0.00441,"68":0.03528,"69":0.02646,"70":0.1323,"71":0.38367,"72":0.01323,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00441,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00441,"37":0.00441,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.06174,"44":0,"45":0.03969,"46":0.02646,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00882,"54":0.01764,"55":0.01323,"56":0,"57":0.00441,"58":0,"60":0,"62":0,"63":0.01764,"64":0.03087,"9.5-9.6":0,"10.0-10.1":0.05292,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01323},E:{"4":0,"5":0.06174,"6":0,"7":0,"8":0,"9":0,"10":0.00441,"11":0.00441,"12":0.00882,"13":0.1323,_:"0","3.1":0,"3.2":0,"5.1":9.3492,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00441,"11.1":0.01323,"12.1":0.05292},G:{"8":0.00083757875787579,"3.2":0.0033503150315031,"4.0-4.1":0.0016751575157516,"4.2-4.3":0,"5.0-5.1":0.0050254725472547,"6.0-6.1":0.0016751575157516,"7.0-7.1":0.0058630513051305,"8.1-8.4":0.010888523852385,"9.0-9.2":0.010050945094509,"9.3":0.10637250225023,"10.0-10.2":0.036853465346535,"10.3":0.11893618361836,"11.0-11.2":0.10050945094509,"11.3-11.4":0.17924185418542,"12.0-12.1":0.25629909990999,"12.2-12.4":1.814195589559,"13.0-13.1":2.6341851935194,"13.2":1.1994127812781,"13.3":1.8895776777678},I:{"3":0.002307323943662,"4":0.0099984037558685,_:"76","2.1":0,"2.2":0.0015382159624413,"2.3":0.0015382159624413,"4.1":0.017689483568075,"4.2-4.3":0.38686131455399,"4.4":0,"4.4.3-4.4.4":0.23534704225352},P:{"4":0.52242007731959,"5.0-5.4":0.04097412371134,"6.2-6.4":0.14340943298969,"7.2-7.4":0.45071536082474,"8.2":0.11267884020619,"9.2":0.57363773195876,"10.1":2.1204109020619},B:{"12":0.00441,"13":0.00441,"14":0.00882,"15":0.00882,"16":0.00882,"17":0.02646,"18":0.14553,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02646,"7":0,"8":0.14994,"9":0.12789,"10":0.11466,"11":0.05733,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00559},R:{_:"0"},M:{"0":0.06149},O:{"0":0.53664},Q:{"1.2":0.00559},S:{"2.5":0},H:{"0":3.9003888831615},L:{"0":59.49992}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MA.js new file mode 100644 index 0000000..bd33266 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.157509,"20":0,"21":0,"22":0,"23":0,"24":0.439116,"25":0,"26":0,"27":0,"28":0,"29":0.004773,"30":0.147963,"31":0.004773,"32":0,"33":0.162282,"34":0,"35":0.281607,"36":0.004773,"37":0,"38":0.004773,"39":0.004773,"40":0.004773,"41":0,"42":0,"43":0.028638,"44":0,"45":0,"46":0.004773,"47":0,"48":0.004773,"49":0.33411,"50":0,"51":0.004773,"52":0,"53":0.004773,"54":0.152736,"55":0.162282,"56":0.744588,"57":0,"58":0.009546,"59":0,"60":0.004773,"61":0.019092,"62":0.004773,"63":0.028638,"64":0.004773,"65":0.019092,"66":0.009546,"67":0.038184,"68":0.014319,"69":0.028638,"70":0.100233,"71":0.124098,"72":0.100233,"73":0.081141,"74":0.319791,"75":0.114552,"76":0.100233,"77":0.133644,"78":4.806411,"79":4.395933,"80":0.009546,"81":0.004773},C:{"2":0.138417,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.138417,"16":0,"17":0,"18":0.14319,"19":0,"20":0,"21":0.162282,"22":0,"23":0.128871,"24":0,"25":0.291153,"26":0,"27":0,"28":0,"29":0,"30":0.162282,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.004773,"43":0.004773,"44":0,"45":0.009546,"46":0,"47":0.004773,"48":0.023865,"49":0,"50":0.004773,"51":0.138417,"52":0.057276,"53":0,"54":0.004773,"55":0.014319,"56":0.009546,"57":0,"58":0,"59":0,"60":0.014319,"61":0,"62":0,"63":0.014319,"64":0.014319,"65":0.014319,"66":0.009546,"67":0.014319,"68":0.100233,"69":0.033411,"70":0.28638,"71":1.021422,"72":0.023865,"73":0.004773,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004773,"37":0.004773,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.138417,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004773,"54":0,"55":0.004773,"56":0.004773,"57":0,"58":0.004773,"60":0,"62":0.009546,"63":0.004773,"64":0.033411,"9.5-9.6":0,"10.0-10.1":0.147963,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.138417,"6":0,"7":0,"8":0.028638,"9":0.004773,"10":0.009546,"11":0.023865,"12":0.057276,"13":0.281607,_:"0","3.1":0,"3.2":0,"5.1":0.773226,"6.1":0,"7.1":0,"9.1":0.009546,"10.1":0.04773,"11.1":0.066822,"12.1":0.147963},G:{"8":0.0024015440544054,"3.2":0.0096061762176218,"4.0-4.1":0.0048030881088109,"4.2-4.3":0,"5.0-5.1":0.014409264326433,"6.0-6.1":0.0048030881088109,"7.0-7.1":0.016810808380838,"8.1-8.4":0.031220072707271,"9.0-9.2":0.028818528652865,"9.3":0.30499609490949,"10.0-10.2":0.10566793839384,"10.3":0.34101925572557,"11.0-11.2":0.28818528652865,"11.3-11.4":0.51393042764276,"12.0-12.1":0.73487248064806,"12.2-12.4":5.2017444218422,"13.0-13.1":7.5528560511051,"13.2":3.4390110859086,"13.3":5.4178833867387},I:{"3":0.0090342992957746,"4":0.03914863028169,_:"76","2.1":0,"2.2":0.0060228661971831,"2.3":0.0060228661971831,"4.1":0.069262961267606,"4.2-4.3":1.5147508485915,"4.4":0,"4.4.3-4.4.4":0.92149852816901},P:{"4":0.64942533762058,"5.0-5.4":0.043295022508039,"6.2-6.4":0.075766289389068,"7.2-7.4":0.20565135691318,"8.2":0.064942533762058,"9.2":0.32471266881029,"10.1":2.0023947909968},B:{"12":0.004773,"13":0.004773,"14":0.004773,"15":0.009546,"16":0.009546,"17":0.028638,"18":0.162282,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.348429,"9":0.30971466666667,"10":0.304875375,"11":0.082267958333333,"5.5":0},N:{"10":0,"11":0.057497},J:{"7":0,"10":0.005227},R:{_:"0"},M:{"0":0.308393},O:{"0":0.125448},Q:{"1.2":0.005227},S:{"2.5":0},H:{"0":0.31670949828179},L:{"0":46.726753}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MC.js new file mode 100644 index 0000000..e6050db --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.007892,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.007892,"46":0,"47":0,"48":0,"49":0.15784,"50":0,"51":0,"52":0,"53":0.015784,"54":0.031568,"55":0,"56":0.007892,"57":0.015784,"58":0.007892,"59":0.023676,"60":0,"61":0,"62":0.015784,"63":0.007892,"64":0,"65":0.007892,"66":0.055244,"67":0.962824,"68":0.007892,"69":0.03946,"70":0.299896,"71":1.823052,"72":1.752024,"73":0.220976,"74":0.102596,"75":0.386708,"76":0.149948,"77":0.181516,"78":15.910272,"79":9.280992,"80":0.007892,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.102596,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.007892,"44":0,"45":0.1973,"46":0,"47":0,"48":0.031568,"49":0,"50":0,"51":0,"52":0.481412,"53":0.007892,"54":0,"55":0.134164,"56":0.007892,"57":0,"58":0,"59":0,"60":0.1973,"61":0,"62":0,"63":0,"64":0.11838,"65":0.007892,"66":0.1973,"67":0.007892,"68":0.584008,"69":0.094704,"70":1.010176,"71":3.141016,"72":0.015784,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.023676,"63":0,"64":0.031568,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.007892,"9":0,"10":0.007892,"11":0.086812,"12":0.623468,"13":8.081408,_:"0","3.1":0,"3.2":0,"5.1":0.086812,"6.1":0.007892,"7.1":0,"9.1":0.03946,"10.1":0.134164,"11.1":1.46002,"12.1":2.549116},G:{"8":0.0025479699969997,"3.2":0.010191879987999,"4.0-4.1":0.0050959399939994,"4.2-4.3":0,"5.0-5.1":0.015287819981998,"6.0-6.1":0.0050959399939994,"7.0-7.1":0.017835789978998,"8.1-8.4":0.033123609960996,"9.0-9.2":0.030575639963996,"9.3":0.32359218961896,"10.0-10.2":0.11211067986799,"10.3":0.36181173957396,"11.0-11.2":0.30575639963996,"11.3-11.4":0.54526557935794,"12.0-12.1":0.77967881908191,"12.2-12.4":5.5189030135013,"13.0-13.1":8.0133656405641,"13.2":3.6486930357036,"13.3":5.7482203132313},I:{"3":0.00026132394366197,"4":0.0011324037558685,_:"76","2.1":0,"2.2":0.00017421596244131,"2.3":0.00017421596244131,"4.1":0.0020034835680751,"4.2-4.3":0.043815314553991,"4.4":0,"4.4.3-4.4.4":0.026655042253521},P:{"4":0.3812256,"5.0-5.4":0.0211792,"6.2-6.4":0,"7.2-7.4":0.0105896,"8.2":0.0317688,"9.2":0.0211792,"10.1":1.3237},B:{"12":0,"13":0,"14":0,"15":0.007892,"16":0.07892,"17":0.149948,"18":3.772376,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.015784,"7":0,"8":0.023676,"9":0,"10":0.007892,"11":2.099272,"5.5":0},N:{"10":0.014756,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.217124},O:{"0":0.023188},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.17961463917526},L:{"0":10.865368}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MD.js new file mode 100644 index 0000000..42b5b44 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MD.js @@ -0,0 +1 @@ +module.exports={D:{"33":0.005747,"36":0.045976,"38":0.011494,"40":0.017241,"41":0.017241,"43":0.005747,"44":0.005747,"45":0.005747,"46":0.011494,"47":0.011494,"48":0.011494,"49":0.557459,"50":0.005747,"51":0.017241,"52":0.011494,"53":0.051723,"54":0.005747,"55":0.011494,"56":0.028735,"57":0.034482,"58":0.022988,"59":0.040229,"60":0.028735,"61":0.011494,"62":0.022988,"63":0.040229,"64":0.011494,"65":0.022988,"66":0.028735,"67":0.045976,"68":0.051723,"69":0.103446,"70":0.11494,"71":0.379302,"72":0.247121,"73":0.643664,"74":0.212639,"75":0.281603,"76":0.247121,"77":0.413784,"78":19.528306,"79":16.585842,"80":0.028735,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 37 39 42 81"},C:{"21":0.005747,"35":0.005747,"43":0.022988,"45":0.017241,"47":0.017241,"48":0.005747,"49":0.005747,"50":0.022988,"51":0.011494,"52":0.120687,"53":0.005747,"54":0.011494,"55":0.005747,"56":0.017241,"57":0.022988,"58":0.022988,"59":0.017241,"60":0.022988,"61":0.022988,"62":0.005747,"64":0.011494,"65":0.028735,"66":0.022988,"67":0.040229,"68":0.206892,"69":0.045976,"70":0.678146,"71":2.114896,"72":0.040229,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 44 46 63 73 3.5","3.6":0.034482},F:{"36":0.068964,"57":0.005747,"60":0.005747,"62":0.022988,"63":0.011494,"64":0.091952,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.005747},E:{"4":0,"11":0.091952,"12":0.051723,"13":1.224111,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":5.425168,"9.1":0.005747,"10.1":0.040229,"11.1":0.063217,"12.1":0.390796},G:{"8":0.00040790349034903,"3.2":0.0016316139613961,"4.0-4.1":0.00081580698069807,"4.2-4.3":0,"5.0-5.1":0.0024474209420942,"6.0-6.1":0.00081580698069807,"7.0-7.1":0.0028553244324432,"8.1-8.4":0.0053027453745375,"9.0-9.2":0.0048948418841884,"9.3":0.051803743274327,"10.0-10.2":0.017947753575358,"10.3":0.057922295629563,"11.0-11.2":0.048948418841884,"11.3-11.4":0.087291346934693,"12.0-12.1":0.1248184680468,"12.2-12.4":0.88351896009601,"13.0-13.1":1.2828564771477,"13.2":0.58411779817982,"13.3":0.92023027422742},I:{"3":0.0007487676056338,"4":0.0032446596244131,_:"76","2.1":0,"2.2":0.00049917840375587,"2.3":0.00049917840375587,"4.1":0.0057405516431925,"4.2-4.3":0.1255433685446,"4.4":0,"4.4.3-4.4.4":0.076374295774648},P:{"4":0.30863513761468,"5.0-5.4":0.010287837920489,"6.2-6.4":0.030863513761468,"7.2-7.4":0.072014865443425,"8.2":0.030863513761468,"9.2":0.27777162385321,"10.1":2.6233986697248},B:{"13":0.005747,"14":0.011494,"15":0.005747,"16":0.051723,"17":0.097699,"18":0.74711,_:"12 76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.011733458333333,"7":0.011733458333333,"8":0.064534020833333,"9":0.023466916666667,"10":0.0176001875,"11":0.43413795833333,_:"5.5"},N:{"10":0,"11":0.055289},J:{"7":0,"10":0.025518},R:{_:"0"},M:{"0":0.136096},O:{"0":2.445475},Q:{"1.2":0.008506},S:{_:"2.5"},H:{"0":0.60396984536082},L:{"0":32.605733}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ME.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ME.js new file mode 100644 index 0000000..a8b750d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ME.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00849,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004245,"34":0,"35":0,"36":0,"37":0,"38":0.012735,"39":0,"40":0.004245,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.22923,"50":0.00849,"51":0,"52":0,"53":0.00849,"54":0.00849,"55":0.004245,"56":0,"57":0.00849,"58":0.012735,"59":0.004245,"60":0.004245,"61":0.080655,"62":0.004245,"63":0.012735,"64":0,"65":0.004245,"66":0.01698,"67":0.02547,"68":0.00849,"69":0.012735,"70":0.038205,"71":0.021225,"72":0.00849,"73":0.072165,"74":0.07641,"75":0.046695,"76":0.063675,"77":0.131595,"78":5.650095,"79":4.79685,"80":0.00849,"81":0.004245},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.004245,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.01698,"42":0,"43":0,"44":0,"45":0.004245,"46":0,"47":0,"48":0.004245,"49":0.004245,"50":0,"51":0,"52":0.11886,"53":0,"54":0,"55":0,"56":0.004245,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00849,"63":0.01698,"64":0,"65":0,"66":0.012735,"67":0.00849,"68":0.089145,"69":0.029715,"70":0.394785,"71":1.040025,"72":0.021225,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00849,"37":0,"38":0,"39":0,"40":0.004245,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.004245,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004245,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.004245,"64":0.021225,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004245},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.012735,"11":0,"12":0.012735,"13":0.30564,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004245,"10.1":0.004245,"11.1":0.046695,"12.1":0.05943},G:{"8":0.0010127827782778,"3.2":0.0040511311131113,"4.0-4.1":0.0020255655565557,"4.2-4.3":0,"5.0-5.1":0.006076696669667,"6.0-6.1":0.0020255655565557,"7.0-7.1":0.0070894794479448,"8.1-8.4":0.013166176117612,"9.0-9.2":0.012153393339334,"9.3":0.12862341284128,"10.0-10.2":0.044562442244224,"10.3":0.14381515451545,"11.0-11.2":0.12153393339334,"11.3-11.4":0.21673551455146,"12.0-12.1":0.30991153015302,"12.2-12.4":2.1936874977498,"13.0-13.1":3.1852018376838,"13.2":1.4503049384938,"13.3":2.2848379477948},I:{"3":0.00060290492957746,"4":0.002612588028169,_:"76","2.1":0,"2.2":0.00040193661971831,"2.3":0.00040193661971831,"4.1":0.0046222711267606,"4.2-4.3":0.10108705985915,"4.4":0,"4.4.3-4.4.4":0.061496302816901},P:{"4":0.35647379725086,"5.0-5.4":0,"6.2-6.4":0.050924828178694,"7.2-7.4":0.15277448453608,"8.2":0.061109793814433,"9.2":0.40739862542955,"10.1":4.8887835051546},B:{"12":0,"13":0,"14":0,"15":0.01698,"16":0.004245,"17":0.02547,"18":0.208005,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.086745652173913,"9":0,"10":0,"11":0.11276934782609,"5.5":0},N:{"10":0.01007125,"11":0.03021375},J:{"7":0,"10":0.005755},R:{_:"0"},M:{"0":0.189915},O:{"0":0.03453},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.33780465635739},L:{"0":62.87033}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MG.js new file mode 100644 index 0000000..4967604 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.009064,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004532,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.004532,"36":0.02266,"37":0,"38":0.004532,"39":0,"40":0.009064,"41":0,"42":0.004532,"43":0.009064,"44":0,"45":0,"46":0,"47":0,"48":0.072512,"49":0.2266,"50":0,"51":0,"52":0.004532,"53":0,"54":0,"55":0.027192,"56":0.009064,"57":0.004532,"58":0.013596,"59":0.004532,"60":0.009064,"61":0,"62":0.018128,"63":0.154088,"64":0.009064,"65":0.018128,"66":0.004532,"67":0.02266,"68":0.036256,"69":0.06798,"70":0.06798,"71":0.036256,"72":0.081576,"73":0.140492,"74":0.077044,"75":0.06798,"76":0.122364,"77":0.235664,"78":4.998796,"79":4.074268,"80":0.009064,"81":0.004532},C:{"2":0,"3":0.018128,"4":0,"5":0,"6":0.004532,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004532,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004532,"29":0.004532,"30":0.004532,"31":0.004532,"32":0.013596,"33":0,"34":0,"35":0,"36":0.004532,"37":0,"38":0.004532,"39":0.004532,"40":0.018128,"41":0.009064,"42":0.004532,"43":0.036256,"44":0.009064,"45":0.004532,"46":0.004532,"47":0.04532,"48":0.077044,"49":0.02266,"50":0.009064,"51":0.009064,"52":0.117832,"53":0.004532,"54":0.004532,"55":0.004532,"56":0.036256,"57":0.027192,"58":0.009064,"59":0.009064,"60":0.02266,"61":0.018128,"62":0.009064,"63":0.027192,"64":0.013596,"65":0.027192,"66":0.054384,"67":0.031724,"68":0.172216,"69":0.13596,"70":1.006104,"71":3.045504,"72":0.058916,"73":0,"3.5":0,"3.6":0.004532},F:{"9":0,"11":0,"12":0,"15":0.004532,"16":0.004532,"17":0.004532,"18":0.004532,"19":0.013596,"20":0.013596,"21":0,"22":0,"23":0.004532,"24":0,"25":0,"26":0,"27":0,"28":0.004532,"29":0,"30":0.004532,"31":0,"32":0,"33":0,"34":0,"35":0.004532,"36":0.004532,"37":0.013596,"38":0,"39":0,"40":0,"41":0,"42":0.004532,"43":0.009064,"44":0.004532,"45":0.009064,"46":0.004532,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.058916,"54":0.009064,"55":0.009064,"56":0.040788,"57":0,"58":0,"60":0,"62":0.009064,"63":0.009064,"64":0.04532,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.081576},E:{"4":0.009064,"5":0,"6":0.013596,"7":0.004532,"8":0,"9":0,"10":0.004532,"11":0.049852,"12":0.040788,"13":0.484924,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004532,"10.1":0.009064,"11.1":0.063448,"12.1":0.099704},G:{"8":0.00030628702870287,"3.2":0.0012251481148115,"4.0-4.1":0.00061257405740574,"4.2-4.3":0,"5.0-5.1":0.0018377221722172,"6.0-6.1":0.00061257405740574,"7.0-7.1":0.0021440092009201,"8.1-8.4":0.0039817313731373,"9.0-9.2":0.0036754443444344,"9.3":0.038898452645265,"10.0-10.2":0.013476629262926,"10.3":0.043492758075808,"11.0-11.2":0.036754443444344,"11.3-11.4":0.065545424142414,"12.0-12.1":0.093723830783078,"12.2-12.4":0.66341770417042,"13.0-13.1":0.96327270527053,"13.2":0.43860302510251,"13.3":0.69098353675368},I:{"3":0.008593985915493,"4":0.037240605633803,_:"76","2.1":0,"2.2":0.005729323943662,"2.3":0.005729323943662,"4.1":0.065887225352113,"4.2-4.3":1.440924971831,"4.4":0,"4.4.3-4.4.4":0.87658656338028},P:{"4":0.19779438461538,"5.0-5.4":0.020820461538462,"6.2-6.4":0,"7.2-7.4":0.041640923076923,"8.2":0.010410230769231,"9.2":0.10410230769231,"10.1":0.69748546153846},B:{"12":0.013596,"13":0.036256,"14":0.036256,"15":0.031724,"16":0.013596,"17":0.06798,"18":0.403348,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02124375,"7":0.031865625,"8":0.2974125,"9":0.0477984375,"10":0.06373125,"11":0.2177484375,"5.5":0},N:{"10":0.0377292,"11":0.2137988},J:{"7":0,"10":0.032808},R:{_:"0"},M:{"0":0.185912},O:{"0":8.316828},Q:{"1.2":0.049212},S:{"2.5":0.032808},H:{"0":25.081349587629},L:{"0":19.937552}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MH.js new file mode 100644 index 0000000..485953c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.036672,"36":0.09168,"37":0,"38":0,"39":0,"40":0,"41":0.009168,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.517992,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.013752,"58":0,"59":0,"60":0.004584,"61":0,"62":0.013752,"63":0.013752,"64":0,"65":0,"66":0,"67":0.013752,"68":0.018336,"69":0.027504,"70":0,"71":0,"72":0,"73":0.032088,"74":0,"75":0.009168,"76":0.096264,"77":0.055008,"78":6.44052,"79":6.610128,"80":0,"81":0},C:{"2":0,"3":0.009168,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.110016,"53":0,"54":0,"55":0,"56":0,"57":0.013752,"58":0,"59":0,"60":0,"61":0.009168,"62":0,"63":0.009168,"64":0,"65":0.004584,"66":0.009168,"67":0,"68":0.013752,"69":0,"70":0.403392,"71":0.967224,"72":0.004584,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.009168,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.004584,"13":0.89388,_:"0","3.1":0,"3.2":0,"5.1":0.004584,"6.1":0,"7.1":0,"9.1":0.119184,"10.1":0.004584,"11.1":0.032088,"12.1":0.233784},G:{"8":0.0023024758475848,"3.2":0.009209903390339,"4.0-4.1":0.0046049516951695,"4.2-4.3":0,"5.0-5.1":0.013814855085509,"6.0-6.1":0.0046049516951695,"7.0-7.1":0.016117330933093,"8.1-8.4":0.029932186018602,"9.0-9.2":0.027629710171017,"9.3":0.29241443264326,"10.0-10.2":0.10130893729373,"10.3":0.32695157035704,"11.0-11.2":0.27629710171017,"11.3-11.4":0.49272983138314,"12.0-12.1":0.70455760936094,"12.2-12.4":4.9871626858686,"13.0-13.1":7.2412865406541,"13.2":3.2971454137414,"13.3":5.1943855121512},I:{"3":0.0025897746478873,"4":0.011222356807512,_:"76","2.1":0,"2.2":0.0017265164319249,"2.3":0.0017265164319249,"4.1":0.019854938967136,"4.2-4.3":0.43421888262911,"4.4":0,"4.4.3-4.4.4":0.26415701408451},P:{"4":0.01079815,"5.0-5.4":0.01079815,"6.2-6.4":0.07558705,"7.2-7.4":0.03239445,"8.2":0,"9.2":0.14037595,"10.1":1.4469521},B:{"12":0.013752,"13":0,"14":0,"15":0,"16":0.013752,"17":0.16044,"18":0.637176,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.018336,"9":0,"10":0,"11":0.788448,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.064992},O:{"0":0.194976},Q:{"1.2":0.075824},S:{"2.5":0},H:{"0":0.33328872852234},L:{"0":53.671592}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MK.js new file mode 100644 index 0000000..c158f63 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.006166,"27":0,"28":0,"29":0,"30":0,"31":0.006166,"32":0,"33":0,"34":0.006166,"35":0,"36":0.006166,"37":0,"38":0.018498,"39":0.006166,"40":0,"41":0.006166,"42":0,"43":0.018498,"44":0,"45":0,"46":0,"47":0.006166,"48":0.049328,"49":0.653596,"50":0.012332,"51":0.012332,"52":0.006166,"53":0.012332,"54":0,"55":0.006166,"56":0.006166,"57":0.006166,"58":0.012332,"59":0.012332,"60":0.006166,"61":0.172648,"62":0.098656,"63":0.024664,"64":0.012332,"65":0.024664,"66":0.036996,"67":0.234308,"68":0.043162,"69":0.110988,"70":0.776916,"71":0.912568,"72":0.968062,"73":0.610434,"74":0.881738,"75":2.195096,"76":0.191146,"77":0.258972,"78":10.26639,"79":9.421648,"80":0.024664,"81":0.006166},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.006166,"39":0,"40":0,"41":0,"42":0,"43":0.006166,"44":0,"45":0.073992,"46":0,"47":0.006166,"48":0.006166,"49":0.006166,"50":0.006166,"51":0.043162,"52":0.228142,"53":0.006166,"54":0.024664,"55":0.080158,"56":0.018498,"57":0.018498,"58":0.018498,"59":0.012332,"60":0.36996,"61":0.104822,"62":0.018498,"63":0.12332,"64":0.098656,"65":0.110988,"66":0.110988,"67":0.55494,"68":0.733754,"69":0.09249,"70":0.443952,"71":1.609326,"72":0.03083,"73":0,"3.5":0,"3.6":0.012332},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.006166,"31":0.012332,"32":0,"33":0,"34":0,"35":0,"36":0.018498,"37":0.006166,"38":0,"39":0,"40":0.006166,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.012332,"54":0.018498,"55":0.006166,"56":0.03083,"57":0.036996,"58":0.086324,"60":0,"62":0.073992,"63":0,"64":0.018498,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.006166,"10":0,"11":0.024664,"12":0.110988,"13":0.52411,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.012332,"11.1":0.172648,"12.1":0.49328},G:{"8":0.00087163716371637,"3.2":0.0034865486548655,"4.0-4.1":0.0017432743274327,"4.2-4.3":0,"5.0-5.1":0.0052298229822982,"6.0-6.1":0.0017432743274327,"7.0-7.1":0.0061014601460146,"8.1-8.4":0.011331283128313,"9.0-9.2":0.010459645964596,"9.3":0.11069791979198,"10.0-10.2":0.03835203520352,"10.3":0.12377247724772,"11.0-11.2":0.10459645964596,"11.3-11.4":0.1865303530353,"12.0-12.1":0.26672097209721,"12.2-12.4":1.8879660966097,"13.0-13.1":2.741298879888,"13.2":1.2481844184418,"13.3":1.9664134413441},I:{"3":0.0015698943661972,"4":0.0068028755868545,_:"76","2.1":0,"2.2":0.0010465962441315,"2.3":0.0010465962441315,"4.1":0.012035856807512,"4.2-4.3":0.26321895539906,"4.4":0,"4.4.3-4.4.4":0.16012922535211},P:{"4":0.11279871428571,"5.0-5.4":0.030763285714286,"6.2-6.4":0.020508857142857,"7.2-7.4":0.041017714285714,"8.2":0.030763285714286,"9.2":0.17432528571429,"10.1":2.1636844285714},B:{"12":0.006166,"13":0.006166,"14":0.024664,"15":0.03083,"16":0.055494,"17":0.203478,"18":0.55494,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.031564047619048,"7":0,"8":0.031564047619048,"9":0.031564047619048,"10":0.012625619047619,"11":0.42295823809524,"5.5":0},N:{"10":0,"11":0.03834},J:{"7":0,"10":0.007668},R:{_:"0"},M:{"0":0.092016},O:{"0":0.046008},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.12341263917526},L:{"0":48.75486}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ML.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ML.js new file mode 100644 index 0000000..0262c3a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ML.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003111,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.040443,"31":0,"32":0.006222,"33":0,"34":0,"35":0,"36":0.003111,"37":0.003111,"38":0,"39":0,"40":0.003111,"41":0.003111,"42":0,"43":0.018666,"44":0,"45":0,"46":0,"47":0,"48":0.003111,"49":0.059109,"50":0.003111,"51":0,"52":0,"53":0,"54":0,"55":0.009333,"56":0,"57":0,"58":0.018666,"59":0,"60":0.003111,"61":0,"62":0,"63":0.015555,"64":0.003111,"65":0.009333,"66":0.003111,"67":0.003111,"68":0.006222,"69":0.040443,"70":0.003111,"71":0.021777,"72":0.009333,"73":0.003111,"74":0.021777,"75":0.018666,"76":0.027999,"77":0.074664,"78":1.608387,"79":1.443504,"80":0.003111,"81":0},C:{"2":0,"3":0,"4":0,"5":0.003111,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.006222,"33":0,"34":0.012444,"35":0,"36":0,"37":0,"38":0,"39":0.003111,"40":0.003111,"41":0,"42":0,"43":0.003111,"44":0,"45":0,"46":0,"47":0.006222,"48":0.003111,"49":0,"50":0,"51":0,"52":0.006222,"53":0,"54":0,"55":0,"56":0.021777,"57":0.003111,"58":0.003111,"59":0,"60":0,"61":0,"62":0.003111,"63":0,"64":0.006222,"65":0,"66":0,"67":0.009333,"68":0.043554,"69":0.021777,"70":0.488427,"71":1.284843,"72":0.021777,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.003111,"21":0,"22":0,"23":0.003111,"24":0,"25":0,"26":0,"27":0,"28":0.003111,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.006222,"38":0,"39":0,"40":0,"41":0,"42":0.003111,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.003111,"54":0,"55":0.003111,"56":0,"57":0,"58":0.006222,"60":0.021777,"62":0,"63":0.003111,"64":0.059109,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.003111},E:{"4":0,"5":0,"6":0,"7":0.003111,"8":0.021777,"9":0,"10":0.015555,"11":0.046665,"12":0.034221,"13":0.332877,_:"0","3.1":0,"3.2":0,"5.1":1.219512,"6.1":0,"7.1":0,"9.1":0.027999,"10.1":0.074664,"11.1":0.024888,"12.1":0.149328},G:{"8":0.00052838783878388,"3.2":0.0021135513551355,"4.0-4.1":0.0010567756775678,"4.2-4.3":0,"5.0-5.1":0.0031703270327033,"6.0-6.1":0.0010567756775678,"7.0-7.1":0.0036987148714871,"8.1-8.4":0.0068690419041904,"9.0-9.2":0.0063406540654065,"9.3":0.067105255525553,"10.0-10.2":0.023249064906491,"10.3":0.075031073107311,"11.0-11.2":0.063406540654065,"11.3-11.4":0.11307499749975,"12.0-12.1":0.16168667866787,"12.2-12.4":1.1444880588059,"13.0-13.1":1.6617797529753,"13.2":0.75665138513851,"13.3":1.1920429642964},I:{"3":0.001443661971831,"4":0.0062558685446009,_:"76","2.1":0,"2.2":0.00096244131455399,"2.3":0.00096244131455399,"4.1":0.011068075117371,"4.2-4.3":0.24205399061033,"4.4":0,"4.4.3-4.4.4":0.14725352112676},P:{"4":0.62485781481481,"5.0-5.4":0.060470111111111,"6.2-6.4":0.15117527777778,"7.2-7.4":0.28219385185185,"8.2":0.12094022222222,"9.2":0.70548462962963,"10.1":1.3202640925926},B:{"12":0.018666,"13":0.049776,"14":0.006222,"15":0.018666,"16":0.046665,"17":0.059109,"18":0.230214,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0194956,"9":0,"10":0.0682346,"11":0.2047038,"5.5":0},N:{"10":0.0771568,"11":0.0675122},J:{"7":0,"10":0.048223},R:{_:"0"},M:{"0":0.144669},O:{"0":2.803823},Q:{"1.2":0.096446},S:{"2.5":0.020667},H:{"0":5.0154642457045},L:{"0":69.950449}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MM.js new file mode 100644 index 0000000..5e98dd4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004408,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.074936,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.004408,"30":0,"31":0.013224,"32":0.026448,"33":0,"34":0,"35":0.004408,"36":0.008816,"37":0.04408,"38":0.004408,"39":0,"40":0.008816,"41":0,"42":0.004408,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.017632,"50":0.004408,"51":0,"52":0.004408,"53":0.008816,"54":0,"55":0.008816,"56":0.004408,"57":0.004408,"58":0.017632,"59":0.004408,"60":0.004408,"61":0.008816,"62":0.013224,"63":0.114608,"64":0.004408,"65":0.004408,"66":0.013224,"67":0.008816,"68":0.004408,"69":0.017632,"70":0.013224,"71":0.079344,"72":0.030856,"73":0.070528,"74":0.13224,"75":0.048488,"76":0.105792,"77":0.101384,"78":5.690728,"79":4.535832,"80":0.017632,"81":0.004408},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.004408,"28":0,"29":0.004408,"30":0.004408,"31":0,"32":0,"33":0,"34":0.004408,"35":0,"36":0.004408,"37":0.004408,"38":0.004408,"39":0.004408,"40":0.004408,"41":0.013224,"42":0.008816,"43":0.017632,"44":0.008816,"45":0.004408,"46":0.004408,"47":0.026448,"48":0.017632,"49":0.013224,"50":0.013224,"51":0,"52":0.02204,"53":0.004408,"54":0.004408,"55":0.008816,"56":0.06612,"57":0.048488,"58":0.008816,"59":0.013224,"60":0.074936,"61":0.02204,"62":0.035264,"63":0.013224,"64":0.013224,"65":0.052896,"66":0.052896,"67":0.052896,"68":0.171912,"69":0.145464,"70":0.912456,"71":3.226656,"72":0.50692,"73":0.013224,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004408,"35":0,"36":0,"37":0.048488,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.004408,"50":0,"51":0,"52":0,"53":0.004408,"54":0.004408,"55":0.004408,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.004408,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004408},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004408,"9":0,"10":0.008816,"11":0.039672,"12":0.083752,"13":0.656792,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.013224,"10.1":0.04408,"11.1":0.070528,"12.1":0.193952},G:{"8":0.00077746254625463,"3.2":0.0031098501850185,"4.0-4.1":0.0015549250925093,"4.2-4.3":0,"5.0-5.1":0.0046647752775278,"6.0-6.1":0.0015549250925093,"7.0-7.1":0.0054422378237824,"8.1-8.4":0.01010701310131,"9.0-9.2":0.0093295505550555,"9.3":0.098737743374337,"10.0-10.2":0.034208352035204,"10.3":0.11039968156816,"11.0-11.2":0.093295505550555,"11.3-11.4":0.16637698489849,"12.0-12.1":0.23790353915392,"12.2-12.4":1.6839838751875,"13.0-13.1":2.4451197079708,"13.2":1.1133263662366,"13.3":1.7539555043504},I:{"3":0.0047097183098592,"4":0.020408779342723,_:"76","2.1":0,"2.2":0.0031398122065728,"2.3":0.0031398122065728,"4.1":0.036107840375587,"4.2-4.3":0.78966276995305,"4.4":0,"4.4.3-4.4.4":0.48039126760563},P:{"4":0.47565430434783,"5.0-5.4":0.020240608695652,"6.2-6.4":0.05060152173913,"7.2-7.4":0.13156395652174,"8.2":0.040481217391304,"9.2":0.21252639130435,"10.1":0.92094769565217},B:{"12":0.008816,"13":0.004408,"14":0.004408,"15":0.008816,"16":0.008816,"17":0.057304,"18":0.370272,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0092568,"9":0,"10":0,"11":0.0833112,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.301968},O:{"0":2.247984},Q:{"1.2":0.072696},S:{"2.5":0},H:{"0":0.76765092783505},L:{"0":64.245552}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MN.js new file mode 100644 index 0000000..525d2a4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.012072,"37":0,"38":0.006036,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.006036,"49":0.132792,"50":0.006036,"51":0.006036,"52":0.012072,"53":0.012072,"54":0.012072,"55":0.018108,"56":0.006036,"57":0.006036,"58":0.018108,"59":0.012072,"60":0.024144,"61":0.012072,"62":0.012072,"63":0.078468,"64":0.006036,"65":0.024144,"66":0.006036,"67":0.03018,"68":0.012072,"69":0.33198,"70":0.048288,"71":0.054324,"72":0.048288,"73":0.048288,"74":0.12072,"75":0.12072,"76":0.27162,"77":0.325944,"78":15.265044,"79":12.9774,"80":0.042252,"81":0.012072},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006036,"44":0,"45":0,"46":0,"47":0.006036,"48":0.006036,"49":0,"50":0.006036,"51":0,"52":0.018108,"53":0,"54":0,"55":0,"56":0.006036,"57":0,"58":0,"59":0,"60":0.024144,"61":0,"62":0,"63":0,"64":0.012072,"65":0.006036,"66":0.006036,"67":0.012072,"68":0.09054,"69":0.018108,"70":0.525132,"71":1.847016,"72":0.09054,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.012072,"64":0.102612,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.012072,"11":0.006036,"12":0.048288,"13":0.380268,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.006036,"10.1":0.018108,"11.1":0.03018,"12.1":0.1509},G:{"8":0.0013573289328933,"3.2":0.0054293157315732,"4.0-4.1":0.0027146578657866,"4.2-4.3":0,"5.0-5.1":0.0081439735973597,"6.0-6.1":0.0027146578657866,"7.0-7.1":0.009501302530253,"8.1-8.4":0.017645276127613,"9.0-9.2":0.016287947194719,"9.3":0.17238077447745,"10.0-10.2":0.059722473047305,"10.3":0.19274070847085,"11.0-11.2":0.16287947194719,"11.3-11.4":0.29046839163916,"12.0-12.1":0.41534265346535,"12.2-12.4":2.9399744686469,"13.0-13.1":4.2687994939494,"13.2":1.9436950319032,"13.3":3.0621340726073},I:{"3":0.0011873521126761,"4":0.0051451924882629,_:"76","2.1":0,"2.2":0.00079156807511737,"2.3":0.00079156807511737,"4.1":0.0091030328638498,"4.2-4.3":0.19907937089202,"4.4":0,"4.4.3-4.4.4":0.12110991549296},P:{"4":0.4448871884058,"5.0-5.4":0.12133286956522,"6.2-6.4":0.040444289855072,"7.2-7.4":0.14155501449275,"8.2":0.050555362318841,"9.2":0.34377646376812,"10.1":2.3457688115942},B:{"12":0.006036,"13":0.006036,"14":0.006036,"15":0.006036,"16":0.024144,"17":0.048288,"18":0.51306,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.018931090909091,"9":0,"10":0,"11":0.11989690909091,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.003964},R:{_:"0"},M:{"0":0.110992},O:{"0":0.174416},Q:{"1.2":0.031712},S:{"2.5":0},H:{"0":0.11258577319588},L:{"0":43.895196}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MO.js new file mode 100644 index 0000000..e2ac65f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005629,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005629,"27":0.011258,"28":0,"29":0,"30":0.005629,"31":0,"32":0,"33":0,"34":0.028145,"35":0,"36":0,"37":0,"38":0.039403,"39":0,"40":0.028145,"41":0,"42":0,"43":0,"44":0.005629,"45":0.016887,"46":0,"47":0,"48":0,"49":0.129467,"50":0,"51":0.005629,"52":0.005629,"53":0.022516,"54":0.005629,"55":0.033774,"56":0.028145,"57":0.022516,"58":0.022516,"59":0.005629,"60":0.011258,"61":0.011258,"62":0.028145,"63":0.686738,"64":0.061919,"65":0.022516,"66":0.022516,"67":0.050661,"68":0.084435,"69":0.410917,"70":0.129467,"71":0.163241,"72":0.073177,"73":0.478465,"74":0.467207,"75":0.309595,"76":0.382772,"77":0.596674,"78":10.042136,"79":6.968702,"80":0.022516,"81":0.005629},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.022516,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.022516,"44":0,"45":0.005629,"46":0,"47":0,"48":0.011258,"49":0,"50":0,"51":0,"52":0.016887,"53":0,"54":0,"55":0,"56":0.016887,"57":0,"58":0,"59":0,"60":0.011258,"61":0,"62":0,"63":0,"64":0,"65":0.011258,"66":0.005629,"67":0.005629,"68":0.073177,"69":0.005629,"70":0.292708,"71":0.866866,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.005629,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005629},E:{"4":0,"5":0,"6":0,"7":0.005629,"8":0.011258,"9":0.005629,"10":0.028145,"11":0.123838,"12":0.247676,"13":2.47676,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.050661,"10.1":0.123838,"11.1":0.163241,"12.1":0.641706},G:{"8":0.0039922516251625,"3.2":0.01596900650065,"4.0-4.1":0.007984503250325,"4.2-4.3":0,"5.0-5.1":0.023953509750975,"6.0-6.1":0.007984503250325,"7.0-7.1":0.027945761376138,"8.1-8.4":0.051899271127113,"9.0-9.2":0.04790701950195,"9.3":0.50701595639564,"10.0-10.2":0.17565907150715,"10.3":0.56689973077308,"11.0-11.2":0.4790701950195,"11.3-11.4":0.85434184778478,"12.0-12.1":1.2216289972997,"12.2-12.4":8.647217020102,"13.0-13.1":12.555631361136,"13.2":5.7169043272327,"13.3":9.0065196663666},I:{"3":0.002316735915493,"4":0.010039188967136,_:"76","2.1":0,"2.2":0.0015444906103286,"2.3":0.0015444906103286,"4.1":0.017761642018779,"4.2-4.3":0.38843938849765,"4.4":0,"4.4.3-4.4.4":0.23630706338028},P:{"4":0.28005621428571,"5.0-5.4":0.010771392857143,"6.2-6.4":0.010771392857143,"7.2-7.4":0.010771392857143,"8.2":0.053856964285714,"9.2":0.20465646428571,"10.1":1.8419081785714},B:{"12":0,"13":0.005629,"14":0.005629,"15":0.005629,"16":0.05629,"17":0.101322,"18":0.872495,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.045970166666667,"9":0,"10":0.052537333333333,"11":0.7683585,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.170469},O:{"0":0.887313},Q:{"1.2":0.397761},S:{"2.5":0},H:{"0":0.057934525773196},L:{"0":24.34443}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MP.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MP.js new file mode 100644 index 0000000..45ef44f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MP.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006512,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.019536,"50":0,"51":0,"52":0,"53":0.019536,"54":0,"55":0.013024,"56":0,"57":0,"58":0,"59":0,"60":0.078144,"61":0.006512,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.006512,"68":0,"69":0.03256,"70":0.045584,"71":0.006512,"72":0.006512,"73":0,"74":0.006512,"75":0.840048,"76":0.019536,"77":0.058608,"78":20.988176,"79":10.953184,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.006512,"20":0,"21":0.045584,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.019536,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.026048,"69":0.006512,"70":0.29304,"71":1.445664,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.013024,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.006512,"64":0.006512,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.071632,"12":0.052096,"13":2.845744,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.052096,"10.1":0,"11.1":0.013024,"12.1":0.078144},G:{"8":0.001186603460346,"3.2":0.0047464138413841,"4.0-4.1":0.0023732069206921,"4.2-4.3":0,"5.0-5.1":0.0071196207620762,"6.0-6.1":0.0023732069206921,"7.0-7.1":0.0083062242224222,"8.1-8.4":0.015425844984498,"9.0-9.2":0.014239241524152,"9.3":0.15069863946395,"10.0-10.2":0.052210552255226,"10.3":0.16849769136914,"11.0-11.2":0.14239241524152,"11.3-11.4":0.25393314051405,"12.0-12.1":0.36310065886589,"12.2-12.4":2.5701830951095,"13.0-13.1":3.7318678827883,"13.2":1.6992161552155,"13.3":2.6769774065407},I:{"3":0.0010932394366197,"4":0.0047373708920188,_:"76","2.1":0,"2.2":0.00072882629107981,"2.3":0.00072882629107981,"4.1":0.0083815023474178,"4.2-4.3":0.18329981220657,"4.4":0,"4.4.3-4.4.4":0.11151042253521},P:{"4":0.01029667896679,"5.0-5.4":0.051483394833948,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.020593357933579,"10.1":2.4506095940959},B:{"12":0,"13":0.013024,"14":0,"15":0,"16":0.013024,"17":0.058608,"18":1.354496,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.573056,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.184864},O:{"0":0.230208},Q:{"1.2":0.195328},S:{"2.5":0},H:{"0":0.019813278350515},L:{"0":41.47864}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MQ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MQ.js new file mode 100644 index 0000000..7b0b645 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MQ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00467,"37":0,"38":0.00467,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.19614,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01868,"56":0,"57":0,"58":0.00467,"59":0,"60":0,"61":0,"62":0,"63":0.09807,"64":0.00467,"65":0.00934,"66":0,"67":0,"68":0.00467,"69":0.00934,"70":0.00467,"71":0.00467,"72":0.04203,"73":0.05604,"74":0.08406,"75":0.01868,"76":0.06071,"77":0.13076,"78":6.51932,"79":4.54391,"80":0.01868,"81":0.00934},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00934,"46":0,"47":0.00467,"48":0.06538,"49":0,"50":0,"51":0,"52":0.01401,"53":0.00467,"54":0.00467,"55":0,"56":0.00467,"57":0,"58":0,"59":0,"60":0.01868,"61":0,"62":0,"63":0.00467,"64":0.00467,"65":0,"66":0.00934,"67":0.03736,"68":0.15411,"69":0.02802,"70":0.58842,"71":1.76526,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00467,"56":0,"57":0.00934,"58":0,"60":0,"62":0,"63":0,"64":0.00467,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00467,"9":0,"10":0,"11":0.00467,"12":0.16345,"13":1.69521,_:"0","3.1":0,"3.2":0,"5.1":0.78456,"6.1":0,"7.1":0,"9.1":0.00934,"10.1":0.03736,"11.1":0.15411,"12.1":0.81725},G:{"8":0.0014953305330533,"3.2":0.0059813221322132,"4.0-4.1":0.0029906610661066,"4.2-4.3":0,"5.0-5.1":0.0089719831983198,"6.0-6.1":0.0029906610661066,"7.0-7.1":0.010467313731373,"8.1-8.4":0.019439296929693,"9.0-9.2":0.01794396639664,"9.3":0.18990697769777,"10.0-10.2":0.065794543454345,"10.3":0.21233693569357,"11.0-11.2":0.1794396639664,"11.3-11.4":0.32000073407341,"12.0-12.1":0.45757114311431,"12.2-12.4":3.2388859345935,"13.0-13.1":4.7028145264526,"13.2":2.1413133233323,"13.3":3.3734656825683},I:{"3":0.0011480281690141,"4":0.0049747887323944,_:"76","2.1":0,"2.2":0.00076535211267606,"2.3":0.00076535211267606,"4.1":0.0088015492957746,"4.2-4.3":0.19248605633803,"4.4":0,"4.4.3-4.4.4":0.11709887323944},P:{"4":0.33898258883249,"5.0-5.4":0.051360998307953,"6.2-6.4":0.061633197969543,"7.2-7.4":0.1129941962775,"8.2":0.082177597292724,"9.2":1.4381079526227,"10.1":3.9547968697124},B:{"12":0,"13":0.00467,"14":0.00467,"15":0.01868,"16":0.06538,"17":0.30822,"18":1.43369,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00467,"9":0,"10":0.00467,"11":0.31756,"5.5":0},N:{"10":0,"11":0.07462},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.19721},O:{"0":0.03731},Q:{"1.2":0.03198},S:{"2.5":0},H:{"0":0.12615249140893},L:{"0":54.39534}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MR.js new file mode 100644 index 0000000..56a743c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0.004469,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004469,"26":0.004469,"27":0,"28":0,"29":0.004469,"30":0,"31":0,"32":0,"33":0.008938,"34":0.004469,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.008938,"41":0.004469,"42":0,"43":0.026814,"44":0.004469,"45":0.004469,"46":0,"47":0,"48":0,"49":0.420086,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004469,"56":0,"57":0,"58":0.004469,"59":0,"60":0,"61":0.004469,"62":0,"63":0.035752,"64":0.004469,"65":0.004469,"66":0,"67":0.013407,"68":0,"69":0.071504,"70":0.004469,"71":0.031283,"72":0.080442,"73":0.017876,"74":0.040221,"75":0.035752,"76":0.093849,"77":0.067035,"78":2.046802,"79":2.440074,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004469,"35":0,"36":0,"37":0,"38":0.004469,"39":0,"40":0,"41":0.013407,"42":0,"43":0.004469,"44":0,"45":0.008938,"46":0,"47":0.004469,"48":0.004469,"49":0.008938,"50":0,"51":0,"52":0.013407,"53":0,"54":0,"55":0,"56":0.008938,"57":0.004469,"58":0,"59":0,"60":0.017876,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.004469,"67":0.004469,"68":0.093849,"69":0.008938,"70":0.22345,"71":0.697164,"72":0.008938,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.008938,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.017876,"46":0.004469,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004469,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.008938,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.04469},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04469,"12":0.035752,"13":0.093849,_:"0","3.1":0,"3.2":0,"5.1":11.918823,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004469,"11.1":0.022345,"12.1":0.053628},G:{"8":0.00054722352235224,"3.2":0.0021888940894089,"4.0-4.1":0.0010944470447045,"4.2-4.3":0,"5.0-5.1":0.0032833411341134,"6.0-6.1":0.0010944470447045,"7.0-7.1":0.0038305646564656,"8.1-8.4":0.0071139057905791,"9.0-9.2":0.0065666822682268,"9.3":0.069497387338734,"10.0-10.2":0.024077834983498,"10.3":0.077705740174017,"11.0-11.2":0.065666822682268,"11.3-11.4":0.11710583378338,"12.0-12.1":0.16745039783978,"12.2-12.4":1.1852861494149,"13.0-13.1":1.7210179777978,"13.2":0.7836240840084,"13.3":1.2345362664266},I:{"3":0.0013222922535211,"4":0.0057299330985915,_:"76","2.1":0,"2.2":0.00088152816901408,"2.3":0.00088152816901408,"4.1":0.010137573943662,"4.2-4.3":0.22170433450704,"4.4":0,"4.4.3-4.4.4":0.13487380985915},P:{"4":1.8452973465704,"5.0-5.4":0.18150465703971,"6.2-6.4":0.20167184115523,"7.2-7.4":0.90752328519856,"8.2":0.080668736462094,"9.2":0.82685454873646,"10.1":1.5427895848375},B:{"12":0.004469,"13":0.004469,"14":0.008938,"15":0.004469,"16":0.004469,"17":0.008938,"18":0.049159,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.080442,"9":0.0047318823529412,"10":0.018927529411765,"11":0.056782588235294,"5.5":0},N:{"10":0.011062,"11":0.022124},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.176992},O:{"0":0.752216},Q:{"1.2":0.022124},S:{"2.5":0.005531},H:{"0":2.8852528024055},L:{"0":61.004246}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MS.js new file mode 100644 index 0000000..331be2b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.003229,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.006458,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.003229,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.003229,"63":0.125931,"64":0,"65":0.006458,"66":0,"67":0.071038,"68":0.003229,"69":0.003229,"70":0.045206,"71":0.003229,"72":0.012916,"73":0.012916,"74":0.003229,"75":0.003229,"76":0.074267,"77":0.041977,"78":3.093382,"79":1.443363,"80":0,"81":0},C:{"2":0,"3":0.012916,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003229,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.003229,"43":0,"44":0.003229,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.006458,"67":0,"68":0.025832,"69":0,"70":0.174366,"71":0.190511,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003229,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.006458,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.067809,"10":0.003229,"11":0,"12":0.009687,"13":1.114005,_:"0","3.1":0,"3.2":0,"5.1":0.006458,"6.1":0,"7.1":0,"9.1":0.012916,"10.1":0.012916,"11.1":0.090412,"12.1":0.067809},G:{"8":0.0017860697069707,"3.2":0.0071442788278828,"4.0-4.1":0.0035721394139414,"4.2-4.3":0,"5.0-5.1":0.010716418241824,"6.0-6.1":0.0035721394139414,"7.0-7.1":0.012502487948795,"8.1-8.4":0.023218906190619,"9.0-9.2":0.021432836483648,"9.3":0.22683085278528,"10.0-10.2":0.078587067106711,"10.3":0.25362189838984,"11.0-11.2":0.21432836483648,"11.3-11.4":0.38221891729173,"12.0-12.1":0.54653733033303,"12.2-12.4":3.8686269852985,"13.0-13.1":5.6171892284228,"13.2":2.557651820382,"13.3":4.0293732589259},I:{"3":0.0022622253521127,"4":0.0098029765258216,_:"76","2.1":0,"2.2":0.0015081502347418,"2.3":0.0015081502347418,"4.1":0.017343727699531,"4.2-4.3":0.37929978403756,"4.4":0,"4.4.3-4.4.4":0.23074698591549},P:{"4":0.43221747635727,"5.0-5.4":0.01054188966725,"6.2-6.4":0.063251338003503,"7.2-7.4":0.53763637302977,"8.2":0.17921212434326,"9.2":0.56926204203152,"10.1":4.1956720875657},B:{"12":0,"13":0.006458,"14":0.006458,"15":0,"16":0.012916,"17":0.038748,"18":0.432686,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.545701,"5.5":0},N:{"10":0,"11":0.054168},J:{"7":0,"10":0.040626},R:{_:"0"},M:{"0":0.115107},O:{"0":0.040626},Q:{"1.2":0.013542},S:{"2.5":0},H:{"0":0.50000693814433},L:{"0":64.734274}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MT.js new file mode 100644 index 0000000..55ddea5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.006025,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006025,"37":0,"38":0.006025,"39":0,"40":0,"41":0,"42":0.006025,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.030125,"49":0.5302,"50":0,"51":0,"52":0,"53":0.006025,"54":0,"55":0,"56":0,"57":0.006025,"58":0.01205,"59":0,"60":0,"61":0.006025,"62":0.01205,"63":0.01205,"64":0.018075,"65":0.01205,"66":0.006025,"67":0.0482,"68":0.006025,"69":0.138575,"70":0.08435,"71":0.13255,"72":0.13255,"73":0.030125,"74":0.06025,"75":0.126525,"76":0.1687,"77":0.331375,"78":14.46,"79":10.3148,"80":0.018075,"81":0.006025},C:{"2":0,"3":0.006025,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.006025,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.018075,"46":0,"47":0,"48":0.01205,"49":0,"50":0,"51":0,"52":0.0482,"53":0,"54":0,"55":0.030125,"56":0.138575,"57":0.078325,"58":0,"59":0,"60":0.006025,"61":0.01205,"62":0,"63":0.01205,"64":0.0482,"65":0.030125,"66":0.018075,"67":0.018075,"68":0.114475,"69":0.030125,"70":0.3133,"71":1.0122,"72":0.006025,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.006025,"41":0,"42":0,"43":0,"44":0,"45":0.01205,"46":0.01205,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01205,"57":0,"58":0,"60":0,"62":0.01205,"63":0,"64":0.06025,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.006025},E:{"4":0.006025,"5":0,"6":0,"7":0.006025,"8":0,"9":0,"10":0.01205,"11":0.0241,"12":0.078325,"13":1.8798,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.0241,"7.1":0,"9.1":0.03615,"10.1":0.066275,"11.1":0.162675,"12.1":0.488025},G:{"8":0.0016800180018002,"3.2":0.0067200720072007,"4.0-4.1":0.0033600360036004,"4.2-4.3":0,"5.0-5.1":0.010080108010801,"6.0-6.1":0.0033600360036004,"7.0-7.1":0.011760126012601,"8.1-8.4":0.021840234023402,"9.0-9.2":0.020160216021602,"9.3":0.21336228622862,"10.0-10.2":0.073920792079208,"10.3":0.23856255625563,"11.0-11.2":0.20160216021602,"11.3-11.4":0.35952385238524,"12.0-12.1":0.51408550855086,"12.2-12.4":3.6389189918992,"13.0-13.1":5.2836566156616,"13.2":2.4057857785779,"13.3":3.7901206120612},I:{"3":0.0015786091549296,"4":0.0068406396713615,_:"76","2.1":0,"2.2":0.0010524061032864,"2.3":0.0010524061032864,"4.1":0.012102670187793,"4.2-4.3":0.26468013497653,"4.4":0,"4.4.3-4.4.4":0.16101813380282},P:{"4":0.13432521613833,"5.0-5.4":0,"6.2-6.4":0.010332708933718,"7.2-7.4":0.072328962536023,"8.2":0.030998126801153,"9.2":0.14465792507205,"10.1":3.182474351585},B:{"12":0.006025,"13":0.018075,"14":0.01205,"15":0.018075,"16":0.0482,"17":0.2169,"18":1.391775,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.006423347107438,"7":0.006423347107438,"8":0.044963429752066,"9":0.012846694214876,"10":0.025693388429752,"11":0.68087479338843,"5.5":0},N:{"10":0,"11":0.019875},J:{"7":0,"10":0.003975},R:{_:"0"},M:{"0":0.107325},O:{"0":0.369675},Q:{"1.2":0.003975},S:{"2.5":0},H:{"0":0.1430043814433},L:{"0":41.135175}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MU.js new file mode 100644 index 0000000..7fa7092 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004097,"27":0.004097,"28":0,"29":0,"30":0,"31":0.012291,"32":0,"33":0.004097,"34":0.008194,"35":0.004097,"36":0.008194,"37":0,"38":0.028679,"39":0.008194,"40":0.012291,"41":0.008194,"42":0.004097,"43":0.004097,"44":0,"45":0,"46":0.012291,"47":0.004097,"48":0.004097,"49":0.233529,"50":0.012291,"51":0.020485,"52":0.004097,"53":0.016388,"54":0.004097,"55":0.008194,"56":0.004097,"57":0.004097,"58":0.008194,"59":0.004097,"60":0.004097,"61":0.172074,"62":0.008194,"63":0.012291,"64":0.004097,"65":0.012291,"66":0.004097,"67":0.012291,"68":0.012291,"69":0.069649,"70":0.036873,"71":0.020485,"72":0.012291,"73":0.024582,"74":0.061455,"75":0.036873,"76":0.08194,"77":0.127007,"78":5.248257,"79":3.883956,"80":0.028679,"81":0.008194},C:{"2":0,"3":0,"4":0.004097,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.004097,"21":0.004097,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.012291,"43":0.004097,"44":0,"45":0.004097,"46":0,"47":0.004097,"48":0.020485,"49":0.004097,"50":0,"51":0.004097,"52":0.045067,"53":0.004097,"54":0.004097,"55":0.004097,"56":0.012291,"57":0.004097,"58":0.004097,"59":0,"60":0.004097,"61":0,"62":0.004097,"63":0,"64":0.04097,"65":0,"66":0.004097,"67":0.008194,"68":0.135201,"69":0.024582,"70":0.323663,"71":1.016056,"72":0.028679,"73":0,"3.5":0,"3.6":0.004097},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.016388,"46":0.004097,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004097,"54":0.008194,"55":0.004097,"56":0,"57":0,"58":0.004097,"60":0,"62":0,"63":0.008194,"64":0.012291,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.008194},E:{"4":0,"5":0,"6":0,"7":0,"8":0.024582,"9":0,"10":0.008194,"11":0.020485,"12":0.16388,"13":1.241391,_:"0","3.1":0,"3.2":0,"5.1":0.16388,"6.1":0,"7.1":0,"9.1":0.024582,"10.1":0.098328,"11.1":0.249917,"12.1":0.4097},G:{"8":0.00080192449244924,"3.2":0.003207697969797,"4.0-4.1":0.0016038489848985,"4.2-4.3":0,"5.0-5.1":0.0048115469546955,"6.0-6.1":0.0016038489848985,"7.0-7.1":0.0056134714471447,"8.1-8.4":0.01042501840184,"9.0-9.2":0.0096230939093909,"9.3":0.10184441054105,"10.0-10.2":0.035284677667767,"10.3":0.11387327792779,"11.0-11.2":0.096230939093909,"11.3-11.4":0.17161184138414,"12.0-12.1":0.24538889468947,"12.2-12.4":1.7369684506451,"13.0-13.1":2.5220525287529,"13.2":1.1483558731873,"13.3":1.8091416549655},I:{"3":0.0010886056338028,"4":0.0047172910798122,_:"76","2.1":0,"2.2":0.00072573708920188,"2.3":0.00072573708920188,"4.1":0.0083459765258216,"4.2-4.3":0.18252287793427,"4.4":0,"4.4.3-4.4.4":0.11103777464789},P:{"4":0.65945216207455,"5.0-5.4":0.030911820097245,"6.2-6.4":0.082431520259319,"7.2-7.4":0.25759850081037,"8.2":0.082431520259319,"9.2":0.49458912155592,"10.1":4.7295084748784},B:{"12":0.008194,"13":0.004097,"14":0.016388,"15":0.012291,"16":0.032776,"17":0.102425,"18":0.69649,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.016388,"9":0.008194,"10":0.004097,"11":0.413797,"5.5":0},N:{"10":0.011068125,"11":0.077476875},J:{"7":0,"10":0.005903},R:{_:"0"},M:{"0":0.253829},O:{"0":1.221921},Q:{"1.2":0.023612},S:{"2.5":0},H:{"0":1.1736015979381},L:{"0":62.367711}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MV.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MV.js new file mode 100644 index 0000000..aa35bec --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MV.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.003919,"34":0,"35":0,"36":0,"37":0,"38":0.003919,"39":0,"40":0.003919,"41":0,"42":0,"43":0,"44":0.003919,"45":0.003919,"46":0,"47":0.007838,"48":0,"49":0.015676,"50":0,"51":0.003919,"52":0.003919,"53":0,"54":0.003919,"55":0.011757,"56":0.007838,"57":0.015676,"58":0.011757,"59":0.003919,"60":0.003919,"61":0.007838,"62":0.003919,"63":0.015676,"64":0.003919,"65":0.007838,"66":0,"67":0.003919,"68":0.003919,"69":0.035271,"70":0.03919,"71":0.054866,"72":0.050947,"73":0.035271,"74":0.054866,"75":0.027433,"76":0.023514,"77":0.109732,"78":6.058774,"79":5.392544,"80":0.015676,"81":0.007838},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003919,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.003919,"48":0.003919,"49":0.011757,"50":0.003919,"51":0.003919,"52":0.011757,"53":0.003919,"54":0.003919,"55":0.003919,"56":0.007838,"57":0.007838,"58":0.003919,"59":0.003919,"60":0.015676,"61":0.003919,"62":0.003919,"63":0,"64":0,"65":0.003919,"66":0.007838,"67":0.031352,"68":0.090137,"69":0.027433,"70":0.266492,"71":0.815152,"72":0.086218,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.007838,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.003919,"46":0.003919,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.003919,"54":0,"55":0.003919,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.003919,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.003919,"10":0.003919,"11":0.003919,"12":0.031352,"13":0.419333,_:"0","3.1":0,"3.2":0,"5.1":0.003919,"6.1":0,"7.1":0,"9.1":0,"10.1":0.094056,"11.1":0.019595,"12.1":0.211626},G:{"8":0.0019786522652265,"3.2":0.0079146090609061,"4.0-4.1":0.003957304530453,"4.2-4.3":0,"5.0-5.1":0.011871913591359,"6.0-6.1":0.003957304530453,"7.0-7.1":0.013850565856586,"8.1-8.4":0.025722479447945,"9.0-9.2":0.023743827182718,"9.3":0.25128883768377,"10.0-10.2":0.087060699669967,"10.3":0.28096862166217,"11.0-11.2":0.23743827182718,"11.3-11.4":0.42343158475848,"12.0-12.1":0.60546759315932,"12.2-12.4":4.2857608064806,"13.0-13.1":6.2228613741374,"13.2":2.8334300438044,"13.3":4.463839510351},I:{"3":0.00062000352112676,"4":0.0026866819248826,_:"76","2.1":0,"2.2":0.00041333568075117,"2.3":0.00041333568075117,"4.1":0.0047533603286385,"4.2-4.3":0.10395392370892,"4.4":0,"4.4.3-4.4.4":0.06324035915493},P:{"4":0.25460242214533,"5.0-5.4":0.020368193771626,"6.2-6.4":0.020368193771626,"7.2-7.4":0.12220916262976,"8.2":0.081472775086505,"9.2":0.24441832525952,"10.1":2.1895808304498},B:{"12":0.003919,"13":0.007838,"14":0.003919,"15":0.011757,"16":0.03919,"17":0.062704,"18":0.203788,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.011757,"9":0.003919,"10":0,"11":0.097975,"5.5":0},N:{"10":0.012162,"11":0.036486},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.237159},O:{"0":2.000649},Q:{"1.2":0.012162},S:{"2.5":0},H:{"0":0.61600947938144},L:{"0":56.953018}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MW.js new file mode 100644 index 0000000..94dc13a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003729,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.007458,"34":0,"35":0,"36":0.003729,"37":0,"38":0,"39":0.007458,"40":0.007458,"41":0,"42":0,"43":0.003729,"44":0.007458,"45":0.003729,"46":0.011187,"47":0.003729,"48":0.007458,"49":0.011187,"50":0.007458,"51":0.003729,"52":0,"53":0.003729,"54":0,"55":0.011187,"56":0,"57":0,"58":0.011187,"59":0.007458,"60":0.007458,"61":0.007458,"62":0.007458,"63":0.033561,"64":0.007458,"65":0.003729,"66":0.003729,"67":0.014916,"68":0.003729,"69":0.026103,"70":0.018645,"71":0.011187,"72":0.029832,"73":0.070851,"74":0.078309,"75":0.029832,"76":0.03729,"77":0.134244,"78":2.215026,"79":1.338711,"80":0.011187,"81":0},C:{"2":0,"3":0,"4":0.003729,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.003729,"18":0,"19":0,"20":0.003729,"21":0.003729,"22":0,"23":0,"24":0.003729,"25":0,"26":0,"27":0,"28":0.003729,"29":0,"30":0,"31":0,"32":0.003729,"33":0.003729,"34":0,"35":0.014916,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.003729,"43":0.007458,"44":0.003729,"45":0.003729,"46":0.003729,"47":0.018645,"48":0.003729,"49":0.003729,"50":0,"51":0.003729,"52":0.022374,"53":0,"54":0.003729,"55":0.007458,"56":0.026103,"57":0.044748,"58":0.007458,"59":0,"60":0.026103,"61":0.018645,"62":0.003729,"63":0.003729,"64":0.003729,"65":0.014916,"66":0.011187,"67":0.003729,"68":0.067122,"69":0.048477,"70":0.294591,"71":0.645117,"72":0.07458,"73":0,"3.5":0,"3.6":0.003729},F:{"9":0,"11":0,"12":0,"15":0,"16":0.003729,"17":0,"18":0.119328,"19":0,"20":0.026103,"21":0,"22":0,"23":0.011187,"24":0,"25":0,"26":0.003729,"27":0,"28":0.003729,"29":0,"30":0.003729,"31":0.003729,"32":0.003729,"33":0.007458,"34":0.003729,"35":0.003729,"36":0.003729,"37":0.003729,"38":0.007458,"39":0,"40":0,"41":0,"42":0.003729,"43":0.003729,"44":0.007458,"45":0.033561,"46":0.007458,"47":0,"48":0,"49":0.003729,"50":0.003729,"51":0.007458,"52":0,"53":0.018645,"54":0.007458,"55":0.014916,"56":0.003729,"57":0,"58":0.003729,"60":0.003729,"62":0,"63":0.007458,"64":0.011187,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.137973},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.022374,"10":0,"11":0.018645,"12":0.029832,"13":0.160347,_:"0","3.1":0,"3.2":0,"5.1":4.940925,"6.1":0,"7.1":0,"9.1":0.003729,"10.1":0.007458,"11.1":0.014916,"12.1":0.067122},G:{"8":0.00039671497149715,"3.2":0.0015868598859886,"4.0-4.1":0.0007934299429943,"4.2-4.3":0,"5.0-5.1":0.0023802898289829,"6.0-6.1":0.0007934299429943,"7.0-7.1":0.00277700480048,"8.1-8.4":0.0051572946294629,"9.0-9.2":0.0047605796579658,"9.3":0.050382801380138,"10.0-10.2":0.017455458745875,"10.3":0.056333525952595,"11.0-11.2":0.047605796579658,"11.3-11.4":0.08489700390039,"12.0-12.1":0.12139478127813,"12.2-12.4":0.85928462826283,"13.0-13.1":1.2476685853585,"13.2":0.56809583918392,"13.3":0.89498897569757},I:{"3":0.0020989542253521,"4":0.0090954683098592,_:"76","2.1":0,"2.2":0.0013993028169014,"2.3":0.0013993028169014,"4.1":0.016091982394366,"4.2-4.3":0.3519246584507,"4.4":0,"4.4.3-4.4.4":0.21409333098592},P:{"4":3.2103173762376,"5.0-5.4":1.5796799787836,"6.2-6.4":0.30574451202263,"7.2-7.4":0.18344670721358,"8.2":0.13248928854314,"9.2":0.34651044695898,"10.1":1.4471906902405},B:{"12":0.041019,"13":0.03729,"14":0.026103,"15":0.048477,"16":0.059664,"17":0.115599,"18":0.48477,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0076117731958763,"8":0.030447092783505,"9":0.0076117731958763,"10":0.030447092783505,"11":0.29305326804124,"5.5":0},N:{"10":0.043221661538462,"11":0.65913033846154},J:{"7":0,"10":0.382531},R:{_:"0"},M:{"0":0.206943},O:{"0":5.198659},Q:{"1.2":0.100336},S:{"2.5":0.006271},H:{"0":12.022379768041},L:{"0":46.034093}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MX.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MX.js new file mode 100644 index 0000000..622dea1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MX.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005528,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.005528,"34":0,"35":0,"36":0.005528,"37":0,"38":0.011056,"39":0,"40":0.005528,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.005528,"47":0.005528,"48":0.005528,"49":0.281928,"50":0.005528,"51":0.005528,"52":0,"53":0.011056,"54":0,"55":0.005528,"56":0.005528,"57":0.005528,"58":0.011056,"59":0.005528,"60":0.011056,"61":0.011056,"62":0.005528,"63":0.022112,"64":0.005528,"65":0.044224,"66":0.016584,"67":0.077392,"68":0.016584,"69":0.02764,"70":0.049752,"71":0.060808,"72":0.05528,"73":0.066336,"74":0.060808,"75":0.099504,"76":0.127144,"77":0.210064,"78":12.41036,"79":8.468896,"80":0.011056,"81":0.005528},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005528,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.011056,"48":0.016584,"49":0,"50":0,"51":0,"52":0.02764,"53":0,"54":0,"55":0,"56":0.005528,"57":0.005528,"58":0,"59":0,"60":0.011056,"61":0.005528,"62":0.005528,"63":0.005528,"64":0.005528,"65":0.005528,"66":0.016584,"67":0.011056,"68":0.077392,"69":0.02764,"70":0.44224,"71":1.182992,"72":0.016584,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005528,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005528,"64":0.049752,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.005528},E:{"4":0,"5":0,"6":0,"7":0,"8":0.160312,"9":0.005528,"10":0.038696,"11":0.044224,"12":0.16584,"13":1.569952,_:"0","3.1":0,"3.2":0,"5.1":0.630192,"6.1":0,"7.1":0,"9.1":0.02764,"10.1":0.11056,"11.1":0.187952,"12.1":0.464352},G:{"8":0.00097380858085809,"3.2":0.0038952343234323,"4.0-4.1":0.0019476171617162,"4.2-4.3":0,"5.0-5.1":0.0058428514851485,"6.0-6.1":0.0019476171617162,"7.0-7.1":0.0068166600660066,"8.1-8.4":0.012659511551155,"9.0-9.2":0.011685702970297,"9.3":0.12367368976898,"10.0-10.2":0.042847577557756,"10.3":0.13828081848185,"11.0-11.2":0.11685702970297,"11.3-11.4":0.20839503630363,"12.0-12.1":0.29798542574257,"12.2-12.4":2.1092693861386,"13.0-13.1":3.0626279867987,"13.2":1.3944938877888,"13.3":2.1969121584158},I:{"3":0.00076261971830986,"4":0.0033046854460094,_:"76","2.1":0,"2.2":0.00050841314553991,"2.3":0.00050841314553991,"4.1":0.0058467511737089,"4.2-4.3":0.12786590610329,"4.4":0,"4.4.3-4.4.4":0.077787211267606},P:{"4":0.17294009160305,"5.0-5.4":0.010172946564885,"6.2-6.4":0.020345893129771,"7.2-7.4":0.030518839694656,"8.2":0.020345893129771,"9.2":0.091556519083969,"10.1":0.97660287022901},B:{"12":0.005528,"13":0.005528,"14":0.011056,"15":0.016584,"16":0.016584,"17":0.099504,"18":0.724168,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.028013513513514,"9":0.0056027027027027,"10":0.016808108108108,"11":0.36417567567568,"5.5":0},N:{"10":0,"11":0.053664},J:{"7":0,"10":0.004472},R:{_:"0"},M:{"0":0.107328},O:{"0":0.058136},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.19898863230241},L:{"0":57.72456}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MY.js new file mode 100644 index 0000000..dff33d6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004743,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004743,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004743,"34":0.009486,"35":0,"36":0.004743,"37":0,"38":0.037944,"39":0,"40":0,"41":0,"42":0,"43":0.004743,"44":0,"45":0,"46":0.004743,"47":0,"48":0.004743,"49":0.203949,"50":0.004743,"51":0.004743,"52":0.004743,"53":0.052173,"54":0.004743,"55":0.018972,"56":0.014229,"57":0.009486,"58":0.023715,"59":0.014229,"60":0.009486,"61":0.009486,"62":0.014229,"63":0.052173,"64":0.009486,"65":0.037944,"66":0.023715,"67":0.052173,"68":0.023715,"69":0.075888,"70":0.066402,"71":0.085374,"72":0.071145,"73":0.384183,"74":0.123318,"75":0.123318,"76":0.132804,"77":0.199206,"78":8.603802,"79":7.01964,"80":0.028458,"81":0.009486},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004743,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.004743,"40":0,"41":0,"42":0,"43":0.004743,"44":0,"45":0,"46":0,"47":0.004743,"48":0.014229,"49":0,"50":0,"51":0,"52":0.042687,"53":0.023715,"54":0,"55":0.004743,"56":0.004743,"57":0,"58":0,"59":0.004743,"60":0.009486,"61":0.004743,"62":0.004743,"63":0.004743,"64":0.004743,"65":0.009486,"66":0.009486,"67":0.009486,"68":0.085374,"69":0.018972,"70":0.28458,"71":0.939114,"72":0.04743,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.009486,"37":0.056916,"38":0,"39":0,"40":0.004743,"41":0,"42":0,"43":0,"44":0,"45":0.004743,"46":0.004743,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004743,"54":0,"55":0.009486,"56":0,"57":0,"58":0.004743,"60":0,"62":0,"63":0.004743,"64":0.009486,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004743},E:{"4":0,"5":0,"6":0,"7":0,"8":0.009486,"9":0.004743,"10":0.009486,"11":0.018972,"12":0.061659,"13":0.692478,_:"0","3.1":0,"3.2":0,"5.1":0.066402,"6.1":0,"7.1":0,"9.1":0.009486,"10.1":0.052173,"11.1":0.085374,"12.1":0.203949},G:{"8":0.0012906823682368,"3.2":0.0051627294729473,"4.0-4.1":0.0025813647364736,"4.2-4.3":0,"5.0-5.1":0.0077440942094209,"6.0-6.1":0.0025813647364736,"7.0-7.1":0.0090347765776578,"8.1-8.4":0.016778870787079,"9.0-9.2":0.015488188418842,"9.3":0.16391666076608,"10.0-10.2":0.05679002420242,"10.3":0.18327689628963,"11.0-11.2":0.15488188418842,"11.3-11.4":0.27620602680268,"12.0-12.1":0.39494880468047,"12.2-12.4":2.795618009601,"13.0-13.1":4.0591960481048,"13.2":1.8482571513151,"13.3":2.9117794227423},I:{"3":0.00077464788732394,"4":0.0033568075117371,_:"76","2.1":0,"2.2":0.00051643192488263,"2.3":0.00051643192488263,"4.1":0.0059389671361502,"4.2-4.3":0.12988262910798,"4.4":0,"4.4.3-4.4.4":0.079014084507042},P:{"4":0.65104846768061,"5.0-5.4":0.020668205323194,"6.2-6.4":0.051670513307985,"7.2-7.4":0.082672821292776,"8.2":0.062004615969582,"9.2":0.29968897718631,"10.1":1.5397812965779},B:{"12":0,"13":0.004743,"14":0.004743,"15":0.004743,"16":0.009486,"17":0.042687,"18":0.52173,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.019649571428571,"9":0.0049123928571429,"10":0.0098247857142857,"11":0.24070725,"5.5":0},N:{"10":0,"11":0.005257},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.147196},O:{"0":2.008174},Q:{"1.2":0.015771},S:{"2.5":0},H:{"0":1.3537407285223},L:{"0":55.815505}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/MZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/MZ.js new file mode 100644 index 0000000..3e14399 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/MZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003079,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.003079,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.006158,"34":0,"35":0,"36":0.009237,"37":0,"38":0,"39":0,"40":0.03079,"41":0,"42":0.003079,"43":0.113923,"44":0,"45":0,"46":0.003079,"47":0,"48":0,"49":0.036948,"50":0.003079,"51":0,"52":0,"53":0.003079,"54":0,"55":0.03079,"56":0,"57":0,"58":0.006158,"59":0,"60":0.015395,"61":0.027711,"62":0.003079,"63":0.09237,"64":0.006158,"65":0.012316,"66":0.003079,"67":0.009237,"68":0.006158,"69":0.067738,"70":0.012316,"71":0.024632,"72":0.018474,"73":0.03079,"74":0.06158,"75":0.024632,"76":0.06158,"77":0.089291,"78":2.121431,"79":1.502552,"80":0.006158,"81":0.012316},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.009237,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.003079,"43":0.003079,"44":0,"45":0,"46":0,"47":0.003079,"48":0.003079,"49":0,"50":0,"51":0,"52":0.015395,"53":0.003079,"54":0,"55":0,"56":0.003079,"57":0.003079,"58":0,"59":0.003079,"60":0.006158,"61":0.003079,"62":0,"63":0,"64":0,"65":0,"66":0.003079,"67":0.003079,"68":0.043106,"69":0.015395,"70":0.181661,"71":0.458771,"72":0.021553,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.003079,"19":0.003079,"20":0.021553,"21":0,"22":0.003079,"23":0.012316,"24":0,"25":0,"26":0.003079,"27":0,"28":0.003079,"29":0,"30":0.003079,"31":0,"32":0.006158,"33":0,"34":0,"35":0.006158,"36":0,"37":0.003079,"38":0.003079,"39":0,"40":0,"41":0,"42":0.006158,"43":0,"44":0,"45":0.018474,"46":0.006158,"47":0,"48":0,"49":0.003079,"50":0,"51":0.003079,"52":0,"53":0.006158,"54":0.006158,"55":0.009237,"56":0,"57":0,"58":0.003079,"60":0,"62":0,"63":0.006158,"64":0.018474,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.003079,"12.1":0.03079},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.036948,"10":0.006158,"11":0.021553,"12":0.036948,"13":0.227846,_:"0","3.1":0,"3.2":0,"5.1":0.705091,"6.1":0,"7.1":0.003079,"9.1":0.009237,"10.1":0.009237,"11.1":0.03079,"12.1":0.070817},G:{"8":0.00040909830983098,"3.2":0.0016363932393239,"4.0-4.1":0.00081819661966197,"4.2-4.3":0,"5.0-5.1":0.0024545898589859,"6.0-6.1":0.00081819661966197,"7.0-7.1":0.0028636881688169,"8.1-8.4":0.0053182780278028,"9.0-9.2":0.0049091797179718,"9.3":0.051955485348535,"10.0-10.2":0.018000325632563,"10.3":0.058091959996,"11.0-11.2":0.049091797179718,"11.3-11.4":0.08754703830383,"12.0-12.1":0.12518408280828,"12.2-12.4":0.88610693909391,"13.0-13.1":1.2866141844184,"13.2":0.58582877967797,"13.3":0.9229257869787},I:{"3":0.0013976091549296,"4":0.0060563063380282,_:"76","2.1":0,"2.2":0.00093173943661972,"2.3":0.00093173943661972,"4.1":0.010715003521127,"4.2-4.3":0.23433246830986,"4.4":0,"4.4.3-4.4.4":0.14255613380282},P:{"4":1.6237455896739,"5.0-5.4":0.051061182065217,"6.2-6.4":0.081697891304348,"7.2-7.4":0.27573038315217,"8.2":0.061273418478261,"9.2":0.42891392934783,"10.1":1.2356806059783},B:{"12":0.018474,"13":0.012316,"14":0.012316,"15":0.012316,"16":0.021553,"17":0.055422,"18":0.249399,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.043362583333333,"9":0,"10":0.01000675,"11":0.18679266666667,"5.5":0},N:{"10":0.0304524,"11":0.2740716},J:{"7":0,"10":0.152262},R:{_:"0"},M:{"0":0.096894},O:{"0":0.892809},Q:{"1.2":0.083052},S:{"2.5":0},H:{"0":21.694849623711},L:{"0":50.151493}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NA.js new file mode 100644 index 0000000..d50d001 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004316,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.008632,"37":0,"38":0.038844,"39":0.004316,"40":0.008632,"41":0,"42":0,"43":0.004316,"44":0.004316,"45":0,"46":0.004316,"47":0.038844,"48":0.004316,"49":0.051792,"50":0,"51":0.008632,"52":0,"53":0,"54":0,"55":0.004316,"56":0,"57":0.025896,"58":0.012948,"59":0.004316,"60":0.017264,"61":0,"62":0.004316,"63":0.181272,"64":0.008632,"65":0.017264,"66":0.025896,"67":0.008632,"68":0.008632,"69":0.060424,"70":0.025896,"71":0.02158,"72":0.012948,"73":0.08632,"74":0.030212,"75":0.038844,"76":0.103584,"77":0.125164,"78":5.166252,"79":3.4528,"80":0.008632,"81":0.004316},C:{"2":0,"3":0.004316,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004316,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004316,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004316,"46":0,"47":0.06474,"48":0.008632,"49":0,"50":0,"51":0,"52":0.02158,"53":0,"54":0,"55":0,"56":0.012948,"57":0,"58":0.004316,"59":0.004316,"60":0.008632,"61":0,"62":0,"63":0.004316,"64":0,"65":0,"66":0.008632,"67":0.008632,"68":0.155376,"69":0.025896,"70":0.522236,"71":1.27322,"72":0.047476,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.004316,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.008632,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.012948,"46":0.008632,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004316,"54":0,"55":0.02158,"56":0.004316,"57":0,"58":0,"60":0.004316,"62":0.004316,"63":0.012948,"64":0.017264,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.008632},E:{"4":0,"5":0.004316,"6":0,"7":0,"8":0,"9":0.004316,"10":0,"11":0.030212,"12":0.056108,"13":0.919308,_:"0","3.1":0,"3.2":0,"5.1":0.185588,"6.1":0,"7.1":0,"9.1":0.004316,"10.1":0.012948,"11.1":0.051792,"12.1":0.082004},G:{"8":0.00085956555655566,"3.2":0.0034382622262226,"4.0-4.1":0.0017191311131113,"4.2-4.3":0,"5.0-5.1":0.0051573933393339,"6.0-6.1":0.0017191311131113,"7.0-7.1":0.0060169588958896,"8.1-8.4":0.011174352235224,"9.0-9.2":0.010314786678668,"9.3":0.10916482568257,"10.0-10.2":0.037820884488449,"10.3":0.1220583090309,"11.0-11.2":0.10314786678668,"11.3-11.4":0.18394702910291,"12.0-12.1":0.26302706030603,"12.2-12.4":1.8618189954995,"13.0-13.1":2.7033336753675,"13.2":1.2308978769877,"13.3":1.9391798955896},I:{"3":0.0016868169014085,"4":0.0073095399061033,_:"76","2.1":0,"2.2":0.001124544600939,"2.3":0.001124544600939,"4.1":0.012932262910798,"4.2-4.3":0.28282296713615,"4.4":0,"4.4.3-4.4.4":0.17205532394366},P:{"4":0.92544023622047,"5.0-5.4":0.010282669291339,"6.2-6.4":0.051413346456693,"7.2-7.4":0.50385079527559,"8.2":0.051413346456693,"9.2":0.59639481889764,"10.1":3.0848007874016},B:{"12":0.047476,"13":0.02158,"14":0.030212,"15":0.025896,"16":0.038844,"17":0.159692,"18":1.018576,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.09791925,"9":0,"10":0.02670525,"11":0.8723715,"5.5":0},N:{"10":0.102312,"11":0.147784},J:{"7":0,"10":0.022736},R:{_:"0"},M:{"0":0.272832},O:{"0":1.006068},Q:{"1.2":0.022736},S:{"2.5":0},H:{"0":4.0466954776632},L:{"0":58.315412}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NC.js new file mode 100644 index 0000000..deece01 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.012886,"37":0,"38":0.025772,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.251277,"50":0,"51":0,"52":0,"53":0.012886,"54":0,"55":0.006443,"56":0.045101,"57":0.012886,"58":0,"59":0,"60":0.006443,"61":0.006443,"62":0,"63":0.019329,"64":0.006443,"65":0.148189,"66":0.083759,"67":0.199733,"68":0.012886,"69":0.025772,"70":0.025772,"71":0.019329,"72":0.122417,"73":0.006443,"74":0.631414,"75":0.103088,"76":0.083759,"77":0.38658,"78":11.494312,"79":8.427444,"80":0.045101,"81":0.006443},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.06443,"17":0,"18":0,"19":0,"20":0,"21":0.025772,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.006443,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.103088,"46":0,"47":0.006443,"48":0.051544,"49":0,"50":0,"51":0.025772,"52":0.148189,"53":0,"54":0,"55":0.012886,"56":0,"57":0.006443,"58":0,"59":0,"60":0.180404,"61":0.006443,"62":0,"63":0.006443,"64":0,"65":0.019329,"66":0.012886,"67":0.032215,"68":0.38658,"69":0.025772,"70":1.791154,"71":4.394126,"72":0,"73":0,"3.5":0,"3.6":0.006443},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.025772,"56":0.057987,"57":0,"58":0,"60":0,"62":0,"63":0.032215,"64":0.141746,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.006443,"10":0.006443,"11":0.083759,"12":0.122417,"13":3.060425,_:"0","3.1":0,"3.2":0,"5.1":0.006443,"6.1":0,"7.1":0,"9.1":0.051544,"10.1":0.070873,"11.1":0.405909,"12.1":0.792489},G:{"8":0.0016695300530053,"3.2":0.0066781202120212,"4.0-4.1":0.0033390601060106,"4.2-4.3":0,"5.0-5.1":0.010017180318032,"6.0-6.1":0.0033390601060106,"7.0-7.1":0.011686710371037,"8.1-8.4":0.021703890689069,"9.0-9.2":0.020034360636064,"9.3":0.21203031673167,"10.0-10.2":0.073459322332233,"10.3":0.23707326752675,"11.0-11.2":0.20034360636064,"11.3-11.4":0.35727943134313,"12.0-12.1":0.51087619621962,"12.2-12.4":3.6162020948095,"13.0-13.1":5.2506720167017,"13.2":2.3907670359036,"13.3":3.76645979958},I:{"3":0.0012510669014085,"4":0.0054212899061033,_:"76","2.1":0,"2.2":0.00083404460093897,"2.3":0.00083404460093897,"4.1":0.0095915129107981,"4.2-4.3":0.20976221713615,"4.4":0,"4.4.3-4.4.4":0.12760882394366},P:{"4":0.20345298958333,"5.0-5.4":0.010708052083333,"6.2-6.4":0.03212415625,"7.2-7.4":0.22486909375,"8.2":0.053540260416667,"9.2":0.28911740625,"10.1":3.2873719895833},B:{"12":0.012886,"13":0.012886,"14":0.012886,"15":0.019329,"16":0.025772,"17":0.115974,"18":2.068203,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.676515,"5.5":0},N:{"10":0,"11":0.017785},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.423283},O:{"0":0.053355},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.020205226804124},L:{"0":37.134183}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NE.js new file mode 100644 index 0000000..616e0d3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005023,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.005023,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.005023,"38":0,"39":0,"40":0.005023,"41":0,"42":0,"43":0.005023,"44":0.005023,"45":0,"46":0,"47":0,"48":0,"49":0.035161,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.060276,"56":0.005023,"57":0,"58":0.035161,"59":0,"60":0.005023,"61":0,"62":0.005023,"63":0.597737,"64":0.005023,"65":0.005023,"66":0,"67":0.010046,"68":0,"69":0.130598,"70":0.005023,"71":0.010046,"72":0.005023,"73":0.030138,"74":0.015069,"75":0.025115,"76":0.080368,"77":0.025115,"78":0.868979,"79":0.778565,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005023,"22":0,"23":0.005023,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.005023,"33":0.005023,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.010046,"44":0,"45":0,"46":0,"47":0.020092,"48":0.015069,"49":0,"50":0.005023,"51":0.015069,"52":0.015069,"53":0,"54":0,"55":0,"56":0.020092,"57":0,"58":0,"59":0,"60":0.005023,"61":0.005023,"62":0,"63":0,"64":0,"65":0.005023,"66":0.045207,"67":0.005023,"68":0.085391,"69":0.020092,"70":0.276265,"71":0.5023,"72":0.015069,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0.005023,"16":0.005023,"17":0,"18":0,"19":0,"20":0.025115,"21":0,"22":0,"23":0.015069,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.005023,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.005023,"38":0,"39":0,"40":0,"41":0,"42":0.005023,"43":0,"44":0,"45":0.025115,"46":0.025115,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.010046,"54":0,"55":0.005023,"56":0.040184,"57":0,"58":0,"60":0,"62":0,"63":0.005023,"64":0.015069,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.030138},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.040184,"11":0.005023,"12":0.010046,"13":0.060276,_:"0","3.1":0,"3.2":0,"5.1":19.062285,"6.1":0,"7.1":0.005023,"9.1":0,"10.1":0,"11.1":0.055253,"12.1":0.015069},G:{"8":0.00023620852085209,"3.2":0.00094483408340834,"4.0-4.1":0.00047241704170417,"4.2-4.3":0,"5.0-5.1":0.0014172511251125,"6.0-6.1":0.00047241704170417,"7.0-7.1":0.0016534596459646,"8.1-8.4":0.0030707107710771,"9.0-9.2":0.002834502250225,"9.3":0.029998482148215,"10.0-10.2":0.010393174917492,"10.3":0.033541609960996,"11.0-11.2":0.02834502250225,"11.3-11.4":0.050548623462346,"12.0-12.1":0.072279807380738,"12.2-12.4":0.51162765616562,"13.0-13.1":0.74287579807981,"13.2":0.33825060186019,"13.3":0.5328864230423},I:{"3":0.0037802711267606,"4":0.016381174882629,_:"76","2.1":0,"2.2":0.0025201807511737,"2.3":0.0025201807511737,"4.1":0.028982078638498,"4.2-4.3":0.63382545892019,"4.4":0,"4.4.3-4.4.4":0.38558765492958},P:{"4":0.20212714285714,"5.0-5.4":0.010106357142857,"6.2-6.4":0.020212714285714,"7.2-7.4":0.040425428571429,"8.2":0.010106357142857,"9.2":0.282978,"10.1":0.424467},B:{"12":0.010046,"13":0.020092,"14":0.005023,"15":0.010046,"16":0.015069,"17":0.05023,"18":0.125575,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.08600356097561,"9":0.0095559512195122,"10":0.028667853658537,"11":0.26756663414634,"5.5":0},N:{"10":0.14931,"11":0.039816},J:{"7":0,"10":0.109494},R:{_:"0"},M:{"0":0.134379},O:{"0":3.548601},Q:{"1.2":0.039816},S:{"2.5":0.029862},H:{"0":8.3542023556701},L:{"0":51.521377}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NF.js new file mode 100644 index 0000000..1b14792 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0.042434,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.084868,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.084868,"43":0.042434,"44":0,"45":0,"46":0.084868,"47":0.042434,"48":0,"49":0.260666,"50":0.042434,"51":0.260666,"52":0,"53":0,"54":0.042434,"55":0,"56":0.084868,"57":0.084868,"58":0,"59":0.042434,"60":0,"61":0.084868,"62":0.521332,"63":0,"64":0,"65":0.084868,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.387968,"72":0,"73":0.691068,"74":0.387968,"75":0.175798,"76":0.3031,"77":0.042434,"78":6.843998,"79":5.1527,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.084868,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.084868,"32":0,"33":0,"34":0,"35":0,"36":0.042434,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.042434,"44":0,"45":0.260666,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.042434,"53":0.042434,"54":0,"55":0,"56":0.3031,"57":0.042434,"58":0,"59":0.084868,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.084868,"67":0.084868,"68":0.478898,"69":0.042434,"70":2.1217,"71":2.855202,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.042434,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.042434,"38":0,"39":0,"40":0.042434,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.084868,"49":0,"50":0,"51":0.042434,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.084868,"58":0,"60":0.042434,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0.084868,"6":0,"7":0,"8":0.042434,"9":0,"10":0,"11":0.218232,"12":5.025398,"13":0.691068,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.175798,"10.1":0.127302,"11.1":0.345534,"12.1":0},G:{"8":0.0022331231123112,"3.2":0.0089324924492449,"4.0-4.1":0.0044662462246225,"4.2-4.3":0,"5.0-5.1":0.013398738673867,"6.0-6.1":0.0044662462246225,"7.0-7.1":0.015631861786179,"8.1-8.4":0.029030600460046,"9.0-9.2":0.026797477347735,"9.3":0.28360663526353,"10.0-10.2":0.098257416941694,"10.3":0.31710348194819,"11.0-11.2":0.26797477347735,"11.3-11.4":0.4778883460346,"12.0-12.1":0.68333567236724,"12.2-12.4":4.8369446612661,"13.0-13.1":7.0231721882188,"13.2":3.1978322968297,"13.3":5.0379257413741},I:{"3":0.00044824647887324,"4":0.0019424014084507,_:"76","2.1":0,"2.2":0.00029883098591549,"2.3":0.00029883098591549,"4.1":0.0034365563380282,"4.2-4.3":0.075155992957746,"4.4":0,"4.4.3-4.4.4":0.04572114084507},P:{"4":0.45665874635569,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":3.1859912536443},B:{"12":0.042434,"13":0.042434,"14":0.084868,"15":0.127302,"16":0,"17":0,"18":0.866866,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.218232,"9":0.175798,"10":0.042434,"11":1.169966,"5.5":0},N:{"10":0.076134666666667,"11":0.15226933333333},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.070836635738832},L:{"0":38.533138}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NG.js new file mode 100644 index 0000000..0ff1fe4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002621,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.002621,"37":0.002621,"38":0,"39":0,"40":0.013105,"41":0,"42":0,"43":0.002621,"44":0,"45":0,"46":0,"47":0.020968,"48":0.002621,"49":0.015726,"50":0.005242,"51":0.002621,"52":0,"53":0,"54":0,"55":0.007863,"56":0.005242,"57":0.002621,"58":0.018347,"59":0.002621,"60":0.002621,"61":0.002621,"62":0.005242,"63":0.036694,"64":0.013105,"65":0.005242,"66":0.005242,"67":0.007863,"68":0.007863,"69":0.041936,"70":0.036694,"71":0.041936,"72":0.034073,"73":0.034073,"74":0.036694,"75":0.034073,"76":0.055041,"77":0.089114,"78":1.627641,"79":1.174208,"80":0.005242,"81":0.002621},C:{"2":0,"3":0,"4":0.002621,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.002621,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.002621,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.034073,"44":0.005242,"45":0.002621,"46":0,"47":0.013105,"48":0.005242,"49":0.002621,"50":0.002621,"51":0,"52":0.018347,"53":0.002621,"54":0.002621,"55":0.005242,"56":0.007863,"57":0.002621,"58":0.002621,"59":0.002621,"60":0.005242,"61":0.005242,"62":0.005242,"63":0.007863,"64":0.007863,"65":0.013105,"66":0.013105,"67":0.013105,"68":0.10484,"69":0.015726,"70":0.188712,"71":0.513716,"72":0.047178,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.002621,"15":0.002621,"16":0.005242,"17":0,"18":0,"19":0.005242,"20":0.023589,"21":0.002621,"22":0,"23":0.036694,"24":0.002621,"25":0,"26":0.002621,"27":0.005242,"28":0.010484,"29":0.002621,"30":0.010484,"31":0,"32":0.005242,"33":0.005242,"34":0,"35":0,"36":0.007863,"37":0.002621,"38":0.005242,"39":0,"40":0,"41":0,"42":0.007863,"43":0.002621,"44":0.002621,"45":0.065525,"46":0.031452,"47":0,"48":0.002621,"49":0.005242,"50":0.002621,"51":0.002621,"52":0,"53":0.039315,"54":0.023589,"55":0.018347,"56":0.007863,"57":0,"58":0.002621,"60":0.002621,"62":0,"63":0.005242,"64":0.007863,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.186091},E:{"4":0,"5":0,"6":0,"7":0.002621,"8":0.002621,"9":0,"10":0.002621,"11":0.005242,"12":0.015726,"13":0.089114,_:"0","3.1":0,"3.2":0,"5.1":0.196575,"6.1":0,"7.1":0.002621,"9.1":0,"10.1":0.005242,"11.1":0.010484,"12.1":0.034073},G:{"8":0.00048194319431943,"3.2":0.0019277727772777,"4.0-4.1":0.00096388638863886,"4.2-4.3":0,"5.0-5.1":0.0028916591659166,"6.0-6.1":0.00096388638863886,"7.0-7.1":0.003373602360236,"8.1-8.4":0.0062652615261526,"9.0-9.2":0.0057833183318332,"9.3":0.061206785678568,"10.0-10.2":0.021205500550055,"10.3":0.068435933593359,"11.0-11.2":0.057833183318332,"11.3-11.4":0.10313584358436,"12.0-12.1":0.14747461746175,"12.2-12.4":1.0438889588959,"13.0-13.1":1.5157113461346,"13.2":0.69014265426543,"13.3":1.0872638463846},I:{"3":0.0011134154929577,"4":0.0048248004694836,_:"76","2.1":0,"2.2":0.00074227699530516,"2.3":0.00074227699530516,"4.1":0.0085361854460094,"4.2-4.3":0.18668266431925,"4.4":0,"4.4.3-4.4.4":0.11356838028169},P:{"4":0.13346365217391,"5.0-5.4":0.030799304347826,"6.2-6.4":0.020532869565217,"7.2-7.4":0.1129307826087,"8.2":0.030799304347826,"9.2":0.25666086956522,"10.1":0.5954532173913},B:{"12":0.010484,"13":0.005242,"14":0.007863,"15":0.007863,"16":0.007863,"17":0.023589,"18":0.125808,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.043453421052632,"9":0.0062076315789474,"10":0.0093114473684211,"11":0.0589725,"5.5":0},N:{"10":0.022137,"11":0.177096},J:{"7":0,"10":0.154959},R:{_:"0"},M:{"0":0.538667},O:{"0":3.497646},Q:{"1.2":0.029516},S:{"2.5":0.036895},H:{"0":28.52367664433},L:{"0":43.872798}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NI.js new file mode 100644 index 0000000..5f049a2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.020334,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.013556,"39":0,"40":0.006778,"41":0,"42":0.013556,"43":0.006778,"44":0,"45":0,"46":0.006778,"47":0.006778,"48":0.027112,"49":0.311788,"50":0,"51":0.006778,"52":0,"53":0.013556,"54":0.006778,"55":0.006778,"56":0.006778,"57":0.006778,"58":0.013556,"59":0.006778,"60":0.013556,"61":0.006778,"62":0.006778,"63":0.074558,"64":0.013556,"65":0.013556,"66":0.013556,"67":0.061002,"68":0.088114,"69":0.06778,"70":0.06778,"71":0.122004,"72":0.06778,"73":0.06778,"74":0.162672,"75":1.009922,"76":0.189784,"77":0.257564,"78":16.443428,"79":12.823976,"80":0.013556,"81":0.006778},C:{"2":0,"3":0.006778,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.006778,"41":0,"42":0,"43":0.013556,"44":0,"45":0.006778,"46":0,"47":0.006778,"48":0.013556,"49":0,"50":0,"51":0.006778,"52":0.027112,"53":0.006778,"54":0,"55":0.006778,"56":0.013556,"57":0.006778,"58":0.006778,"59":0,"60":0.006778,"61":0,"62":0,"63":0.006778,"64":0.006778,"65":0.020334,"66":0.027112,"67":0.006778,"68":0.094892,"69":0.040668,"70":0.772692,"71":2.060512,"72":0.020334,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.006778,"18":0,"19":0,"20":0,"21":0,"22":0.006778,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.006778,"30":0,"31":0,"32":0.006778,"33":0.006778,"34":0,"35":0,"36":0,"37":0.006778,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006778,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006778,"54":0,"55":0,"56":0,"57":0,"58":0,"60":1.057368,"62":0,"63":0.020334,"64":0.149116,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.013556},E:{"4":0.006778,"5":0,"6":0,"7":0,"8":0.013556,"9":0,"10":0.006778,"11":0.006778,"12":0.122004,"13":0.989588,_:"0","3.1":0,"3.2":0,"5.1":3.666898,"6.1":0,"7.1":0,"9.1":0.006778,"10.1":0.047446,"11.1":0.122004,"12.1":0.325344},G:{"8":0.00043818901890189,"3.2":0.0017527560756076,"4.0-4.1":0.00087637803780378,"4.2-4.3":0,"5.0-5.1":0.0026291341134113,"6.0-6.1":0.00087637803780378,"7.0-7.1":0.0030673231323132,"8.1-8.4":0.0056964572457246,"9.0-9.2":0.0052582682268227,"9.3":0.05565000540054,"10.0-10.2":0.019280316831683,"10.3":0.062222840684068,"11.0-11.2":0.052582682268227,"11.3-11.4":0.093772450045004,"12.0-12.1":0.13408583978398,"12.2-12.4":0.94911741494149,"13.0-13.1":1.3781044644464,"13.2":0.62748667506751,"13.3":0.98855442664266},I:{"3":0.0013321478873239,"4":0.0057726408450704,_:"76","2.1":0,"2.2":0.0008880985915493,"2.3":0.0008880985915493,"4.1":0.010213133802817,"4.2-4.3":0.22335679577465,"4.4":0,"4.4.3-4.4.4":0.13587908450704},P:{"4":0.42545045454545,"5.0-5.4":0.030389318181818,"6.2-6.4":0.050648863636364,"7.2-7.4":0.18233590909091,"8.2":0.060778636363636,"9.2":0.31402295454545,"10.1":1.6005040909091},B:{"12":0.013556,"13":0.006778,"14":0.006778,"15":0.013556,"16":0.013556,"17":0.061002,"18":0.501572,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0077947,"7":0.0077947,"8":0.077947,"9":0.0233841,"10":0.0311788,"11":0.1636887,"5.5":0},N:{"10":0.012888,"11":0.051552},J:{"7":0,"10":0.003222},R:{_:"0"},M:{"0":0.077328},O:{"0":0.186876},Q:{"1.2":0.003222},S:{"2.5":0},H:{"0":0.75039383505155},L:{"0":44.719842}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NL.js new file mode 100644 index 0000000..953b393 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.005887,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005887,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.005887,"38":0.005887,"39":0,"40":0.005887,"41":0.005887,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.011774,"49":0.47096,"50":0.005887,"51":0.005887,"52":0,"53":0.005887,"54":0,"55":0.005887,"56":0.011774,"57":0.005887,"58":0.011774,"59":0.005887,"60":0.017661,"61":0.023548,"62":0.005887,"63":0.035322,"64":0.011774,"65":0.035322,"66":0.017661,"67":0.047096,"68":0.023548,"69":0.041209,"70":0.076531,"71":0.105966,"72":0.100079,"73":0.111853,"74":0.064757,"75":0.141288,"76":0.194271,"77":0.347333,"78":11.314814,"79":6.428604,"80":0.017661,"81":0.005887},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.011774,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.011774,"42":0,"43":0.011774,"44":0,"45":0.011774,"46":0,"47":0.005887,"48":0.017661,"49":0.005887,"50":0.005887,"51":0,"52":0.041209,"53":0.005887,"54":0,"55":0.005887,"56":0.017661,"57":0.005887,"58":0.005887,"59":0,"60":0.029435,"61":0.005887,"62":0.011774,"63":0.011774,"64":0.017661,"65":0.011774,"66":0.017661,"67":0.017661,"68":0.217819,"69":0.041209,"70":0.694666,"71":1.507072,"72":0.017661,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005887,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005887,"46":0.005887,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005887,"56":0.005887,"57":0.005887,"58":0.005887,"60":0,"62":0.005887,"63":0.005887,"64":0.011774,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005887,"9":0.005887,"10":0.017661,"11":0.035322,"12":0.206045,"13":3.691149,_:"0","3.1":0,"3.2":0,"5.1":0.777084,"6.1":0,"7.1":0,"9.1":0.017661,"10.1":0.076531,"11.1":0.253141,"12.1":0.635796},G:{"8":0.0027008293829383,"3.2":0.010803317531753,"4.0-4.1":0.0054016587658766,"4.2-4.3":0,"5.0-5.1":0.01620497629763,"6.0-6.1":0.0054016587658766,"7.0-7.1":0.018905805680568,"8.1-8.4":0.035110781978198,"9.0-9.2":0.03240995259526,"9.3":0.34300533163316,"10.0-10.2":0.11883649284928,"10.3":0.38351777237724,"11.0-11.2":0.3240995259526,"11.3-11.4":0.57797748794879,"12.0-12.1":0.82645379117912,"12.2-12.4":5.8499964434443,"13.0-13.1":8.4941084093409,"13.2":3.8675876763676,"13.3":6.0930710879088},I:{"3":0.00083484507042254,"4":0.003617661971831,_:"76","2.1":0,"2.2":0.00055656338028169,"2.3":0.00055656338028169,"4.1":0.0064004788732394,"4.2-4.3":0.13997569014085,"4.4":0,"4.4.3-4.4.4":0.085154197183099},P:{"4":0.094678096153846,"5.0-5.4":0.010519788461538,"6.2-6.4":0.010519788461538,"7.2-7.4":0.042079153846154,"8.2":0.021039576923077,"9.2":0.22091555769231,"10.1":4.4709100961538},B:{"12":0,"13":0.005887,"14":0.011774,"15":0.017661,"16":0.029435,"17":0.188384,"18":2.390122,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0063875141700405,"7":0,"8":0.044712599190283,"9":0.038325085020243,"10":0.019162542510121,"11":1.4691282591093,"5.5":0},N:{"10":0,"11":0.020565},J:{"7":0,"10":0.004113},R:{_:"0"},M:{"0":0.24678},O:{"0":0.472995},Q:{"1.2":0.016452},S:{"2.5":0},H:{"0":0.20248397938144},L:{"0":30.137123}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NO.js new file mode 100644 index 0000000..15c4092 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005272,"39":0,"40":0.005272,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.126528,"50":0,"51":0,"52":0,"53":0.005272,"54":0.005272,"55":0.005272,"56":0.031632,"57":0.005272,"58":0.010544,"59":0.005272,"60":0,"61":0.005272,"62":0.015816,"63":0.031632,"64":0.005272,"65":0.015816,"66":0.084352,"67":0.05272,"68":0.02636,"69":0.036904,"70":0.047448,"71":0.05272,"72":0.05272,"73":0.073808,"74":0.05272,"75":0.084352,"76":0.21088,"77":0.36904,"78":9.953536,"79":5.583048,"80":0.015816,"81":0.005272},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.010544,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.010544,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.010544,"49":0,"50":0,"51":0,"52":0.015816,"53":0,"54":0,"55":0,"56":0.005272,"57":0,"58":0,"59":0.015816,"60":0.005272,"61":0,"62":0,"63":0.010544,"64":0.005272,"65":0.005272,"66":0.005272,"67":0.005272,"68":0.15816,"69":0.05272,"70":0.390128,"71":1.049128,"72":0.005272,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005272,"46":0.005272,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.010544,"56":0,"57":0.010544,"58":0,"60":0,"62":0,"63":0.005272,"64":0.031632,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005272,"9":0,"10":0.010544,"11":0.02636,"12":0.126528,"13":3.020856,_:"0","3.1":0,"3.2":0,"5.1":0.042176,"6.1":0,"7.1":0,"9.1":0.02636,"10.1":0.089624,"11.1":0.15816,"12.1":0.453392},G:{"8":0.004019297929793,"3.2":0.016077191719172,"4.0-4.1":0.008038595859586,"4.2-4.3":0,"5.0-5.1":0.024115787578758,"6.0-6.1":0.008038595859586,"7.0-7.1":0.028135085508551,"8.1-8.4":0.052250873087309,"9.0-9.2":0.048231575157516,"9.3":0.51045083708371,"10.0-10.2":0.17684910891089,"10.3":0.5707403060306,"11.0-11.2":0.48231575157516,"11.3-11.4":0.8601297569757,"12.0-12.1":1.2299051665167,"12.2-12.4":8.7057993159316,"13.0-13.1":12.640691989199,"13.2":5.7556346354635,"13.3":9.067536129613},I:{"3":0.00049104225352113,"4":0.0021278497652582,_:"76","2.1":0,"2.2":0.00032736150234742,"2.3":0.00032736150234742,"4.1":0.0037646572769953,"4.2-4.3":0.082331417840376,"4.4":0,"4.4.3-4.4.4":0.050086309859155},P:{"4":0.084800474074074,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.031800177777778,"8.2":0.010600059259259,"9.2":0.12720071111111,"10.1":3.964422162963},B:{"12":0,"13":0.005272,"14":0.010544,"15":0.015816,"16":0.047448,"17":0.168704,"18":1.592144,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.010598916666667,"9":0,"10":0.0052994583333333,"11":1.001597625,"5.5":0},N:{"10":0,"11":0.014184},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.203304},O:{"0":0.042552},Q:{"1.2":0.004728},S:{"2.5":0},H:{"0":0.19695125773196},L:{"0":26.051184}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NP.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NP.js new file mode 100644 index 0000000..f99e7f4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NP.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003506,"31":0.003506,"32":0.010518,"33":0.007012,"34":0,"35":0,"36":0.007012,"37":0,"38":0,"39":0,"40":0.003506,"41":0,"42":0,"43":0.003506,"44":0,"45":0,"46":0.003506,"47":0,"48":0,"49":0.028048,"50":0,"51":0.003506,"52":0,"53":0.003506,"54":0,"55":0.003506,"56":0,"57":0,"58":0.007012,"59":0,"60":0.003506,"61":0.003506,"62":0.003506,"63":0.014024,"64":0.003506,"65":0.007012,"66":0.003506,"67":0.007012,"68":0.003506,"69":0.028048,"70":0.010518,"71":0.01753,"72":0.010518,"73":0.021036,"74":0.028048,"75":0.028048,"76":0.038566,"77":0.056096,"78":5.164338,"79":4.266802,"80":0.024542,"81":0.010518},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.003506,"44":0,"45":0.003506,"46":0,"47":0.010518,"48":0.003506,"49":0,"50":0,"51":0,"52":0.021036,"53":0.003506,"54":0,"55":0,"56":0.007012,"57":0.003506,"58":0.003506,"59":0,"60":0.003506,"61":0,"62":0,"63":0.003506,"64":0.003506,"65":0,"66":0.003506,"67":0.003506,"68":0.038566,"69":0.010518,"70":0.15777,"71":0.606538,"72":0.080638,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.007012,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.010518,"46":0.007012,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.003506,"54":0.003506,"55":0.010518,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.003506,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.010518},E:{"4":0,"5":0,"6":0,"7":0,"8":0.003506,"9":0,"10":0.003506,"11":0.003506,"12":0.014024,"13":0.08765,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.007012,"11.1":0.007012,"12.1":0.021036},G:{"8":0.00040694089408941,"3.2":0.0016277635763576,"4.0-4.1":0.00081388178817882,"4.2-4.3":0,"5.0-5.1":0.0024416453645365,"6.0-6.1":0.00081388178817882,"7.0-7.1":0.0028485862586259,"8.1-8.4":0.0052902316231623,"9.0-9.2":0.0048832907290729,"9.3":0.051681493549355,"10.0-10.2":0.017905399339934,"10.3":0.057785606960696,"11.0-11.2":0.048832907290729,"11.3-11.4":0.087085351335133,"12.0-12.1":0.12452391359136,"12.2-12.4":0.88143397659766,"13.0-13.1":1.2798291119112,"13.2":0.58273936033603,"13.3":0.91805865706571},I:{"3":0.0008894014084507,"4":0.0038540727699531,_:"76","2.1":0,"2.2":0.00059293427230047,"2.3":0.00059293427230047,"4.1":0.0068187441314554,"4.2-4.3":0.14912296948357,"4.4":0,"4.4.3-4.4.4":0.090718943661972},P:{"4":0.57945294392523,"5.0-5.4":0.010165841121495,"6.2-6.4":0.030497523364486,"7.2-7.4":0.11182425233645,"8.2":0.050829205607477,"9.2":0.16265345794393,"10.1":1.2300667757009},B:{"12":0.007012,"13":0.007012,"14":0.003506,"15":0.003506,"16":0.003506,"17":0.024542,"18":0.133228,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.007012,"9":0.003506,"10":0.003506,"11":0.028048,"5.5":0},N:{"10":0.012988,"11":0.025976},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.071434},O:{"0":3.422338},Q:{"1.2":0.006494},S:{"2.5":0},H:{"0":3.4798244054983},L:{"0":71.089176}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NR.js new file mode 100644 index 0000000..5a93694 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00426,"41":0,"42":0,"43":0,"44":0,"45":0.00142,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0355,"59":0,"60":0,"61":0,"62":0,"63":0.08946,"64":0,"65":0.00284,"66":0,"67":0,"68":0,"69":0.01988,"70":0.01704,"71":0.00284,"72":0,"73":0,"74":0,"75":0,"76":0.00426,"77":0.03976,"78":0.34932,"79":0.35074,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00142,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00284,"69":0,"70":0,"71":0.01988,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00142,"46":0,"47":0,"48":0,"49":0.00142,"50":0,"51":0,"52":0,"53":0.00142,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00284,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.00142,"8":0,"9":0,"10":0,"11":0,"12":0.00142,"13":0.25702,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00284,"11.1":0,"12.1":0},G:{"8":0.00040197219721972,"3.2":0.0016078887888789,"4.0-4.1":0.00080394439443944,"4.2-4.3":0,"5.0-5.1":0.0024118331833183,"6.0-6.1":0.00080394439443944,"7.0-7.1":0.0028138053805381,"8.1-8.4":0.0052256385638564,"9.0-9.2":0.0048236663666367,"9.3":0.051050469046905,"10.0-10.2":0.017686776677668,"10.3":0.057080052005201,"11.0-11.2":0.048236663666367,"11.3-11.4":0.08602205020502,"12.0-12.1":0.12300349234923,"12.2-12.4":0.87067177917792,"13.0-13.1":1.264202560256,"13.2":0.57562418641864,"13.3":0.90684927692769},I:{"3":0.00014521126760563,"4":0.00062924882629108,_:"76","2.1":0,"2.2":0.000096807511737089,"2.3":0.000096807511737089,"4.1":0.0011132863849765,"4.2-4.3":0.024347089201878,"4.4":0,"4.4.3-4.4.4":0.014811549295775},P:{"4":2.7263800440529,"5.0-5.4":0.12631876651982,"6.2-6.4":0.23158440528634,"7.2-7.4":0.17895158590308,"8.2":0.010526563876652,"9.2":0.56843444933921,"10.1":0.93686418502203},B:{"12":0,"13":0.00426,"14":0.00852,"15":0,"16":0.00852,"17":0.04402,"18":0.13774,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07384,"5.5":0},N:{"10":0,"11":0.02574},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.02574},O:{"0":2.574},Q:{"1.2":0.00858},S:{"2.5":0},H:{"0":3.7040832989691},L:{"0":81.53658}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NU.js new file mode 100644 index 0000000..585539b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.237024,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.118512,"77":0.118512,"78":6.305826,"79":4.997256,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":1.071546,"71":1.906068,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.118512,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0},G:{"8":0.0008816301630163,"3.2":0.0035265206520652,"4.0-4.1":0.0017632603260326,"4.2-4.3":0,"5.0-5.1":0.0052897809780978,"6.0-6.1":0.0017632603260326,"7.0-7.1":0.0061714111411141,"8.1-8.4":0.011461192119212,"9.0-9.2":0.010579561956196,"9.3":0.11196703070307,"10.0-10.2":0.038791727172717,"10.3":0.12519148314831,"11.0-11.2":0.10579561956196,"11.3-11.4":0.18866885488549,"12.0-12.1":0.26977882988299,"12.2-12.4":1.9096109330933,"13.0-13.1":2.7727268626863,"13.2":1.2624943934393,"13.3":1.9889576477648},I:{"3":0,"4":0,_:"76","2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0.24846761623616,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":10.973986383764},B:{"12":0.237024,"13":5.352792,"14":0,"15":0,"16":0,"17":0.237024,"18":0.118512,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.71601,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":52.95139}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/NZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/NZ.js new file mode 100644 index 0000000..3742d52 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/NZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.004976,"31":0,"32":0,"33":0,"34":0.004976,"35":0,"36":0,"37":0,"38":0.009952,"39":0,"40":0.029856,"41":0.004976,"42":0,"43":0.004976,"44":0,"45":0,"46":0,"47":0,"48":0.004976,"49":0.27368,"50":0.004976,"51":0,"52":0.004976,"53":0.009952,"54":0.019904,"55":0.029856,"56":0.009952,"57":0.029856,"58":0.009952,"59":0.014928,"60":0.019904,"61":0.014928,"62":0.044784,"63":0.338368,"64":0.019904,"65":0.029856,"66":0.014928,"67":0.034832,"68":0.044784,"69":0.134352,"70":0.054736,"71":0.064688,"72":0.089568,"73":0.164208,"74":0.139328,"75":0.179136,"76":0.19904,"77":0.283632,"78":7.906864,"79":4.946144,"80":0.014928,"81":0.004976},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.009952,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004976,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004976,"46":0,"47":0,"48":0.009952,"49":0,"50":0.004976,"51":0,"52":0.04976,"53":0,"54":0.004976,"55":0,"56":0.004976,"57":0.004976,"58":0.004976,"59":0.009952,"60":0.014928,"61":0,"62":0.004976,"63":0.004976,"64":0.004976,"65":0.039808,"66":0.009952,"67":0.054736,"68":0.22392,"69":0.019904,"70":0.39808,"71":1.204192,"72":0.014928,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004976,"37":0.009952,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004976,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.004976,"54":0,"55":0.004976,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.004976,"64":0.014928,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.009952,"9":0.004976,"10":0.009952,"11":0.02488,"12":0.04976,"13":1.955568,_:"0","3.1":0,"3.2":0,"5.1":0.004976,"6.1":0.004976,"7.1":0,"9.1":0.014928,"10.1":0.059712,"11.1":0.109472,"12.1":0.258752},G:{"8":0.0035798587858786,"3.2":0.014319435143514,"4.0-4.1":0.0071597175717572,"4.2-4.3":0,"5.0-5.1":0.021479152715272,"6.0-6.1":0.0071597175717572,"7.0-7.1":0.02505901150115,"8.1-8.4":0.046538164216422,"9.0-9.2":0.042958305430543,"9.3":0.45464206580658,"10.0-10.2":0.15751378657866,"10.3":0.50833994759476,"11.0-11.2":0.42958305430543,"11.3-11.4":0.76608978017802,"12.0-12.1":1.0954367884788,"12.2-12.4":7.753974130213,"13.0-13.1":11.258655881588,"13.2":5.1263577813781,"13.3":8.0761614209421},I:{"3":0.0019383098591549,"4":0.0083993427230047,_:"76","2.1":0,"2.2":0.00129220657277,"2.3":0.00129220657277,"4.1":0.014860375586854,"4.2-4.3":0.32498995305164,"4.4":0,"4.4.3-4.4.4":0.1977076056338},P:{"4":0.15989846153846,"5.0-5.4":0.021319794871795,"6.2-6.4":0.010659897435897,"7.2-7.4":0.031979692307692,"8.2":0.021319794871795,"9.2":0.13857866666667,"10.1":2.9314717948718},B:{"12":0,"13":0.004976,"14":0.004976,"15":0.014928,"16":0.029856,"17":0.104496,"18":1.253952,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.010384695652174,"9":0,"10":0.005192347826087,"11":0.82039095652174,"5.5":0},N:{"10":0,"11":0.020096},J:{"7":0,"10":0.010048},R:{_:"0"},M:{"0":0.366752},O:{"0":0.386848},Q:{"1.2":0.15072},S:{"2.5":0},H:{"0":0.2092815395189},L:{"0":34.118032}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/OM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/OM.js new file mode 100644 index 0000000..2b3064b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/OM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.002695,"12":0,"13":0.008085,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.018865,"31":0.002695,"32":0,"33":0.002695,"34":0,"35":0,"36":0,"37":0,"38":0.00539,"39":0.002695,"40":0,"41":0.002695,"42":0,"43":0.002695,"44":0.002695,"45":0.002695,"46":0.002695,"47":0.002695,"48":0.002695,"49":0.067375,"50":0.002695,"51":0.002695,"52":0.002695,"53":0.002695,"54":0.002695,"55":0.00539,"56":0.002695,"57":0.00539,"58":0.00539,"59":0.002695,"60":0.00539,"61":0.002695,"62":0.00539,"63":0.01078,"64":0.002695,"65":0.008085,"66":0,"67":0.01078,"68":0,"69":0.01617,"70":0.008085,"71":0.01078,"72":0.002695,"73":0.01078,"74":0.013475,"75":0.018865,"76":0.02695,"77":0.03234,"78":1.808345,"79":1.57388,"80":0.01078,"81":0.002695},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.002695,"44":0,"45":0,"46":0.002695,"47":0.002695,"48":0.00539,"49":0,"50":0,"51":0.002695,"52":0.008085,"53":0.002695,"54":0.002695,"55":0.002695,"56":0.01078,"57":0.002695,"58":0.002695,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.002695,"67":0.00539,"68":0.02695,"69":0.002695,"70":0.07546,"71":0.196735,"72":0.008085,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.002695,"43":0,"44":0,"45":0.013475,"46":0.01078,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.002695,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.002695,"64":0.002695,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.002695},E:{"4":0,"5":0,"6":0,"7":0.002695,"8":0.00539,"9":0,"10":0.002695,"11":0.01617,"12":0.029645,"13":0.423115,_:"0","3.1":0,"3.2":0,"5.1":0.79772,"6.1":0,"7.1":0,"9.1":0.01078,"10.1":0.0539,"11.1":0.0539,"12.1":0.13475},G:{"8":0.00097689268926893,"3.2":0.0039075707570757,"4.0-4.1":0.0019537853785379,"4.2-4.3":0,"5.0-5.1":0.0058613561356136,"6.0-6.1":0.0019537853785379,"7.0-7.1":0.0068382488248825,"8.1-8.4":0.012699604960496,"9.0-9.2":0.011722712271227,"9.3":0.12406537153715,"10.0-10.2":0.042983278327833,"10.3":0.13871876187619,"11.0-11.2":0.11722712271227,"11.3-11.4":0.20905503550355,"12.0-12.1":0.29892916291629,"12.2-12.4":2.1159495649565,"13.0-13.1":3.0723275077508,"13.2":1.3989103310331,"13.3":2.2038699069907},I:{"3":0.00060808098591549,"4":0.0026350176056338,_:"76","2.1":0,"2.2":0.00040538732394366,"2.3":0.00040538732394366,"4.1":0.0046619542253521,"4.2-4.3":0.10195491197183,"4.4":0,"4.4.3-4.4.4":0.06202426056338},P:{"4":0.39368288279773,"5.0-5.4":0.050472164461248,"6.2-6.4":0.070661030245747,"7.2-7.4":0.17160535916824,"8.2":0.14132206049149,"9.2":0.57538267485822,"10.1":3.9166399621928},B:{"12":0.008085,"13":0.008085,"14":0.013475,"15":0.01078,"16":0.01617,"17":0.07007,"18":0.32879,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0135625,"9":0.0081375,"10":0.01085,"11":0.8029,"5.5":0},N:{"10":0.01461,"11":0.02922},J:{"7":0,"10":0.007305},R:{_:"0"},M:{"0":0.094965},O:{"0":0.51135},Q:{"1.2":0.08766},S:{"2.5":0},H:{"0":0.29738378865979},L:{"0":74.829085}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PA.js new file mode 100644 index 0000000..c688c3a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0.006645,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006645,"37":0,"38":0.01329,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.43857,"50":0,"51":0,"52":0,"53":0.01329,"54":0.006645,"55":0.019935,"56":0.033225,"57":0.006645,"58":0.006645,"59":0.006645,"60":0.006645,"61":0,"62":0.01329,"63":0.03987,"64":0.006645,"65":0.02658,"66":0.046515,"67":0.179415,"68":0.01329,"69":0.033225,"70":0.07974,"71":0.112965,"72":0.10632,"73":0.179415,"74":0.099675,"75":0.086385,"76":0.166125,"77":0.219285,"78":14.625645,"79":9.71499,"80":0.006645,"81":0},C:{"2":0,"3":0.006645,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.006645,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02658,"49":0,"50":0,"51":0,"52":0.046515,"53":0,"54":0,"55":0,"56":0,"57":0.01329,"58":0,"59":0,"60":0.006645,"61":0,"62":0,"63":0.03987,"64":0.006645,"65":0.019935,"66":0.15948,"67":0.006645,"68":0.09303,"69":0.019935,"70":0.49173,"71":1.31571,"72":0.006645,"73":0,"3.5":0.006645,"3.6":0.046515},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.006645,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006645,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.006645,"64":0.033225,"9.5-9.6":0.01329,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0.02658,"5":0,"6":0,"7":0,"8":0.006645,"9":0,"10":0.033225,"11":0.05316,"12":0.19935,"13":3.04341,_:"0","3.1":0,"3.2":0,"5.1":7.68162,"6.1":0,"7.1":0,"9.1":0.02658,"10.1":0.15948,"11.1":0.378765,"12.1":1.04991},G:{"8":0.00087961146114611,"3.2":0.0035184458445845,"4.0-4.1":0.0017592229222922,"4.2-4.3":0,"5.0-5.1":0.0052776687668767,"6.0-6.1":0.0017592229222922,"7.0-7.1":0.0061572802280228,"8.1-8.4":0.011434948994899,"9.0-9.2":0.010555337533753,"9.3":0.11171065556556,"10.0-10.2":0.038702904290429,"10.3":0.12490482748275,"11.0-11.2":0.10555337533753,"11.3-11.4":0.18823685268527,"12.0-12.1":0.26916110711071,"12.2-12.4":1.9052384248425,"13.0-13.1":2.7663780453045,"13.2":1.2596036123612,"13.3":1.9844034563456},I:{"3":0.00071558098591549,"4":0.0031008509389671,_:"76","2.1":0,"2.2":0.00047705399061033,"2.3":0.00047705399061033,"4.1":0.0054861208920188,"4.2-4.3":0.1199790786385,"4.4":0,"4.4.3-4.4.4":0.07298926056338},P:{"4":0.32445072555205,"5.0-5.4":0.020278170347003,"6.2-6.4":0.040556340694006,"7.2-7.4":0.17236444794953,"8.2":0.060834511041009,"9.2":0.29403347003155,"10.1":2.2812941640379},B:{"12":0.006645,"13":0.02658,"14":0.01329,"15":0.01329,"16":0.02658,"17":0.086385,"18":0.77082,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01329,"9":0.03987,"10":0.006645,"11":0.325605,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.003355},R:{_:"0"},M:{"0":0.24827},O:{"0":0.0671},Q:{"1.2":0.02013},S:{"2.5":0},H:{"0":0.18104894329897},L:{"0":41.482595}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PE.js new file mode 100644 index 0000000..69e98f2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00742,"27":0,"28":0,"29":0.00742,"30":0,"31":0,"32":0,"33":0,"34":0.00742,"35":0,"36":0.00742,"37":0,"38":0.06678,"39":0,"40":0,"41":0,"42":0,"43":0.00742,"44":0,"45":0,"46":0.00742,"47":0,"48":0,"49":0.38584,"50":0.00742,"51":0.00742,"52":0,"53":0.06678,"54":0.00742,"55":0.00742,"56":0.00742,"57":0.00742,"58":0.02226,"59":0.00742,"60":0.0371,"61":0.0371,"62":0.0371,"63":0.04452,"64":0.01484,"65":0.0371,"66":0.02968,"67":0.08162,"68":0.0371,"69":0.05936,"70":0.14098,"71":0.20034,"72":0.16324,"73":0.20034,"74":0.20034,"75":0.2597,"76":0.31906,"77":0.43036,"78":25.8216,"79":19.98206,"80":0.02226,"81":0.00742},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00742,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00742,"49":0,"50":0,"51":0.00742,"52":0.02968,"53":0,"54":0,"55":0,"56":0.00742,"57":0.00742,"58":0,"59":0,"60":0.00742,"61":0,"62":0,"63":0.01484,"64":0.01484,"65":0.01484,"66":0.02226,"67":0.00742,"68":0.0742,"69":0.02968,"70":0.40068,"71":1.23172,"72":0.01484,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00742,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00742,"58":0.01484,"60":0,"62":0.00742,"63":0.00742,"64":0.11872,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00742,"9":0.0371,"10":0.00742,"11":0.05194,"12":0.09646,"13":0.84588,_:"0","3.1":0,"3.2":0,"5.1":0.00742,"6.1":0,"7.1":0,"9.1":0.01484,"10.1":0.0371,"11.1":0.1113,"12.1":0.28196},G:{"8":0.00035316531653165,"3.2":0.0014126612661266,"4.0-4.1":0.00070633063306331,"4.2-4.3":0,"5.0-5.1":0.0021189918991899,"6.0-6.1":0.00070633063306331,"7.0-7.1":0.0024721572157216,"8.1-8.4":0.0045911491149115,"9.0-9.2":0.0042379837983798,"9.3":0.04485199519952,"10.0-10.2":0.015539273927393,"10.3":0.050149474947495,"11.0-11.2":0.042379837983798,"11.3-11.4":0.075577377737774,"12.0-12.1":0.10806858685869,"12.2-12.4":0.76495607560756,"13.0-13.1":1.110704920492,"13.2":0.50573273327333,"13.3":0.79674095409541},I:{"3":0.00063830985915493,"4":0.0027660093896714,_:"76","2.1":0,"2.2":0.00042553990610329,"2.3":0.00042553990610329,"4.1":0.0048937089201878,"4.2-4.3":0.10702328638498,"4.4":0,"4.4.3-4.4.4":0.065107605633803},P:{"4":0.2603500990099,"5.0-5.4":0.010013465346535,"6.2-6.4":0.010013465346535,"7.2-7.4":0.040053861386139,"8.2":0.020026930693069,"9.2":0.11014811881188,"10.1":0.56075405940594},B:{"12":0.00742,"13":0.00742,"14":0.00742,"15":0.00742,"16":0.01484,"17":0.05936,"18":0.4452,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.038130555555556,"9":0.0076261111111111,"10":0.0076261111111111,"11":0.22115722222222,"5.5":0},N:{"10":0,"11":0.04902},J:{"7":0,"10":0.00516},R:{_:"0"},M:{"0":0.0774},O:{"0":0.02838},Q:{"1.2":0.00516},S:{"2.5":0},H:{"0":0.18075072164948},L:{"0":39.6591}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PF.js new file mode 100644 index 0000000..1fe81cd --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.006049,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.006049,"47":0,"48":0,"49":0.151225,"50":0,"51":0,"52":0,"53":0.012098,"54":0,"55":0,"56":0,"57":0,"58":0.006049,"59":0,"60":0,"61":0,"62":0.006049,"63":0.012098,"64":0.084686,"65":0.012098,"66":0,"67":0.018147,"68":0.006049,"69":0.030245,"70":0,"71":0.072588,"72":0.012098,"73":0.102833,"74":0.036294,"75":0.030245,"76":0.169372,"77":0.12098,"78":9.623959,"79":7.488662,"80":0,"81":0.006049},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.012098,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.018147,"37":0,"38":0.066539,"39":0,"40":0.006049,"41":0.048392,"42":0,"43":0.024196,"44":0,"45":0,"46":0,"47":0.018147,"48":0.054441,"49":0.012098,"50":0.006049,"51":0,"52":0.084686,"53":0,"54":0,"55":0,"56":0.036294,"57":0.006049,"58":0,"59":0.151225,"60":1.094869,"61":0.096784,"62":0.048392,"63":0.06049,"64":0.018147,"65":0.006049,"66":0.024196,"67":0.030245,"68":0.24196,"69":0.157274,"70":1.524348,"71":4.246398,"72":0.030245,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006049,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.012098,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0.036294,"5":0,"6":0,"7":0,"8":0,"9":0.006049,"10":0.012098,"11":0.036294,"12":0.223813,"13":3.853213,_:"0","3.1":0,"3.2":0,"5.1":0.018147,"6.1":0,"7.1":0,"9.1":0.024196,"10.1":0.102833,"11.1":0.356891,"12.1":0.550459},G:{"8":0.0019535144514451,"3.2":0.0078140578057806,"4.0-4.1":0.0039070289028903,"4.2-4.3":0,"5.0-5.1":0.011721086708671,"6.0-6.1":0.0039070289028903,"7.0-7.1":0.013674601160116,"8.1-8.4":0.025395687868787,"9.0-9.2":0.023442173417342,"9.3":0.24809633533353,"10.0-10.2":0.085954635863586,"10.3":0.27739905210521,"11.0-11.2":0.23442173417342,"11.3-11.4":0.41805209260926,"12.0-12.1":0.59777542214221,"12.2-12.4":4.2313123018302,"13.0-13.1":6.143802949795,"13.2":2.7974326944694,"13.3":4.4071286024602},I:{"3":0.0015092852112676,"4":0.006540235915493,_:"76","2.1":0,"2.2":0.0010061901408451,"2.3":0.0010061901408451,"4.1":0.011571186619718,"4.2-4.3":0.25305682042254,"4.4":0,"4.4.3-4.4.4":0.1539470915493},P:{"4":0.12849339130435,"5.0-5.4":0.010707782608696,"6.2-6.4":0.021415565217391,"7.2-7.4":0.14990895652174,"8.2":0.042831130434783,"9.2":0.246279,"10.1":3.0838413913043},B:{"12":0.006049,"13":0.006049,"14":0.012098,"15":0.018147,"16":0.018147,"17":0.193568,"18":1.373123,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.006049,"9":0,"10":0.006049,"11":0.550459,"5.5":0},N:{"10":0,"11":0.011853},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.15804},O:{"0":0.169893},Q:{"1.2":0.043461},S:{"2.5":0},H:{"0":0.067329927835052},L:{"0":39.43674}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PG.js new file mode 100644 index 0000000..c34033b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0065,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00325,"27":0,"28":0,"29":0.00325,"30":0,"31":0,"32":0,"33":0,"34":0.00975,"35":0,"36":0.00325,"37":0.00325,"38":0.00325,"39":0,"40":0.026,"41":0,"42":0.00325,"43":0,"44":0,"45":0,"46":0.0195,"47":0.00325,"48":0,"49":0.05525,"50":0.00325,"51":0.00325,"52":0,"53":0.0845,"54":0.00325,"55":0.0195,"56":0.00325,"57":0.00325,"58":0.0065,"59":0.0065,"60":0.00325,"61":0.00325,"62":0.00975,"63":0.04225,"64":0.0065,"65":0.013,"66":0.01625,"67":0.02275,"68":0.00975,"69":0.091,"70":0.05525,"71":0.039,"72":0.0585,"73":0.3835,"74":0.052,"75":0.0585,"76":0.039,"77":0.09425,"78":2.405,"79":1.495,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00325,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00325,"43":0.00325,"44":0.013,"45":0,"46":0,"47":0.00325,"48":0.00325,"49":0.00325,"50":0,"51":0,"52":0.00325,"53":0.00325,"54":0.00325,"55":0.0065,"56":0.00325,"57":0.00325,"58":0.00325,"59":0.00325,"60":0.0065,"61":0,"62":0.0065,"63":0.0065,"64":0.00325,"65":0.0065,"66":0.00975,"67":0.00325,"68":0.10725,"69":0.04875,"70":0.2275,"71":0.3835,"72":0.01625,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.04225,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.04875,"38":0,"39":0,"40":0,"41":0,"42":0.00325,"43":0,"44":0,"45":0.013,"46":0.00325,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00325,"54":0.0065,"55":0.00975,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0065,"64":0.0065,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02275},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.02275,"10":0,"11":0.0065,"12":0.04875,"13":0.15925,_:"0","3.1":0,"3.2":0,"5.1":0.00325,"6.1":0,"7.1":0,"9.1":0,"10.1":0.06175,"11.1":0.02925,"12.1":0.0455},G:{"8":0.00035398539853985,"3.2":0.0014159415941594,"4.0-4.1":0.00070797079707971,"4.2-4.3":0,"5.0-5.1":0.0021239123912391,"6.0-6.1":0.00070797079707971,"7.0-7.1":0.002477897789779,"8.1-8.4":0.0046018101810181,"9.0-9.2":0.0042478247824782,"9.3":0.044956145614561,"10.0-10.2":0.015575357535754,"10.3":0.050265926592659,"11.0-11.2":0.042478247824782,"11.3-11.4":0.075752875287529,"12.0-12.1":0.1083195319532,"12.2-12.4":0.76673237323732,"13.0-13.1":1.1132840784078,"13.2":0.50690709070907,"13.3":0.79859105910591},I:{"3":0.0095246478873239,"4":0.041273474178404,_:"76","2.1":0,"2.2":0.006349765258216,"2.3":0.006349765258216,"4.1":0.073022300469484,"4.2-4.3":1.5969659624413,"4.4":0,"4.4.3-4.4.4":0.97151408450704},P:{"4":1.529476744186,"5.0-5.4":0.051671511627907,"6.2-6.4":0.23768895348837,"7.2-7.4":0.76473837209302,"8.2":0.051671511627907,"9.2":0.91975290697674,"10.1":1.7775},B:{"12":0.0325,"13":0.06175,"14":0.0325,"15":0.039,"16":0.06175,"17":0.1235,"18":0.42575,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0033418079096045,"8":0.043443502824859,"9":0,"10":0.013367231638418,"11":0.53134745762712,"5.5":0},N:{"10":0.01035,"11":0.1449},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.31725},O:{"0":3.3075},Q:{"1.2":0.432},S:{"2.5":0},H:{"0":3.5786597938144},L:{"0":66.8905}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PH.js new file mode 100644 index 0000000..30966d1 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00464,"31":0.00464,"32":0,"33":0.00464,"34":0.00464,"35":0,"36":0.00928,"37":0,"38":0.00928,"39":0,"40":0.00464,"41":0,"42":0.00464,"43":0.00464,"44":0.00464,"45":0,"46":0.00464,"47":0.00464,"48":0.00464,"49":0.1624,"50":0.00464,"51":0.00928,"52":0.00464,"53":0.01392,"54":0.00928,"55":0.00464,"56":0.00928,"57":0.01392,"58":0.03248,"59":0.01392,"60":0.0232,"61":0.01856,"62":0.01856,"63":0.06032,"64":0.0232,"65":0.03712,"66":0.02784,"67":0.06032,"68":0.03248,"69":0.08816,"70":0.07424,"71":0.08816,"72":0.08816,"73":0.10208,"74":0.1624,"75":0.19952,"76":0.23664,"77":0.33408,"78":9.28928,"79":5.89744,"80":0.04176,"81":0.00928},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00464,"44":0,"45":0,"46":0,"47":0.0232,"48":0.00464,"49":0,"50":0,"51":0.00464,"52":0.01392,"53":0,"54":0,"55":0,"56":0.08816,"57":0.00464,"58":0,"59":0.00464,"60":0.00928,"61":0.00464,"62":0.00464,"63":0,"64":0.00464,"65":0.00464,"66":0.00928,"67":0.00928,"68":0.06032,"69":0.0232,"70":0.24592,"71":0.70064,"72":0.02784,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.03712,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00464,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00464,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00464,"64":0.03248,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00928},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00464,"9":0,"10":0.00464,"11":0.01392,"12":0.05104,"13":0.48256,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00928,"10.1":0.0232,"11.1":0.0696,"12.1":0.13456},G:{"8":0.0011863586358636,"3.2":0.0047454345434543,"4.0-4.1":0.0023727172717272,"4.2-4.3":0,"5.0-5.1":0.0071181518151815,"6.0-6.1":0.0023727172717272,"7.0-7.1":0.0083045104510451,"8.1-8.4":0.015422662266227,"9.0-9.2":0.014236303630363,"9.3":0.15066754675468,"10.0-10.2":0.052199779977998,"10.3":0.16846292629263,"11.0-11.2":0.14236303630363,"11.3-11.4":0.25388074807481,"12.0-12.1":0.36302574257426,"12.2-12.4":2.5696528052805,"13.0-13.1":3.731097909791,"13.2":1.6988655665567,"13.3":2.6764250825083},I:{"3":0.0014445070422535,"4":0.0062595305164319,_:"76","2.1":0,"2.2":0.00096300469483568,"2.3":0.00096300469483568,"4.1":0.01107455399061,"4.2-4.3":0.24219568075117,"4.4":0,"4.4.3-4.4.4":0.14733971830986},P:{"4":0.28838901960784,"5.0-5.4":0.010299607843137,"6.2-6.4":0.030898823529412,"7.2-7.4":0.072097254901961,"8.2":0.041198431372549,"9.2":0.25749019607843,"10.1":1.3904470588235},B:{"12":0.00464,"13":0.00464,"14":0.00464,"15":0.00928,"16":0.01392,"17":0.05568,"18":0.33408,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01972,"9":0.00493,"10":0.00493,"11":0.12818,"5.5":0},N:{"10":0,"11":0.02144},J:{"7":0,"10":0.00536},R:{_:"0"},M:{"0":0.1072},O:{"0":0.88976},Q:{"1.2":0.03216},S:{"2.5":0},H:{"0":1.2432529209622},L:{"0":60.4768}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PK.js new file mode 100644 index 0000000..70da81a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PK.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.002318,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002318,"30":0,"31":0.002318,"32":0.006954,"33":0.004636,"34":0,"35":0,"36":0.006954,"37":0,"38":0.002318,"39":0,"40":0.006954,"41":0,"42":0.002318,"43":0.020862,"44":0.002318,"45":0.002318,"46":0.002318,"47":0.002318,"48":0.004636,"49":0.04636,"50":0.002318,"51":0.002318,"52":0,"53":0.002318,"54":0,"55":0.002318,"56":0.002318,"57":0.002318,"58":0.004636,"59":0.002318,"60":0.002318,"61":0.006954,"62":0.002318,"63":0.018544,"64":0.002318,"65":0.004636,"66":0.002318,"67":0.004636,"68":0.006954,"69":0.016226,"70":0.027816,"71":0.039406,"72":0.027816,"73":0.02318,"74":0.030134,"75":0.02318,"76":0.030134,"77":0.04636,"78":1.694458,"79":1.615646,"80":0.013908,"81":0.004636},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.002318,"41":0,"42":0,"43":0.004636,"44":0.002318,"45":0.002318,"46":0,"47":0.004636,"48":0.004636,"49":0,"50":0.002318,"51":0,"52":0.013908,"53":0,"54":0,"55":0.002318,"56":0.002318,"57":0.002318,"58":0,"59":0,"60":0.002318,"61":0,"62":0,"63":0.006954,"64":0.006954,"65":0.004636,"66":0.006954,"67":0.002318,"68":0.02318,"69":0.004636,"70":0.053314,"71":0.187758,"72":0.020862,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.006954,"19":0,"20":0,"21":0,"22":0.002318,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.002318,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.018544,"38":0.004636,"39":0,"40":0,"41":0,"42":0.002318,"43":0,"44":0,"45":0.099674,"46":0.064904,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.002318,"54":0.002318,"55":0.006954,"56":0.002318,"57":0,"58":0.002318,"60":0,"62":0,"63":0,"64":0.004636,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.002318},E:{"4":0,"5":0,"6":0,"7":0,"8":0.002318,"9":0,"10":0,"11":0.002318,"12":0.004636,"13":0.037088,_:"0","3.1":0,"3.2":0,"5.1":0.136762,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004636,"11.1":0.004636,"12.1":0.01159},G:{"8":0.00027224562456246,"3.2":0.0010889824982498,"4.0-4.1":0.00054449124912491,"4.2-4.3":0,"5.0-5.1":0.0016334737473747,"6.0-6.1":0.00054449124912491,"7.0-7.1":0.0019057193719372,"8.1-8.4":0.0035391931193119,"9.0-9.2":0.0032669474947495,"9.3":0.034575194319432,"10.0-10.2":0.011978807480748,"10.3":0.038658878687869,"11.0-11.2":0.032669474947495,"11.3-11.4":0.058260563656366,"12.0-12.1":0.083307161116112,"12.2-12.4":0.58968402280228,"13.0-13.1":0.85621248924892,"13.2":0.38985573437344,"13.3":0.6141861290129},I:{"3":0.0015390422535211,"4":0.0066691830985916,_:"76","2.1":0,"2.2":0.0010260281690141,"2.3":0.0010260281690141,"4.1":0.011799323943662,"4.2-4.3":0.25804608450704,"4.4":0,"4.4.3-4.4.4":0.15698230985915},P:{"4":1.0340912653061,"5.0-5.4":0.081105197278912,"6.2-6.4":0.081105197278912,"7.2-7.4":0.15207224489796,"8.2":0.05069074829932,"9.2":0.27373004081633,"10.1":1.3078213061224},B:{"12":0.004636,"13":0.002318,"14":0.006954,"15":0.002318,"16":0.004636,"17":0.013908,"18":0.064904,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0024467777777778,"7":0,"8":0.034254888888889,"9":0.0024467777777778,"10":0.0073403333333333,"11":0.041595222222222,"5.5":0},N:{"10":0.0107548,"11":0.0967932},J:{"7":0,"10":0.023046},R:{_:"0"},M:{"0":0.061456},O:{"0":9.302902},Q:{"1.2":0.007682},S:{"2.5":0.007682},H:{"0":3.2727695876289},L:{"0":72.2512}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PL.js new file mode 100644 index 0000000..786de22 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.004274,"32":0,"33":0,"34":0.004274,"35":0.004274,"36":0,"37":0,"38":0.004274,"39":0.004274,"40":0.004274,"41":0,"42":0.004274,"43":0.004274,"44":0,"45":0,"46":0.004274,"47":0,"48":0,"49":0.217974,"50":0.004274,"51":0,"52":0,"53":0.004274,"54":0,"55":0.004274,"56":0.008548,"57":0.004274,"58":0.02137,"59":0.008548,"60":0.004274,"61":0.008548,"62":0.008548,"63":0.029918,"64":0.012822,"65":0.008548,"66":0.008548,"67":0.012822,"68":0.017096,"69":0.012822,"70":0.025644,"71":0.034192,"72":0.025644,"73":0.034192,"74":0.059836,"75":0.06411,"76":0.068384,"77":0.115398,"78":5.201458,"79":4.278274,"80":0.008548,"81":0.004274},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.004274,"44":0,"45":0.004274,"46":0,"47":0.008548,"48":0.012822,"49":0.004274,"50":0.004274,"51":0.004274,"52":0.23507,"53":0.004274,"54":0.004274,"55":0.004274,"56":0.012822,"57":0.004274,"58":0.004274,"59":0.004274,"60":0.02137,"61":0.004274,"62":0.004274,"63":0.008548,"64":0.008548,"65":0.012822,"66":0.02137,"67":0.02137,"68":0.183782,"69":0.047014,"70":0.794964,"71":2.581496,"72":0.008548,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.004274,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.029918,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.029918,"46":0.017096,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.008548,"54":0.004274,"55":0.02137,"56":0.004274,"57":0,"58":0.004274,"60":0.004274,"62":0.004274,"63":0.012822,"64":0.183782,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.008548},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.004274,"11":0.004274,"12":0.017096,"13":0.34192,_:"0","3.1":0,"3.2":0,"5.1":0.025644,"6.1":0,"7.1":0,"9.1":0.004274,"10.1":0.012822,"11.1":0.029918,"12.1":0.068384},G:{"8":0.00034918251825183,"3.2":0.0013967300730073,"4.0-4.1":0.00069836503650365,"4.2-4.3":0,"5.0-5.1":0.002095095109511,"6.0-6.1":0.00069836503650365,"7.0-7.1":0.0024442776277628,"8.1-8.4":0.0045393727372737,"9.0-9.2":0.0041901902190219,"9.3":0.044346179817982,"10.0-10.2":0.01536403080308,"10.3":0.049583917591759,"11.0-11.2":0.041901902190219,"11.3-11.4":0.074725058905891,"12.0-12.1":0.10684985058506,"12.2-12.4":0.75632933453345,"13.0-13.1":1.098179019902,"13.2":0.50002936613661,"13.3":0.78775576117612},I:{"3":0.0014644014084507,"4":0.0063457394366197,_:"76","2.1":0,"2.2":0.0009762676056338,"2.3":0.0009762676056338,"4.1":0.011227077464789,"4.2-4.3":0.2455313028169,"4.4":0,"4.4.3-4.4.4":0.14936894366197},P:{"4":0.2831480733945,"5.0-5.4":0.050562155963303,"6.2-6.4":0.050562155963303,"7.2-7.4":0.14157403669725,"8.2":0.070787018348624,"9.2":0.51573399082569,"10.1":3.2865401376147},B:{"12":0.004274,"13":0.004274,"14":0.02137,"15":0.04274,"16":0.017096,"17":0.081206,"18":0.722306,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.012822,"9":0,"10":0.004274,"11":0.324824,"5.5":0},N:{"10":0,"11":0.274848},J:{"7":0,"10":0.017178},R:{_:"0"},M:{"0":0.251944},O:{"0":0.034356},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.9649392233677},L:{"0":69.52593}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PM.js new file mode 100644 index 0000000..44a8d77 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.013058,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.097935,"50":0.039174,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.006529,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.006529,"64":0,"65":0.006529,"66":0,"67":0.026116,"68":0.019587,"69":0,"70":0,"71":0,"72":0.013058,"73":0.019587,"74":0.013058,"75":0,"76":0,"77":0.874886,"78":13.443211,"79":10.90343,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.026116,"49":0,"50":0,"51":0,"52":0.026116,"53":0.006529,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.006529,"60":0.189341,"61":0,"62":0,"63":0.013058,"64":0,"65":0,"66":0.006529,"67":0.013058,"68":0.084877,"69":0.013058,"70":1.194807,"71":2.526723,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.078348,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.006529,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.006529,"10":0,"11":0.006529,"12":0.058761,"13":3.440783,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.032645,"10.1":0.032645,"11.1":0.176283,"12.1":0.097935},G:{"8":0.0019400823082308,"3.2":0.0077603292329233,"4.0-4.1":0.0038801646164616,"4.2-4.3":0,"5.0-5.1":0.011640493849385,"6.0-6.1":0.0038801646164616,"7.0-7.1":0.013580576157616,"8.1-8.4":0.025221070007001,"9.0-9.2":0.02328098769877,"9.3":0.24639045314531,"10.0-10.2":0.085363621562156,"10.3":0.27549168776878,"11.0-11.2":0.2328098769877,"11.3-11.4":0.4151776139614,"12.0-12.1":0.59366518631863,"12.2-12.4":4.202218279628,"13.0-13.1":6.1015588593859,"13.2":2.7781978653865,"13.3":4.3768256873687},I:{"3":0.00093993661971831,"4":0.004073058685446,_:"76","2.1":0,"2.2":0.00062662441314554,"2.3":0.00062662441314554,"4.1":0.0072061807511737,"4.2-4.3":0.1575960399061,"4.4":0,"4.4.3-4.4.4":0.095873535211268},P:{"4":0.068372150943396,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.022790716981132,"10.1":0.50139577358491},B:{"12":0.032645,"13":0,"14":0.013058,"15":0,"16":0.006529,"17":0.078348,"18":0.84877,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.450501,"5.5":0},N:{"10":0,"11":0.006942},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.006942},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":41.655325}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PN.js new file mode 100644 index 0000000..d30643a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":46.875,"80":0,"81":0},C:{"2":0,"3":0,"4":11.71875,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":5.859375,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0},G:{"8":0.0012110586058606,"3.2":0.0048442344234423,"4.0-4.1":0.0024221172117212,"4.2-4.3":0,"5.0-5.1":0.0072663516351635,"6.0-6.1":0.0024221172117212,"7.0-7.1":0.0084774102410241,"8.1-8.4":0.015743761876188,"9.0-9.2":0.014532703270327,"9.3":0.15380444294429,"10.0-10.2":0.053286578657866,"10.3":0.1719703220322,"11.0-11.2":0.14532703270327,"11.3-11.4":0.25916654165417,"12.0-12.1":0.37058393339334,"12.2-12.4":2.623152940294,"13.0-13.1":3.8087793154315,"13.2":1.7342359235924,"13.3":2.7321482148215},I:{"3":0,"4":0,_:"76","2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":5.859375,"17":0,"18":0,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":0}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PR.js new file mode 100644 index 0000000..4183f0e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00291,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00291,"37":0,"38":0.00291,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.10185,"50":0,"51":0,"52":0,"53":0.00873,"54":0,"55":0,"56":0,"57":0,"58":0.00582,"59":0,"60":0.00291,"61":0,"62":0,"63":0.00582,"64":0,"65":0.00873,"66":0.00291,"67":0.00873,"68":0.00291,"69":0.01455,"70":0.00291,"71":0.00873,"72":0.00873,"73":0.00873,"74":0.01164,"75":0.0291,"76":0.03783,"77":0.04656,"78":2.63937,"79":1.76346,"80":0.00582,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00873,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00291,"48":0.00582,"49":0.00291,"50":0,"51":0,"52":0.02619,"53":0.00291,"54":0,"55":0,"56":0.00291,"57":0,"58":0,"59":0,"60":0.00291,"61":0,"62":0.00291,"63":0.00582,"64":0,"65":0,"66":0.01455,"67":0.00582,"68":0.10476,"69":0.00582,"70":0.14259,"71":0.36084,"72":0.00582,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00291,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00582,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00582,"9":0.00291,"10":0.00582,"11":0.01164,"12":0.07857,"13":0.99522,_:"0","3.1":0,"3.2":0,"5.1":0.02328,"6.1":0.00291,"7.1":0,"9.1":0.00291,"10.1":0.04947,"11.1":0.07275,"12.1":0.22989},G:{"8":0.0029832283228323,"3.2":0.011932913291329,"4.0-4.1":0.0059664566456646,"4.2-4.3":0,"5.0-5.1":0.017899369936994,"6.0-6.1":0.0059664566456646,"7.0-7.1":0.020882598259826,"8.1-8.4":0.03878196819682,"9.0-9.2":0.035798739873987,"9.3":0.3788699969997,"10.0-10.2":0.13126204620462,"10.3":0.42361842184218,"11.0-11.2":0.35798739873987,"11.3-11.4":0.63841086108611,"12.0-12.1":0.91286786678668,"12.2-12.4":6.4616725472547,"13.0-13.1":9.3822530753075,"13.2":4.2719829582958,"13.3":6.7301630963096},I:{"3":0.00082214788732394,"4":0.0035626408450704,_:"76","2.1":0,"2.2":0.0005480985915493,"2.3":0.0005480985915493,"4.1":0.0063031338028169,"4.2-4.3":0.13784679577465,"4.4":0,"4.4.3-4.4.4":0.083859084507042},P:{"4":0.11297922431866,"5.0-5.4":0.020541677148847,"6.2-6.4":0.041083354297694,"7.2-7.4":0.16433341719078,"8.2":0.082166708595388,"9.2":0.61625031446541,"10.1":3.7693977568134},B:{"12":0.00291,"13":0.00291,"14":0.00582,"15":0.00582,"16":0.01164,"17":0.05238,"18":0.69549,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00291,"10":0.00291,"11":0.24735,"5.5":0},N:{"10":0,"11":0.00709},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.38995},O:{"0":0.05672},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.14767178694158},L:{"0":54.59073}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PS.js new file mode 100644 index 0000000..d628e6e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.038142,"32":0.006357,"33":0,"34":0.006357,"35":0,"36":0.019071,"37":0,"38":0.012714,"39":0,"40":0.006357,"41":0.006357,"42":0,"43":0.012714,"44":0,"45":0.006357,"46":0.006357,"47":0.006357,"48":0.006357,"49":0.375063,"50":0.006357,"51":0,"52":0,"53":0.031785,"54":0,"55":0,"56":0.006357,"57":0.006357,"58":0.025428,"59":0.019071,"60":0,"61":0.012714,"62":0.006357,"63":0.069927,"64":0.012714,"65":0.006357,"66":0.019071,"67":0.044499,"68":0.012714,"69":0.069927,"70":0.330564,"71":0.216138,"72":0.158925,"73":0.082641,"74":0.165282,"75":0.158925,"76":0.222495,"77":0.324207,"78":15.822573,"79":14.157039,"80":0.050856,"81":0.012714},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.012714,"48":0,"49":0,"50":0,"51":0,"52":0.019071,"53":0,"54":0,"55":0.006357,"56":0.006357,"57":0.006357,"58":0,"59":0.019071,"60":0.006357,"61":0,"62":0,"63":0.025428,"64":0.038142,"65":0.012714,"66":0.006357,"67":0.006357,"68":0.101712,"69":0.012714,"70":0.400491,"71":1.487538,"72":0.019071,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006357,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006357,"54":0,"55":0.012714,"56":0,"57":0.006357,"58":0,"60":0,"62":0.006357,"63":0.012714,"64":0.044499,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.006357,"9":0.019071,"10":0.006357,"11":0.044499,"12":0.088998,"13":1.309542,_:"0","3.1":0,"3.2":0,"5.1":0.362349,"6.1":0,"7.1":0,"9.1":0.012714,"10.1":0.044499,"11.1":0.177996,"12.1":0.667485},G:{"8":0.00048158235823582,"3.2":0.0019263294329433,"4.0-4.1":0.00096316471647165,"4.2-4.3":0,"5.0-5.1":0.0028894941494149,"6.0-6.1":0.00096316471647165,"7.0-7.1":0.0033710765076508,"8.1-8.4":0.0062605706570657,"9.0-9.2":0.0057789882988299,"9.3":0.06116095949595,"10.0-10.2":0.021189623762376,"10.3":0.068384694869487,"11.0-11.2":0.057789882988299,"11.3-11.4":0.10305862466247,"12.0-12.1":0.14736420162016,"12.2-12.4":1.0431073879388,"13.0-13.1":1.5145765166517,"13.2":0.6896259369937,"13.3":1.08644980018},I:{"3":0.0018382992957746,"4":0.0079659636150235,_:"76","2.1":0,"2.2":0.0012255328638498,"2.3":0.0012255328638498,"4.1":0.014093627934272,"4.2-4.3":0.30822151525822,"4.4":0,"4.4.3-4.4.4":0.18750652816901},P:{"4":0.20230276595745,"5.0-5.4":0.010115138297872,"6.2-6.4":0.050575691489362,"7.2-7.4":0.12138165957447,"8.2":0.060690829787234,"9.2":0.23264818085106,"10.1":2.1747547340426},B:{"12":0.006357,"13":0.012714,"14":0.006357,"15":0.019071,"16":0.012714,"17":0.076284,"18":0.667485,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.058543534883721,"9":0,"10":0.013009674418605,"11":0.20815479069767,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.003643},R:{_:"0"},M:{"0":0.105647},O:{"0":0.102004},Q:{"1.2":0.003643},S:{"2.5":0},H:{"0":0.5863226975945},L:{"0":48.395677}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PT.js new file mode 100644 index 0000000..b2bd4a9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.006925,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006925,"37":0,"38":0.006925,"39":0,"40":0.006925,"41":0.006925,"42":0,"43":0.131575,"44":0,"45":0,"46":0,"47":0,"48":0.01385,"49":0.59555,"50":0.006925,"51":0.006925,"52":0.006925,"53":0.01385,"54":0.006925,"55":0.006925,"56":0.006925,"57":0.006925,"58":0.01385,"59":0.006925,"60":0.006925,"61":0.020775,"62":0.01385,"63":0.04155,"64":0.020775,"65":0.034625,"66":0.01385,"67":0.0554,"68":0.01385,"69":0.04155,"70":0.062325,"71":0.090025,"72":0.0554,"73":0.145425,"74":0.06925,"75":0.1385,"76":0.2216,"77":0.26315,"78":18.5313,"79":14.230875,"80":0.0277,"81":0.006925},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.006925,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006925,"44":0,"45":0.006925,"46":0,"47":0.006925,"48":0.0277,"49":0,"50":0,"51":0.006925,"52":0.1108,"53":0,"54":0,"55":0,"56":0.006925,"57":0.006925,"58":0.006925,"59":0,"60":0.020775,"61":0,"62":0.006925,"63":0.006925,"64":0.006925,"65":0.006925,"66":0.020775,"67":0.01385,"68":0.145425,"69":0.09695,"70":0.78945,"71":2.389125,"72":0.0277,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006925,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006925,"46":0.006925,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006925,"54":0,"55":0.006925,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.006925,"64":0.12465,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.006925,"8":0.006925,"9":0.1108,"10":0.048475,"11":0.0277,"12":0.18005,"13":2.61765,_:"0","3.1":0,"3.2":0,"5.1":0.020775,"6.1":0,"7.1":0,"9.1":0.020775,"10.1":0.090025,"11.1":0.200825,"12.1":0.574775},G:{"8":0.0011497949794979,"3.2":0.0045991799179918,"4.0-4.1":0.0022995899589959,"4.2-4.3":0,"5.0-5.1":0.0068987698769877,"6.0-6.1":0.0022995899589959,"7.0-7.1":0.0080485648564856,"8.1-8.4":0.014947334733473,"9.0-9.2":0.013797539753975,"9.3":0.14602396239624,"10.0-10.2":0.05059097909791,"10.3":0.16327088708871,"11.0-11.2":0.13797539753975,"11.3-11.4":0.24605612561256,"12.0-12.1":0.35183726372637,"12.2-12.4":2.4904559255926,"13.0-13.1":3.6161052105211,"13.2":1.6465064106411,"13.3":2.5939374737474},I:{"3":0.00086399647887324,"4":0.003743984741784,_:"76","2.1":0,"2.2":0.00057599765258216,"2.3":0.00057599765258216,"4.1":0.0066239730046948,"4.2-4.3":0.14486340962441,"4.4":0,"4.4.3-4.4.4":0.08812764084507},P:{"4":0.040942657342657,"5.0-5.4":0,"6.2-6.4":0.010235664335664,"7.2-7.4":0.020471328671329,"8.2":0.010235664335664,"9.2":0.081885314685315,"10.1":1.2896937062937},B:{"12":0,"13":0.006925,"14":0.020775,"15":0.0277,"16":0.0277,"17":0.117725,"18":1.613525,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0071263081395349,"7":0,"8":0.049884156976744,"9":0.0071263081395349,"10":0.021378924418605,"11":1.1402093023256,"5.5":0},N:{"10":0,"11":0.021525},J:{"7":0,"10":0.003075},R:{_:"0"},M:{"0":0.132225},O:{"0":0.3567},Q:{"1.2":0.0123},S:{"2.5":0},H:{"0":0.12227087628866},L:{"0":37.886575}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PW.js new file mode 100644 index 0000000..46531ec --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004448,"34":0,"35":0,"36":0.013344,"37":0,"38":0,"39":0,"40":0,"41":0.008896,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.013344,"48":0,"49":0.048928,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.004448,"58":0,"59":0,"60":0.008896,"61":0,"62":0,"63":0.080064,"64":0,"65":0.013344,"66":0.017792,"67":0.004448,"68":0.004448,"69":0.097856,"70":0.253536,"71":0.004448,"72":0,"73":0.004448,"74":0,"75":0.02224,"76":0.053376,"77":0.226848,"78":5.230848,"79":5.328704,"80":0.004448,"81":0},C:{"2":0,"3":0.004448,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004448,"48":0,"49":0,"50":0,"51":0,"52":0.004448,"53":0,"54":0,"55":0.004448,"56":0,"57":0,"58":0,"59":0.013344,"60":0,"61":0.004448,"62":0.004448,"63":0,"64":0,"65":0,"66":0,"67":0.004448,"68":0.053376,"69":0.004448,"70":0.080064,"71":0.395872,"72":0.008896,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.013344,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02224,"12":0.04448,"13":0.498176,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004448,"10.1":0.008896,"11.1":0.008896,"12.1":0.142336},G:{"8":0.00163300170017,"3.2":0.0065320068006801,"4.0-4.1":0.00326600340034,"4.2-4.3":0,"5.0-5.1":0.0097980102010201,"6.0-6.1":0.00326600340034,"7.0-7.1":0.01143101190119,"8.1-8.4":0.02122902210221,"9.0-9.2":0.01959602040204,"9.3":0.20739121592159,"10.0-10.2":0.071852074807481,"10.3":0.23188624142414,"11.0-11.2":0.1959602040204,"11.3-11.4":0.34946236383638,"12.0-12.1":0.49969852025203,"12.2-12.4":3.5370816825683,"13.0-13.1":5.1357903470347,"13.2":2.3384584346435,"13.3":3.6840518355836},I:{"3":0.00088839436619718,"4":0.0038497089201878,_:"76","2.1":0,"2.2":0.00059226291079812,"2.3":0.00059226291079812,"4.1":0.0068110234741784,"4.2-4.3":0.14895412206573,"4.4":0,"4.4.3-4.4.4":0.090616225352113},P:{"4":0.082453723237598,"5.0-5.4":0.041226861618799,"6.2-6.4":0,"7.2-7.4":0.53594920104439,"8.2":0.082453723237598,"9.2":0.1649074464752,"10.1":3.0404810443864},B:{"12":0,"13":0,"14":0.004448,"15":0.004448,"16":0.026688,"17":0.026688,"18":0.782848,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0047069007633588,"9":0,"10":0,"11":4.9281250992366,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.094384},O:{"0":1.010464},Q:{"1.2":0.02776},S:{"2.5":0},H:{"0":0.16294452233677},L:{"0":56.862368}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/PY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/PY.js new file mode 100644 index 0000000..98e2c03 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/PY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.049918,"50":0,"51":0,"52":0,"53":0.004538,"54":0,"55":0,"56":0,"57":0,"58":0.004538,"59":0.004538,"60":0.004538,"61":0.004538,"62":0.004538,"63":0.009076,"64":0.004538,"65":0.013614,"66":0.004538,"67":0.013614,"68":0.027228,"69":0.013614,"70":0.02269,"71":0.049918,"72":0.031766,"73":0.027228,"74":0.04538,"75":0.06807,"76":0.072608,"77":0.081684,"78":6.357738,"79":5.064408,"80":0.004538,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.009076,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.004538,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004538,"48":0.004538,"49":0,"50":0,"51":0,"52":0.058994,"53":0,"54":0,"55":0,"56":0.004538,"57":0.004538,"58":0,"59":0.004538,"60":0.004538,"61":0.004538,"62":0,"63":0,"64":0,"65":0,"66":0.004538,"67":0.004538,"68":0.040842,"69":0.018152,"70":0.240514,"71":0.676162,"72":0.004538,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.004538,"64":0.018152,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.004538,"11":0.02269,"12":0.027228,"13":0.313122,_:"0","3.1":0,"3.2":0,"5.1":6.144452,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02269,"11.1":0.027228,"12.1":0.081684},G:{"8":0.00033297149714971,"3.2":0.0013318859885989,"4.0-4.1":0.00066594299429943,"4.2-4.3":0,"5.0-5.1":0.0019978289828983,"6.0-6.1":0.00066594299429943,"7.0-7.1":0.002330800480048,"8.1-8.4":0.0043286294629463,"9.0-9.2":0.0039956579657966,"9.3":0.042287380138014,"10.0-10.2":0.014650745874587,"10.3":0.04728195259526,"11.0-11.2":0.039956579657966,"11.3-11.4":0.071255900390039,"12.0-12.1":0.10188927812781,"12.2-12.4":0.72121626282628,"13.0-13.1":1.0471953585359,"13.2":0.47681518391839,"13.3":0.75118369756976},I:{"3":0.00074269014084507,"4":0.003218323943662,_:"76","2.1":0,"2.2":0.00049512676056338,"2.3":0.00049512676056338,"4.1":0.0056939577464789,"4.2-4.3":0.12452438028169,"4.4":0,"4.4.3-4.4.4":0.075754394366197},P:{"4":0.77137267848101,"5.0-5.4":0.071047483544304,"6.2-6.4":0.091346764556962,"7.2-7.4":0.28418993417722,"8.2":0.12179568607595,"9.2":0.47703310379747,"10.1":2.1923223493671},B:{"12":0,"13":0.004538,"14":0,"15":0.004538,"16":0.004538,"17":0.018152,"18":0.163368,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.009076,"9":0,"10":0,"11":0.049918,"5.5":0},N:{"10":0,"11":0.038234},J:{"7":0,"10":0.010924},R:{_:"0"},M:{"0":0.05462},O:{"0":0.05462},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.25338236769759},L:{"0":69.67028}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/QA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/QA.js new file mode 100644 index 0000000..5f6b5dc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/QA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.006594,"34":0.003297,"35":0,"36":0.003297,"37":0,"38":0.013188,"39":0,"40":0,"41":0,"42":0,"43":0.003297,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.095613,"50":0,"51":0,"52":0,"53":0.009891,"54":0,"55":0,"56":0,"57":0.003297,"58":0.009891,"59":0.003297,"60":0.003297,"61":0.052752,"62":0.003297,"63":0.013188,"64":0,"65":0.023079,"66":0.009891,"67":0.013188,"68":0.003297,"69":0.03297,"70":0.046158,"71":0.052752,"72":0.023079,"73":0.03297,"74":0.029673,"75":0.019782,"76":0.036267,"77":0.075831,"78":3.821223,"79":3.158526,"80":0.013188,"81":0.003297},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003297,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.003297,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.003297,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.006594,"46":0,"47":0,"48":0.003297,"49":0,"50":0.003297,"51":0,"52":0.006594,"53":0,"54":0,"55":0,"56":0.003297,"57":0,"58":0,"59":0,"60":0.003297,"61":0,"62":0,"63":0.013188,"64":0,"65":0.003297,"66":0.003297,"67":0.003297,"68":0.046158,"69":0.006594,"70":0.09891,"71":0.29673,"72":0.006594,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.003297,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.036267,"46":0.029673,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.003297,"54":0,"55":0.013188,"56":0,"57":0,"58":0.003297,"60":0,"62":0.003297,"63":0,"64":0.006594,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.009891,"9":0,"10":0.003297,"11":0.009891,"12":0.03297,"13":0.636321,_:"0","3.1":0,"3.2":0,"5.1":0.204414,"6.1":0,"7.1":0,"9.1":0.009891,"10.1":0.026376,"11.1":0.062643,"12.1":0.145068},G:{"8":0.0013459384938494,"3.2":0.0053837539753975,"4.0-4.1":0.0026918769876988,"4.2-4.3":0,"5.0-5.1":0.0080756309630963,"6.0-6.1":0.0026918769876988,"7.0-7.1":0.0094215694569457,"8.1-8.4":0.017497200420042,"9.0-9.2":0.016151261926193,"9.3":0.17093418871887,"10.0-10.2":0.059221293729373,"10.3":0.19112326612661,"11.0-11.2":0.16151261926193,"11.3-11.4":0.28803083768377,"12.0-12.1":0.41185717911791,"12.2-12.4":2.9153027776778,"13.0-13.1":4.2329765631563,"13.2":1.9273839231923,"13.3":3.0364372421242},I:{"3":0.00037533098591549,"4":0.0016264342723005,_:"76","2.1":0,"2.2":0.000250220657277,"2.3":0.000250220657277,"4.1":0.0028775375586854,"4.2-4.3":0.062930495305164,"4.4":0,"4.4.3-4.4.4":0.03828376056338},P:{"4":0.31842082253521,"5.0-5.4":0.020543278873239,"6.2-6.4":0.01027163943662,"7.2-7.4":0.12325967323944,"8.2":0.051358197183099,"9.2":0.33896410140845,"10.1":2.7527993690141},B:{"12":0.003297,"13":0.003297,"14":0.006594,"15":0.013188,"16":0.019782,"17":0.06594,"18":0.448392,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.009973425,"9":0.003324475,"10":0.003324475,"11":0.382314625,"5.5":0},N:{"10":0,"11":0.006703},J:{"7":0,"10":0.026812},R:{_:"0"},M:{"0":0.080436},O:{"0":12.923384},Q:{"1.2":0},S:{"2.5":0},H:{"0":1.446880556701},L:{"0":51.71788}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/RE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/RE.js new file mode 100644 index 0000000..45d5324 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/RE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.028686,"35":0,"36":0.009562,"37":0,"38":0,"39":0,"40":0,"41":0.014343,"42":0,"43":0,"44":0.004781,"45":0,"46":0,"47":0,"48":0.019124,"49":0.109963,"50":0,"51":0,"52":0,"53":0.014343,"54":0.019124,"55":0.052591,"56":0.076496,"57":0,"58":0.014343,"59":0,"60":0,"61":0.014343,"62":0.028686,"63":0.023905,"64":0.004781,"65":0.028686,"66":0.004781,"67":0.023905,"68":0.004781,"69":0.033467,"70":0.023905,"71":0.014343,"72":0.019124,"73":0.014343,"74":0.052591,"75":0.129087,"76":0.114744,"77":0.09562,"78":6.588218,"79":5.005707,"80":0.009562,"81":0.004781},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.129087,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.004781,"33":0,"34":0,"35":0,"36":0.004781,"37":0,"38":0,"39":0,"40":0.004781,"41":0.004781,"42":0,"43":0,"44":0,"45":0.004781,"46":0,"47":0.009562,"48":0.043029,"49":0.028686,"50":0.004781,"51":0,"52":0.105182,"53":0,"54":0.004781,"55":0.028686,"56":0.043029,"57":0.004781,"58":0,"59":0,"60":0.234269,"61":0.004781,"62":0.014343,"63":0.004781,"64":0.009562,"65":0.019124,"66":0.009562,"67":0.033467,"68":0.291641,"69":0.04781,"70":0.822332,"71":1.96021,"72":0.014343,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.004781,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004781,"56":0,"57":0,"58":0,"60":0,"62":0.033467,"63":0.004781,"64":0.023905,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.004781,"10":0.004781,"11":0.014343,"12":0.105182,"13":1.716379,_:"0","3.1":0,"3.2":0,"5.1":0.009562,"6.1":0,"7.1":0,"9.1":0.038248,"10.1":0.062153,"11.1":0.349013,"12.1":0.353794},G:{"8":0.0013865525552555,"3.2":0.0055462102210221,"4.0-4.1":0.0027731051105111,"4.2-4.3":0,"5.0-5.1":0.0083193153315332,"6.0-6.1":0.0027731051105111,"7.0-7.1":0.0097058678867887,"8.1-8.4":0.018025183218322,"9.0-9.2":0.016638630663066,"9.3":0.17609217451745,"10.0-10.2":0.061008312431243,"10.3":0.19689046284628,"11.0-11.2":0.16638630663066,"11.3-11.4":0.29672224682468,"12.0-12.1":0.42428508190819,"12.2-12.4":3.0032728346835,"13.0-13.1":4.3607077862786,"13.2":1.9855432591259,"13.3":3.1280625646565},I:{"3":0.00076230985915493,"4":0.0033033427230047,_:"76","2.1":0,"2.2":0.00050820657276995,"2.3":0.00050820657276995,"4.1":0.0058443755868545,"4.2-4.3":0.12781395305164,"4.4":0,"4.4.3-4.4.4":0.077755605633803},P:{"4":0.18747287527352,"5.0-5.4":0.020830319474836,"6.2-6.4":0.041660638949672,"7.2-7.4":0.19788803501094,"8.2":0.031245479212254,"9.2":0.32286995185996,"10.1":3.936930380744},B:{"12":0.004781,"13":0,"14":0.009562,"15":0.023905,"16":0.019124,"17":0.09562,"18":0.9562,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.009562,"9":0,"10":0.004781,"11":0.372918,"5.5":0},N:{"10":0,"11":0.010438},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.224417},O:{"0":0.10438},Q:{"1.2":0.005219},S:{"2.5":0},H:{"0":0.1136432766323},L:{"0":56.93832}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/RO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/RO.js new file mode 100644 index 0000000..d91f100 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/RO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00507,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00507,"35":0,"36":0.00507,"37":0,"38":0.01014,"39":0.00507,"40":0.00507,"41":0.00507,"42":0,"43":0.00507,"44":0,"45":0,"46":0.00507,"47":0,"48":0.00507,"49":0.54249,"50":0.00507,"51":0.01014,"52":0.00507,"53":0.02028,"54":0,"55":0.01014,"56":0.00507,"57":0.00507,"58":0.01521,"59":0.00507,"60":0.07605,"61":0.09126,"62":0.01014,"63":0.04056,"64":0.01014,"65":0.01014,"66":0.01014,"67":0.03549,"68":0.01521,"69":0.03549,"70":0.09633,"71":0.13182,"72":0.10647,"73":0.08619,"74":0.0507,"75":0.07605,"76":0.08619,"77":0.1521,"78":8.94348,"79":7.11828,"80":0.02028,"81":0.00507},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01521,"22":0,"23":0,"24":0,"25":0.01014,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00507,"44":0,"45":0.01014,"46":0,"47":0.00507,"48":0.01014,"49":0.00507,"50":0.00507,"51":0.00507,"52":0.14196,"53":0.00507,"54":0.00507,"55":0.00507,"56":0.01521,"57":0.00507,"58":0.01521,"59":0.01014,"60":0.02028,"61":0.00507,"62":0.01014,"63":0.02535,"64":0.01521,"65":0.03549,"66":0.03549,"67":0.02535,"68":0.20787,"69":0.03549,"70":0.64389,"71":2.07363,"72":0.02028,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01521,"37":0,"38":0,"39":0,"40":0.00507,"41":0,"42":0,"43":0,"44":0,"45":0.00507,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00507,"54":0,"55":0.01521,"56":0.00507,"57":0.01521,"58":0.01014,"60":0,"62":0.00507,"63":0.01014,"64":0.06084,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00507},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00507,"9":0,"10":0,"11":0.00507,"12":0.02535,"13":0.45123,_:"0","3.1":0,"3.2":0,"5.1":0.21294,"6.1":0,"7.1":0,"9.1":0.01014,"10.1":0.01521,"11.1":0.02535,"12.1":0.08619},G:{"8":0.0012551415141514,"3.2":0.0050205660566057,"4.0-4.1":0.0025102830283028,"4.2-4.3":0,"5.0-5.1":0.0075308490849085,"6.0-6.1":0.0025102830283028,"7.0-7.1":0.0087859905990599,"8.1-8.4":0.016316839683968,"9.0-9.2":0.015061698169817,"9.3":0.15940297229723,"10.0-10.2":0.055226226622662,"10.3":0.1782300950095,"11.0-11.2":0.15061698169817,"11.3-11.4":0.2686002840284,"12.0-12.1":0.38407330333033,"12.2-12.4":2.718636519652,"13.0-13.1":3.9474200620062,"13.2":1.7973626482648,"13.3":2.8315992559256},I:{"3":0.00098591549295775,"4":0.0042723004694836,_:"76","2.1":0,"2.2":0.00065727699530516,"2.3":0.00065727699530516,"4.1":0.0075586854460094,"4.2-4.3":0.16530516431925,"4.4":0,"4.4.3-4.4.4":0.10056338028169},P:{"4":0.36526314606742,"5.0-5.4":0.040584794007491,"6.2-6.4":0.050730992509363,"7.2-7.4":0.12175438202247,"8.2":0.081169588014981,"9.2":0.49716372659176,"10.1":4.220818576779},B:{"12":0.00507,"13":0.00507,"14":0.01521,"15":0.02028,"16":0.01014,"17":0.08112,"18":0.66924,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.056628,"9":0.005148,"10":0.015444,"11":0.59202,"5.5":0},N:{"10":0,"11":0.0493},J:{"7":0,"10":0.00986},R:{_:"0"},M:{"0":0.2958},O:{"0":0.27608},Q:{"1.2":0.02958},S:{"2.5":0},H:{"0":0.40139687285223},L:{"0":52.23699}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/RS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/RS.js new file mode 100644 index 0000000..fcb845d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/RS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005495,"27":0,"28":0,"29":0.005495,"30":0,"31":0.005495,"32":0,"33":0.027475,"34":0.01099,"35":0,"36":0.005495,"37":0.005495,"38":0.016485,"39":0,"40":0.005495,"41":0.005495,"42":0,"43":0.005495,"44":0,"45":0,"46":0.005495,"47":0.005495,"48":0.005495,"49":0.642915,"50":0.005495,"51":0,"52":0.005495,"53":0.016485,"54":0,"55":0.005495,"56":0.005495,"57":0.005495,"58":0.038465,"59":0.005495,"60":0.005495,"61":0.04396,"62":0.016485,"63":0.1099,"64":0.01099,"65":0.016485,"66":0.016485,"67":0.038465,"68":0.016485,"69":0.038465,"70":0.104405,"71":0.14287,"72":0.126385,"73":0.104405,"74":0.07693,"75":0.08792,"76":0.12089,"77":0.17584,"78":9.46239,"79":9.27556,"80":0.027475,"81":0.005495},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005495,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005495,"35":0.005495,"36":0,"37":0,"38":0.005495,"39":0,"40":0.005495,"41":0,"42":0.005495,"43":0.01099,"44":0,"45":0.005495,"46":0,"47":0.01099,"48":0.027475,"49":0.01099,"50":0.038465,"51":0.005495,"52":0.26376,"53":0.005495,"54":0.005495,"55":0.005495,"56":0.02198,"57":0.005495,"58":0.01099,"59":0.005495,"60":0.016485,"61":0.005495,"62":0.005495,"63":0.016485,"64":0.027475,"65":0.03297,"66":0.03297,"67":0.016485,"68":0.15386,"69":0.05495,"70":0.79128,"71":3.104675,"72":0.06594,"73":0.005495,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.04396,"37":0,"38":0,"39":0,"40":0.005495,"41":0,"42":0,"43":0,"44":0,"45":0.005495,"46":0.005495,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.005495,"54":0.005495,"55":0.016485,"56":0.005495,"57":0.01099,"58":0.016485,"60":0,"62":0.005495,"63":0.005495,"64":0.038465,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01099},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005495,"12":0.027475,"13":0.434105,_:"0","3.1":0,"3.2":0,"5.1":0.005495,"6.1":0,"7.1":0,"9.1":0.005495,"10.1":0.02198,"11.1":0.04396,"12.1":0.082425},G:{"8":0.00067513401340134,"3.2":0.0027005360536054,"4.0-4.1":0.0013502680268027,"4.2-4.3":0,"5.0-5.1":0.004050804080408,"6.0-6.1":0.0013502680268027,"7.0-7.1":0.0047259380938094,"8.1-8.4":0.0087767421742174,"9.0-9.2":0.0081016081608161,"9.3":0.08574201970197,"10.0-10.2":0.029705896589659,"10.3":0.09586902990299,"11.0-11.2":0.081016081608161,"11.3-11.4":0.14447867886789,"12.0-12.1":0.20659100810081,"12.2-12.4":1.4623402730273,"13.0-13.1":2.1232964721472,"13.2":0.96679190719072,"13.3":1.5231023342334},I:{"3":0.0010915492957746,"4":0.0047300469483568,_:"76","2.1":0,"2.2":0.00072769953051643,"2.3":0.00072769953051643,"4.1":0.008368544600939,"4.2-4.3":0.18301643192488,"4.4":0,"4.4.3-4.4.4":0.11133802816901},P:{"4":0.20479554317549,"5.0-5.4":0,"6.2-6.4":0.040959108635097,"7.2-7.4":0.061438662952646,"8.2":0.030719331476323,"9.2":0.22527509749304,"10.1":3.1026524791086},B:{"12":0.005495,"13":0.005495,"14":0.03297,"15":0.049455,"16":0.01099,"17":0.060445,"18":0.47257,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.045493488372093,"9":0.0056866860465116,"10":0.022746744186047,"11":0.41512808139535,"5.5":0},N:{"10":0,"11":0.148665},J:{"7":0,"10":0.022525},R:{_:"0"},M:{"0":0.17119},O:{"0":0.040545},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.51180515463918},L:{"0":56.202045}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/RU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/RU.js new file mode 100644 index 0000000..b1da82b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/RU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.007646,"27":0,"28":0.007646,"29":0,"30":0.030584,"31":0.015292,"32":0,"33":0.015292,"34":0,"35":0,"36":0.022938,"37":0,"38":0.007646,"39":0.007646,"40":0.007646,"41":0.015292,"42":0,"43":0.007646,"44":0.007646,"45":0.007646,"46":0.007646,"47":0.007646,"48":0.168212,"49":0.596388,"50":0.015292,"51":0.099398,"52":0.007646,"53":0.007646,"54":0.007646,"55":0.022938,"56":0.030584,"57":0.022938,"58":0.030584,"59":0.030584,"60":0.030584,"61":0.145274,"62":0.030584,"63":0.068814,"64":0.03823,"65":0.053522,"66":0.07646,"67":0.122336,"68":0.053522,"69":0.084106,"70":0.519928,"71":0.519928,"72":0.451114,"73":0.336424,"74":0.160566,"75":0.221734,"76":0.321132,"77":0.412884,"78":15.819574,"79":12.69236,"80":0.068814,"81":0.015292},C:{"2":0,"3":0.015292,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.007646,"13":0,"14":0,"15":0,"16":0.007646,"17":0,"18":0,"19":0,"20":0,"21":0.007646,"22":0,"23":0,"24":0,"25":0.007646,"26":0.007646,"27":0,"28":0.007646,"29":0.007646,"30":0.007646,"31":0.007646,"32":0.007646,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.007646,"43":0.007646,"44":0.007646,"45":0.030584,"46":0.015292,"47":0.022938,"48":0.030584,"49":0.022938,"50":0.03823,"51":0.030584,"52":0.244672,"53":0.022938,"54":0.022938,"55":0.030584,"56":0.061168,"57":0.015292,"58":0.007646,"59":0.007646,"60":0.053522,"61":0.015292,"62":0.015292,"63":0.061168,"64":0.068814,"65":0.07646,"66":0.068814,"67":0.03823,"68":0.198796,"69":0.091752,"70":0.749308,"71":2.156172,"72":0.022938,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.007646,"15":0,"16":0,"17":0,"18":0.007646,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.122336,"37":0.007646,"38":0,"39":0,"40":0,"41":0,"42":0.007646,"43":0,"44":0,"45":0.015292,"46":0.015292,"47":0.007646,"48":0.007646,"49":0,"50":0,"51":0,"52":0,"53":0.015292,"54":0.007646,"55":0.022938,"56":0.030584,"57":0.03823,"58":0.045876,"60":0.015292,"62":0.015292,"63":0.030584,"64":0.237026,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.007646,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03823},E:{"4":0.022938,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.007646,"11":0.030584,"12":0.160566,"13":1.903854,_:"0","3.1":0,"3.2":0,"5.1":0.091752,"6.1":0,"7.1":0,"9.1":0.007646,"10.1":0.045876,"11.1":0.129982,"12.1":0.489344},G:{"8":0.00082857725772577,"3.2":0.0033143090309031,"4.0-4.1":0.0016571545154515,"4.2-4.3":0,"5.0-5.1":0.0049714635463546,"6.0-6.1":0.0016571545154515,"7.0-7.1":0.0058000408040804,"8.1-8.4":0.010771504350435,"9.0-9.2":0.0099429270927093,"9.3":0.10522931173117,"10.0-10.2":0.036457399339934,"10.3":0.11765797059706,"11.0-11.2":0.099429270927093,"11.3-11.4":0.17731553315332,"12.0-12.1":0.25354464086409,"12.2-12.4":1.794698340234,"13.0-13.1":2.6058754755476,"13.2":1.1865226330633,"13.3":1.8692702934293},I:{"3":0.0012511549295775,"4":0.0054216713615023,_:"76","2.1":0,"2.2":0.00083410328638498,"2.3":0.00083410328638498,"4.1":0.0095921877934272,"4.2-4.3":0.20977697652582,"4.4":0,"4.4.3-4.4.4":0.1276178028169},P:{"4":0.093887431578947,"5.0-5.4":0.020863873684211,"6.2-6.4":0.010431936842105,"7.2-7.4":0.041727747368421,"8.2":0.020863873684211,"9.2":0.093887431578947,"10.1":0.69893976842105},B:{"12":0,"13":0.007646,"14":0.053522,"15":0.022938,"16":0.030584,"17":0.11469,"18":0.856352,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.044601666666667,"7":0.062442333333333,"8":0.33005233333333,"9":0.089203333333333,"10":0.160566,"11":0.75822833333333,"5.5":0},N:{"10":0.0103576,"11":0.0414304},J:{"7":0,"10":0.007062},R:{_:"0"},M:{"0":0.103576},O:{"0":0.395472},Q:{"1.2":0.018832},S:{"2.5":0},H:{"0":0.32537780756014},L:{"0":27.35283}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/RW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/RW.js new file mode 100644 index 0000000..c956d2b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/RW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004658,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004658,"26":0,"27":0,"28":0,"29":0,"30":0.004658,"31":0,"32":0,"33":0.02329,"34":0.004658,"35":0.004658,"36":0.013974,"37":0,"38":0,"39":0,"40":0.009316,"41":0.004658,"42":0,"43":0.041922,"44":0,"45":0,"46":0.004658,"47":0,"48":0,"49":0.060554,"50":0.009316,"51":0,"52":0,"53":0.004658,"54":0,"55":0.060554,"56":0.004658,"57":0,"58":0.013974,"59":0.004658,"60":0.218926,"61":0.004658,"62":0.004658,"63":0.172346,"64":0,"65":0.060554,"66":0.004658,"67":0.009316,"68":0.009316,"69":0.177004,"70":0.083844,"71":0.051238,"72":0.032606,"73":0.065212,"74":0.074528,"75":0.083844,"76":0.121108,"77":0.172346,"78":6.190482,"79":4.196858,"80":0.032606,"81":0.009316},C:{"2":0,"3":0,"4":0.004658,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.004658,"19":0,"20":0.004658,"21":0.004658,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.004658,"31":0.004658,"32":0,"33":0,"34":0,"35":0.004658,"36":0,"37":0.004658,"38":0.013974,"39":0,"40":0.009316,"41":0,"42":0,"43":0.018632,"44":0.004658,"45":0.004658,"46":0,"47":0.037264,"48":0.018632,"49":0.009316,"50":0.018632,"51":0,"52":0.02329,"53":0,"54":0.004658,"55":0,"56":0.013974,"57":0.004658,"58":0.004658,"59":0,"60":0.027948,"61":0.004658,"62":0.004658,"63":0.004658,"64":0.009316,"65":0.004658,"66":0.013974,"67":0.02329,"68":0.088502,"69":0.032606,"70":0.507722,"71":1.523166,"72":0.153714,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0.004658,"12":0.004658,"15":0,"16":0.009316,"17":0,"18":0,"19":0.013974,"20":0.051238,"21":0,"22":0,"23":0.065212,"24":0,"25":0,"26":0.004658,"27":0,"28":0.004658,"29":0,"30":0.004658,"31":0,"32":0,"33":0,"34":0.004658,"35":0,"36":0.004658,"37":0.298112,"38":0.018632,"39":0,"40":0,"41":0,"42":0.004658,"43":0.004658,"44":0,"45":0.04658,"46":0.013974,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.013974,"54":0.018632,"55":0.032606,"56":0.004658,"57":0,"58":0,"60":0.004658,"62":0.013974,"63":0.009316,"64":0.027948,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.004658,"12.1":0.107134},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.004658,"11":0.06987,"12":0.09316,"13":0.610198,_:"0","3.1":0,"3.2":0,"5.1":1.402058,"6.1":0.004658,"7.1":0,"9.1":0.009316,"10.1":0.074528,"11.1":0.111792,"12.1":0.293454},G:{"8":0.00042199299929993,"3.2":0.0016879719971997,"4.0-4.1":0.00084398599859986,"4.2-4.3":0,"5.0-5.1":0.0025319579957996,"6.0-6.1":0.00084398599859986,"7.0-7.1":0.0029539509950995,"8.1-8.4":0.0054859089908991,"9.0-9.2":0.0050639159915992,"9.3":0.053593110911091,"10.0-10.2":0.018567691969197,"10.3":0.05992300590059,"11.0-11.2":0.050639159915992,"11.3-11.4":0.090306501850185,"12.0-12.1":0.12912985778578,"12.2-12.4":0.91403683648365,"13.0-13.1":1.3271679827983,"13.2":0.6042939749975,"13.3":0.95201620642064},I:{"3":0.0016881901408451,"4":0.0073154906103286,_:"76","2.1":0,"2.2":0.0011254600938967,"2.3":0.0011254600938967,"4.1":0.012942791079812,"4.2-4.3":0.28305321361502,"4.4":0,"4.4.3-4.4.4":0.1721953943662},P:{"4":0.40006008588957,"5.0-5.4":0.041031803680982,"6.2-6.4":0.020515901840491,"7.2-7.4":0.12309541104294,"8.2":0.020515901840491,"9.2":0.23593287116564,"10.1":0.83089402453988},B:{"12":0.079186,"13":0.088502,"14":0.051238,"15":0.02329,"16":0.032606,"17":0.177004,"18":0.572934,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.051238,"9":0,"10":0.013974,"11":0.260848,"5.5":0},N:{"10":0.0202996,"11":0.0811984},J:{"7":0,"10":0.064104},R:{_:"0"},M:{"0":0.165602},O:{"0":3.173148},Q:{"1.2":0.02671},S:{"2.5":0.448728},H:{"0":19.167775223368},L:{"0":36.989964}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SA.js new file mode 100644 index 0000000..4e878f9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.003784,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003784,"31":0,"32":0,"33":0.003784,"34":0.003784,"35":0.003784,"36":0.003784,"37":0,"38":0.003784,"39":0,"40":0.003784,"41":0,"42":0.003784,"43":0.011352,"44":0,"45":0,"46":0,"47":0.003784,"48":0.003784,"49":0.102168,"50":0,"51":0,"52":0.011352,"53":0.007568,"54":0,"55":0.007568,"56":0.007568,"57":0,"58":0.007568,"59":0,"60":0,"61":0.007568,"62":0.003784,"63":0.030272,"64":0.003784,"65":0.011352,"66":0.007568,"67":0.015136,"68":0.003784,"69":0.041624,"70":0.022704,"71":0.030272,"72":0.026488,"73":0.026488,"74":0.034056,"75":0.041624,"76":0.05676,"77":0.105952,"78":5.03272,"79":4.10564,"80":0.015136,"81":0.003784},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003784,"22":0,"23":0,"24":0,"25":0.003784,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.003784,"48":0.003784,"49":0,"50":0,"51":0,"52":0.011352,"53":0,"54":0,"55":0.003784,"56":0.003784,"57":0,"58":0,"59":0,"60":0.003784,"61":0.003784,"62":0,"63":0.003784,"64":0,"65":0,"66":0.003784,"67":0.007568,"68":0.049192,"69":0.011352,"70":0.174064,"71":0.541112,"72":0.011352,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.003784,"46":0.003784,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.003784,"55":0.003784,"56":0.007568,"57":0.003784,"58":0.003784,"60":0.003784,"62":0.003784,"63":0.015136,"64":0.015136,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.007568,"9":0,"10":0.011352,"11":0.01892,"12":0.0946,"13":0.81356,_:"0","3.1":0,"3.2":0,"5.1":0.987624,"6.1":0,"7.1":0,"9.1":0.007568,"10.1":0.030272,"11.1":0.07568,"12.1":0.219472},G:{"8":0.002372596459646,"3.2":0.0094903858385839,"4.0-4.1":0.0047451929192919,"4.2-4.3":0,"5.0-5.1":0.014235578757876,"6.0-6.1":0.0047451929192919,"7.0-7.1":0.016608175217522,"8.1-8.4":0.030843753975398,"9.0-9.2":0.028471157515752,"9.3":0.30131975037504,"10.0-10.2":0.10439424422442,"10.3":0.33690869726973,"11.0-11.2":0.28471157515752,"11.3-11.4":0.50773564236424,"12.0-12.1":0.72601451665167,"12.2-12.4":5.1390439315932,"13.0-13.1":7.4618158655866,"13.2":3.397558130213,"13.3":5.3525776129613},I:{"3":0.00050628169014085,"4":0.0021938873239437,_:"76","2.1":0,"2.2":0.00033752112676056,"2.3":0.00033752112676056,"4.1":0.0038814929577465,"4.2-4.3":0.084886563380282,"4.4":0,"4.4.3-4.4.4":0.051640732394366},P:{"4":0.26597376,"5.0-5.4":0.03068928,"6.2-6.4":0.04091904,"7.2-7.4":0.16367616,"8.2":0.08183808,"9.2":0.45010944,"10.1":2.52675072},B:{"12":0.003784,"13":0.003784,"14":0.007568,"15":0.007568,"16":0.01892,"17":0.060544,"18":0.473,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.027126265060241,"9":0.0038751807228916,"10":0.0077503614457831,"11":0.28288819277108,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.006216},R:{_:"0"},M:{"0":0.105672},O:{"0":2.101008},Q:{"1.2":0.012432},S:{"2.5":0},H:{"0":0.17654721649485},L:{"0":53.545416}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SB.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SB.js new file mode 100644 index 0000000..5e6b9e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SB.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005538,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.002769,"39":0,"40":0.008307,"41":0,"42":0,"43":0.019383,"44":0,"45":0,"46":0.011076,"47":0.002769,"48":0,"49":0.011076,"50":0,"51":0.005538,"52":0,"53":0,"54":0.002769,"55":0,"56":0.005538,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.08307,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.160602,"70":0.005538,"71":0.002769,"72":0,"73":0.005538,"74":0.011076,"75":0.019383,"76":0.002769,"77":0.044304,"78":1.893996,"79":0.946998,"80":0.002769,"81":0},C:{"2":0.002769,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002769,"30":0,"31":0,"32":0,"33":0.005538,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.002769,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.002769,"56":0.002769,"57":0,"58":0.002769,"59":0.005538,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.002769,"66":0,"67":0.005538,"68":0.047073,"69":0.005538,"70":0.121836,"71":0.501189,"72":0.011076,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.011076,"18":0,"19":0.005538,"20":0,"21":0,"22":0,"23":0.002769,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002769,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.013845,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.002769,"45":0.016614,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.002769,"52":0,"53":0.155064,"54":0.005538,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.005538,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.069225},E:{"4":0,"5":0,"6":0,"7":0,"8":0.008307,"9":0.024921,"10":0.002769,"11":0.002769,"12":0.011076,"13":0.121836,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.005538,"10.1":0.002769,"11.1":0.263055,"12.1":0.011076},G:{"8":0.00074984848484848,"3.2":0.0029993939393939,"4.0-4.1":0.001499696969697,"4.2-4.3":0,"5.0-5.1":0.0044990909090909,"6.0-6.1":0.001499696969697,"7.0-7.1":0.0052489393939394,"8.1-8.4":0.0097480303030303,"9.0-9.2":0.0089981818181818,"9.3":0.095230757575758,"10.0-10.2":0.032993333333333,"10.3":0.10647848484848,"11.0-11.2":0.089981818181818,"11.3-11.4":0.16046757575758,"12.0-12.1":0.22945363636364,"12.2-12.4":1.6241718181818,"13.0-13.1":2.3582734848485,"13.2":1.073783030303,"13.3":1.6916581818182},I:{"3":0.0039593732394366,"4":0.017157284037559,_:"76","2.1":0,"2.2":0.0026395821596244,"2.3":0.0026395821596244,"4.1":0.030355194835681,"4.2-4.3":0.66385491314554,"4.4":0,"4.4.3-4.4.4":0.40385607042254},P:{"4":1.7453937057793,"5.0-5.4":0.19393263397548,"6.2-6.4":0.41848621015762,"7.2-7.4":1.5514610718039,"8.2":0.071448865148862,"9.2":1.0615259964974,"10.1":0.76552355516637},B:{"12":0.011076,"13":0.022152,"14":0.060918,"15":0.116298,"16":0.091377,"17":0.088608,"18":0.182754,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.011076,"9":0,"10":0.024921,"11":1.013454,"5.5":0},N:{"10":0,"11":0.245854},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.166313},O:{"0":6.630827},Q:{"1.2":0.115696},S:{"2.5":0},H:{"0":7.174444137457},L:{"0":58.721993}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SC.js new file mode 100644 index 0000000..b068254 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.005545,"31":0,"32":0.005545,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.005545,"39":0,"40":0,"41":0.005545,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.005545,"48":0,"49":0.648765,"50":0,"51":0,"52":0,"53":0.01109,"54":0,"55":0.016635,"56":0.01109,"57":0,"58":0.027725,"59":0,"60":0.01109,"61":0.005545,"62":0.02218,"63":0.02218,"64":0.016635,"65":0.027725,"66":0.005545,"67":0.01109,"68":0.01109,"69":0.09981,"70":0.27725,"71":0.460235,"72":0.18853,"73":0.89829,"74":0.02218,"75":0.171895,"76":0.471325,"77":0.19962,"78":8.19551,"79":8.4284,"80":0.027725,"81":0},C:{"2":0,"3":0,"4":0.027725,"5":0.027725,"6":0.03327,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.005545,"16":0.01109,"17":0,"18":0,"19":0,"20":0,"21":0.02218,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.005545,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01109,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.105355,"46":0.016635,"47":0.005545,"48":0.005545,"49":0.005545,"50":0.01109,"51":0.005545,"52":0.127535,"53":0.005545,"54":0.005545,"55":0.01109,"56":0.02218,"57":0.005545,"58":0,"59":0,"60":0.04436,"61":0.005545,"62":0.005545,"63":0.15526,"64":0.04436,"65":0.016635,"66":0.027725,"67":0.027725,"68":0.89829,"69":0.127535,"70":1.04246,"71":2.98321,"72":0.12199,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.072085,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.016635,"54":0,"55":0.038815,"56":0,"57":0.049905,"58":0,"60":0,"62":0,"63":0.005545,"64":0.027725,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.005545,"11":0.01109,"12":0.282795,"13":0.770755,_:"0","3.1":0,"3.2":0,"5.1":0.01109,"6.1":0,"7.1":0,"9.1":0.02218,"10.1":0.005545,"11.1":0.072085,"12.1":0.16635},G:{"8":0.00075057855785579,"3.2":0.0030023142314231,"4.0-4.1":0.0015011571157116,"4.2-4.3":0,"5.0-5.1":0.0045034713471347,"6.0-6.1":0.0015011571157116,"7.0-7.1":0.0052540499049905,"8.1-8.4":0.0097575212521252,"9.0-9.2":0.0090069426942694,"9.3":0.095323476847685,"10.0-10.2":0.033025456545655,"10.3":0.10658215521552,"11.0-11.2":0.090069426942694,"11.3-11.4":0.16062381138114,"12.0-12.1":0.22967703870387,"12.2-12.4":1.6257531563156,"13.0-13.1":2.3605695644564,"13.2":1.0748284948495,"13.3":1.6933052265227},I:{"3":0.00063764084507042,"4":0.0027631103286385,_:"76","2.1":0,"2.2":0.00042509389671362,"2.3":0.00042509389671362,"4.1":0.0048885798122066,"4.2-4.3":0.10691111502347,"4.4":0,"4.4.3-4.4.4":0.065039366197183},P:{"4":0.43643803411131,"5.0-5.4":0.020299443447038,"6.2-6.4":0.060898330341113,"7.2-7.4":0.13194638240575,"8.2":0.081197773788151,"9.2":0.89317551166966,"10.1":4.0091400807899},B:{"12":0.016635,"13":0.038815,"14":0.03327,"15":0.016635,"16":0.04436,"17":0.18853,"18":0.604405,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.011174015151515,"8":0.061457083333333,"9":0.016761022727273,"10":0.016761022727273,"11":0.63133185606061,"5.5":0},N:{"10":0.019305,"11":0.03861},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.8019},O:{"0":2.757645},Q:{"1.2":0.16929},S:{"2.5":0},H:{"0":0.87728288659794},L:{"0":46.126295}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SD.js new file mode 100644 index 0000000..eeb3ca4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SD.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.007476,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.003738,"27":0,"28":0,"29":0.007476,"30":0.003738,"31":0,"32":0,"33":0.007476,"34":0,"35":0,"36":0.003738,"37":0,"38":0.003738,"39":0,"40":0.011214,"41":0,"42":0.003738,"43":0.041118,"44":0,"45":0.003738,"46":0.007476,"47":0,"48":0.007476,"49":0.003738,"50":0.003738,"51":0.003738,"52":0,"53":0.007476,"54":0.003738,"55":0.003738,"56":0.003738,"57":0.007476,"58":0.007476,"59":0,"60":0,"61":0,"62":0.003738,"63":0.052332,"64":0.003738,"65":0.003738,"66":0.003738,"67":0.011214,"68":0.007476,"69":0.022428,"70":0.029904,"71":0.007476,"72":0.003738,"73":0.011214,"74":0.01869,"75":0.01869,"76":0.026166,"77":0.029904,"78":0.856002,"79":0.676578,"80":0.003738,"81":0.003738},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.003738,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003738,"31":0,"32":0,"33":0,"34":0.003738,"35":0,"36":0,"37":0,"38":0.003738,"39":0,"40":0,"41":0.003738,"42":0,"43":0.014952,"44":0.003738,"45":0.003738,"46":0,"47":0.029904,"48":0.014952,"49":0.003738,"50":0.003738,"51":0,"52":0.041118,"53":0,"54":0,"55":0.007476,"56":0.007476,"57":0.003738,"58":0.003738,"59":0,"60":0.007476,"61":0.003738,"62":0.003738,"63":0.003738,"64":0.003738,"65":0.007476,"66":0.007476,"67":0.003738,"68":0.183162,"69":0.033642,"70":0.284088,"71":0.7476,"72":0.01869,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0.007476,"16":0.007476,"17":0,"18":0,"19":0.011214,"20":0.022428,"21":0,"22":0,"23":0.01869,"24":0,"25":0,"26":0.003738,"27":0,"28":0.003738,"29":0.003738,"30":0.003738,"31":0,"32":0,"33":0.003738,"34":0.003738,"35":0,"36":0,"37":0.003738,"38":0.003738,"39":0,"40":0,"41":0,"42":0.003738,"43":0,"44":0,"45":0.003738,"46":0,"47":0,"48":0,"49":0.003738,"50":0,"51":0,"52":0,"53":0.100926,"54":0.048594,"55":0.123354,"56":0.007476,"57":0,"58":0,"60":0,"62":0.003738,"63":0.003738,"64":0.007476,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0.003738,"11.6":0,"12.1":0.022428},E:{"4":0,"5":0,"6":0,"7":0.003738,"8":0.067284,"9":0,"10":0.007476,"11":0.003738,"12":0.007476,"13":0.123354,_:"0","3.1":0,"3.2":0,"5.1":9.229122,"6.1":0,"7.1":0,"9.1":0.01869,"10.1":0.026166,"11.1":0.03738,"12.1":0.07476},G:{"8":0.00029207100710071,"3.2":0.0011682840284028,"4.0-4.1":0.00058414201420142,"4.2-4.3":0,"5.0-5.1":0.0017524260426043,"6.0-6.1":0.00058414201420142,"7.0-7.1":0.002044497049705,"8.1-8.4":0.0037969230923092,"9.0-9.2":0.0035048520852085,"9.3":0.03709301790179,"10.0-10.2":0.012851124312431,"10.3":0.041474083008301,"11.0-11.2":0.035048520852085,"11.3-11.4":0.062503195519552,"12.0-12.1":0.089373728172817,"12.2-12.4":0.63262580138014,"13.0-13.1":0.91856331733173,"13.2":0.41824568216822,"13.3":0.6589121920192},I:{"3":0.0019372957746479,"4":0.0083949483568075,_:"76","2.1":0,"2.2":0.0012915305164319,"2.3":0.0012915305164319,"4.1":0.014852600938967,"4.2-4.3":0.32481992488263,"4.4":0,"4.4.3-4.4.4":0.19760416901408},P:{"4":2.5188928812095,"5.0-5.4":0.130460587473,"6.2-6.4":0.17060230669546,"7.2-7.4":0.41145262203024,"8.2":0.080283438444924,"9.2":0.51180692008639,"10.1":0.81286981425486},B:{"12":0.011214,"13":0.011214,"14":0.003738,"15":0.014952,"16":0.007476,"17":0.048594,"18":0.134568,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0370062,"9":0,"10":0.0041118,"11":0.123354,"5.5":0},N:{"10":0.010436666666667,"11":0.020873333333333},J:{"7":0,"10":0.006262},R:{_:"0"},M:{"0":0.46965},O:{"0":6.60641},Q:{"1.2":0.050096},S:{"2.5":0.006262},H:{"0":13.012963213058},L:{"0":47.35924}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SE.js new file mode 100644 index 0000000..716017f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.005305,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01061,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.196285,"50":0,"51":0.005305,"52":0,"53":0.01061,"54":0,"55":0.005305,"56":0.005305,"57":0.005305,"58":0.005305,"59":0.005305,"60":0.005305,"61":0.047745,"62":0.005305,"63":0.015915,"64":0.005305,"65":0.015915,"66":0.026525,"67":0.037135,"68":0.015915,"69":0.026525,"70":0.03183,"71":0.1061,"72":0.04244,"73":0.08488,"74":0.04244,"75":0.090185,"76":0.18037,"77":0.355435,"78":10.509205,"79":5.649825,"80":0.015915,"81":0.005305},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.015915,"22":0,"23":0.005305,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005305,"46":0,"47":0,"48":0.015915,"49":0,"50":0,"51":0,"52":0.04244,"53":0,"54":0,"55":0,"56":0.015915,"57":0.005305,"58":0.005305,"59":0.005305,"60":0.015915,"61":0.005305,"62":0,"63":0,"64":0.005305,"65":0.005305,"66":0.01061,"67":0.005305,"68":0.19098,"69":0.03183,"70":0.440315,"71":1.22015,"72":0.01061,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005305,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005305,"56":0,"57":0.005305,"58":0,"60":0,"62":0,"63":0,"64":0.015915,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005305,"9":0,"10":0.01061,"11":0.02122,"12":0.090185,"13":2.615365,_:"0","3.1":0,"3.2":0,"5.1":0.143235,"6.1":0,"7.1":0,"9.1":0.015915,"10.1":0.08488,"11.1":0.13793,"12.1":0.35013},G:{"8":0.003663504850485,"3.2":0.01465401940194,"4.0-4.1":0.0073270097009701,"4.2-4.3":0,"5.0-5.1":0.02198102910291,"6.0-6.1":0.0073270097009701,"7.0-7.1":0.025644533953395,"8.1-8.4":0.047625563056306,"9.0-9.2":0.043962058205821,"9.3":0.4652651160116,"10.0-10.2":0.16119421342134,"10.3":0.52021768876888,"11.0-11.2":0.43962058205821,"11.3-11.4":0.7839900380038,"12.0-12.1":1.1210324842484,"12.2-12.4":7.9351515061506,"13.0-13.1":11.521722754775,"13.2":5.2461389458946,"13.3":8.2648669426943},I:{"3":0.00047427816901408,"4":0.002055205399061,_:"76","2.1":0,"2.2":0.00031618544600939,"2.3":0.00031618544600939,"4.1":0.003636132629108,"4.2-4.3":0.079520639671361,"4.4":0,"4.4.3-4.4.4":0.048376373239437},P:{"4":0.11652624713959,"5.0-5.4":0.021186590389016,"6.2-6.4":0.010593295194508,"7.2-7.4":0.05296647597254,"8.2":0.031779885583524,"9.2":0.21186590389016,"10.1":4.1313851258581},B:{"12":0,"13":0.005305,"14":0.015915,"15":0.015915,"16":0.090185,"17":0.164455,"18":1.83553,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.015915,"9":0,"10":0.005305,"11":1.151185,"5.5":0},N:{"10":0,"11":0.014085},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.295785},O:{"0":0.08451},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.1422375257732},L:{"0":28.65521}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SG.js new file mode 100644 index 0000000..f55cebb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00408,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02856,"35":0,"36":0,"37":0,"38":0.05712,"39":0,"40":0.00408,"41":0.00408,"42":0,"43":0.00408,"44":0,"45":0,"46":0,"47":0,"48":0.00408,"49":0.19176,"50":0,"51":0.00408,"52":0.00408,"53":0.05304,"54":0.00408,"55":0.01224,"56":0.00408,"57":0.00816,"58":0.00816,"59":0.00408,"60":0.00816,"61":0.01632,"62":0.01224,"63":0.10608,"64":0.00408,"65":0.02856,"66":0.02856,"67":0.03672,"68":0.0204,"69":0.05304,"70":0.07344,"71":0.08568,"72":0.04488,"73":0.0816,"74":0.0612,"75":0.09384,"76":0.09792,"77":0.19176,"78":5.67528,"79":4.39008,"80":0.01224,"81":0.00408},C:{"2":0.00408,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.0204,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00408,"32":0,"33":0,"34":0.00408,"35":0,"36":0.00816,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00408,"45":0,"46":0,"47":0,"48":0.00816,"49":0,"50":0,"51":0,"52":0.01224,"53":0,"54":0,"55":0,"56":0.01224,"57":0,"58":0.00408,"59":0,"60":0.00816,"61":0,"62":0.00408,"63":0.00816,"64":0.00816,"65":0.00408,"66":0.01224,"67":0.00816,"68":0.1428,"69":0.01224,"70":0.19176,"71":0.612,"72":0.00816,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00408,"37":0.04896,"38":0,"39":0,"40":0.00408,"41":0,"42":0,"43":0,"44":0,"45":0.0408,"46":0.02856,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00816,"56":0,"57":0,"58":0.00408,"60":0,"62":0,"63":0,"64":0.00408,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.04896},E:{"4":0,"5":0,"6":0,"7":0,"8":0.01224,"9":0.00408,"10":0.00816,"11":0.0204,"12":0.06528,"13":1.13424,_:"0","3.1":0,"3.2":0,"5.1":0.03672,"6.1":0,"7.1":0,"9.1":0.01224,"10.1":0.04488,"11.1":0.06936,"12.1":0.204},G:{"8":0.0026341674167417,"3.2":0.010536669666967,"4.0-4.1":0.0052683348334833,"4.2-4.3":0,"5.0-5.1":0.01580500450045,"6.0-6.1":0.0052683348334833,"7.0-7.1":0.018439171917192,"8.1-8.4":0.034244176417642,"9.0-9.2":0.0316100090009,"9.3":0.33453926192619,"10.0-10.2":0.11590336633663,"10.3":0.37405177317732,"11.0-11.2":0.316100090009,"11.3-11.4":0.56371182718272,"12.0-12.1":0.80605522952295,"12.2-12.4":5.7056066246625,"13.0-13.1":8.2844565256526,"13.2":3.7721277407741,"13.3":5.9426816921692},I:{"3":0.00057774647887324,"4":0.0025035680751174,_:"76","2.1":0,"2.2":0.00038516431924883,"2.3":0.00038516431924883,"4.1":0.0044293896713615,"4.2-4.3":0.09686882629108,"4.4":0,"4.4.3-4.4.4":0.05893014084507},P:{"4":0.33506394557823,"5.0-5.4":0.031412244897959,"6.2-6.4":0.01047074829932,"7.2-7.4":0.031412244897959,"8.2":0.031412244897959,"9.2":0.17800272108844,"10.1":3.9998258503401},B:{"12":0,"13":0,"14":0.00816,"15":0.00408,"16":0.01632,"17":0.05712,"18":0.57936,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0084375510204082,"9":0.016875102040816,"10":0.0084375510204082,"11":0.58640979591837,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00592},R:{_:"0"},M:{"0":0.40256},O:{"0":1.82336},Q:{"1.2":0.1184},S:{"2.5":0},H:{"0":1.1097253608247},L:{"0":39.94272}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SH.js new file mode 100644 index 0000000..1478c8c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.76314,"50":0.03634,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.38157,"78":21.9857,"79":7.17715,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.118105,"69":0.118105,"70":0.76314,"71":0.7268,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.499675,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.536015,"7.1":0,"9.1":0,"10.1":0.38157,"11.1":0,"12.1":0},G:{"8":0.000050063506350635,"3.2":0.00020025402540254,"4.0-4.1":0.00010012701270127,"4.2-4.3":0,"5.0-5.1":0.00030038103810381,"6.0-6.1":0.00010012701270127,"7.0-7.1":0.00035044454445445,"8.1-8.4":0.00065082558255826,"9.0-9.2":0.00060076207620762,"9.3":0.0063580653065307,"10.0-10.2":0.0022027942794279,"10.3":0.0071090179017902,"11.0-11.2":0.0060076207620762,"11.3-11.4":0.010713590359036,"12.0-12.1":0.015319432943294,"12.2-12.4":0.10843755475548,"13.0-13.1":0.15744972747275,"13.2":0.071690941094109,"13.3":0.11294327032703},I:{"3":0.00025591549295775,"4":0.0011089671361502,_:"76","2.1":0,"2.2":0.0001706103286385,"2.3":0.0001706103286385,"4.1":0.0019620187793427,"4.2-4.3":0.042908497652582,"4.4":0,"4.4.3-4.4.4":0.02610338028169},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.25452976190476,"10.1":1.6697152380952},B:{"12":0.07268,"13":0.07268,"14":0.572355,"15":0,"16":0.03634,"17":0.03634,"18":3.76119,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":43.31728,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.043005},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":14.0286}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SI.js new file mode 100644 index 0000000..4ce434e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SI.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00666,"37":0,"38":0.01332,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.11988,"47":0,"48":0.00666,"49":0.3663,"50":0,"51":0,"52":0,"53":0.01332,"54":0.00666,"55":0.00666,"56":0.01332,"57":0.00666,"58":0.01998,"59":0,"60":0.00666,"61":0.17316,"62":0.01998,"63":0.00666,"64":0.00666,"65":0.01332,"66":0.00666,"67":0.02664,"68":0.01998,"69":0.02664,"70":0.0999,"71":0.1332,"72":0.07992,"73":0.05994,"74":0.09324,"75":0.05994,"76":0.10656,"77":0.30636,"78":15.70428,"79":10.62936,"80":0.03996,"81":0.00666},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00666,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01998,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00666,"44":0,"45":0.00666,"46":0,"47":0.00666,"48":0.01332,"49":0.00666,"50":0.01332,"51":0.00666,"52":0.19314,"53":0.00666,"54":0.01332,"55":0.00666,"56":0.02664,"57":0.02664,"58":0,"59":0.00666,"60":0.0666,"61":0.01332,"62":0.00666,"63":0.02664,"64":0.00666,"65":0.00666,"66":0.0666,"67":0.01998,"68":0.333,"69":0.0999,"70":1.41192,"71":4.50216,"72":0.02664,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00666,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01332,"56":0,"57":0.01332,"58":0,"60":0,"62":0,"63":0,"64":0.04662,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.01998,"8":0.00666,"9":0,"10":0.00666,"11":0.01998,"12":0.0999,"13":1.61172,_:"0","3.1":0,"3.2":0,"5.1":0.00666,"6.1":0,"7.1":0,"9.1":0.01998,"10.1":0.05328,"11.1":0.10656,"12.1":0.33966},G:{"8":0.00095072107210721,"3.2":0.0038028842884288,"4.0-4.1":0.0019014421442144,"4.2-4.3":0,"5.0-5.1":0.0057043264326433,"6.0-6.1":0.0019014421442144,"7.0-7.1":0.0066550475047505,"8.1-8.4":0.012359373937394,"9.0-9.2":0.011408652865287,"9.3":0.12074157615762,"10.0-10.2":0.041831727172717,"10.3":0.13500239223922,"11.0-11.2":0.11408652865287,"11.3-11.4":0.20345430943094,"12.0-12.1":0.29092064806481,"12.2-12.4":2.0592618421842,"13.0-13.1":2.9900177717772,"13.2":1.3614325752575,"13.3":2.1448267386739},I:{"3":0.00070422535211268,"4":0.0030516431924883,_:"76","2.1":0,"2.2":0.00046948356807512,"2.3":0.00046948356807512,"4.1":0.0053990610328638,"4.2-4.3":0.11807511737089,"4.4":0,"4.4.3-4.4.4":0.071830985915493},P:{"4":0.091823151125402,"5.0-5.4":0.010202572347267,"6.2-6.4":0.020405144694534,"7.2-7.4":0.040810289389068,"8.2":0.020405144694534,"9.2":0.22445659163987,"10.1":2.7240868167203},B:{"12":0.00666,"13":0,"14":0.01332,"15":0.01998,"16":0.02664,"17":0.11988,"18":2.8305,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02011875,"9":0.00670625,"10":0.0134125,"11":1.8911625,"5.5":0},N:{"10":0,"11":0.04342},J:{"7":0,"10":0.00334},R:{_:"0"},M:{"0":0.25718},O:{"0":0.01336},Q:{"1.2":0.00334},S:{"2.5":0.00334},H:{"0":0.20553625429553},L:{"0":40.76866}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SK.js new file mode 100644 index 0000000..ff0c897 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SK.js @@ -0,0 +1 @@ +module.exports={D:{"26":0.006188,"33":0.006188,"34":0.024752,"36":0.012376,"38":0.086632,"40":0.012376,"41":0.012376,"43":0.012376,"47":0.006188,"48":0.068068,"49":1.0829,"53":0.111384,"55":0.006188,"56":0.006188,"57":0.006188,"58":0.024752,"59":0.012376,"60":0.012376,"61":0.06188,"62":0.012376,"63":0.086632,"64":0.006188,"65":0.018564,"66":0.024752,"67":0.055692,"68":0.018564,"69":0.105196,"70":0.09282,"71":0.099008,"72":0.099008,"73":0.074256,"74":0.074256,"75":0.228956,"76":0.142324,"77":0.284648,"78":20.129564,"79":16.416764,"80":0.03094,"81":0.006188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 37 39 42 44 45 46 50 51 52 54"},C:{"38":0.006188,"39":0.012376,"43":0.006188,"45":0.012376,"47":0.018564,"48":0.024752,"49":0.012376,"50":0.024752,"51":0.006188,"52":0.321776,"53":0.012376,"54":0.006188,"55":0.006188,"56":0.037128,"57":0.03094,"58":0.018564,"59":0.006188,"60":0.049504,"61":0.018564,"62":0.012376,"63":0.006188,"64":0.018564,"65":0.018564,"66":0.049504,"67":0.018564,"68":0.241332,"69":0.099008,"70":1.955408,"71":6.268444,"72":0.043316,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 44 46 73 3.5 3.6"},F:{"36":0.037128,"57":0.012376,"62":0.006188,"63":0.012376,"64":0.129948,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.012376},E:{"4":0,"8":0.012376,"9":0.006188,"11":0.03094,"12":0.136136,"13":2.716532,_:"0 5 6 7 10 3.1 3.2 6.1 7.1","5.1":0.426972,"9.1":0.012376,"10.1":0.09282,"11.1":0.117572,"12.1":0.470288},G:{"8":0.0006282804280428,"3.2":0.0025131217121712,"4.0-4.1":0.0012565608560856,"4.2-4.3":0,"5.0-5.1":0.0037696825682568,"6.0-6.1":0.0012565608560856,"7.0-7.1":0.0043979629962996,"8.1-8.4":0.0081676455645565,"9.0-9.2":0.0075393651365137,"9.3":0.079791614361436,"10.0-10.2":0.027644338833883,"10.3":0.089215820782078,"11.0-11.2":0.075393651365137,"11.3-11.4":0.13445201160116,"12.0-12.1":0.1922538109811,"12.2-12.4":1.3608554071407,"13.0-13.1":1.9759419461946,"13.2":0.8996975729573,"13.3":1.4174006456646},I:{"3":0.00083219718309859,"4":0.0036061877934272,_:"76","2.1":0,"2.2":0.00055479812206573,"2.3":0.00055479812206573,"4.1":0.0063801784037559,"4.2-4.3":0.13953172769953,"4.4":0,"4.4.3-4.4.4":0.084884112676056},P:{"4":0.52304186046512,"5.0-5.4":0.031412244897959,"6.2-6.4":0.01047074829932,"7.2-7.4":0.020921674418605,"8.2":0.031382511627907,"9.2":0.12553004651163,"10.1":1.9666373953488},B:{"12":0.006188,"13":0.006188,"14":0.024752,"15":0.024752,"16":0.049504,"17":0.167076,"18":2.221492,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0062731559633028,"7":0.0062731559633028,"8":0.050185247706422,"9":0.012546311926606,"10":0.018819467889908,"11":1.2734506605505,_:"5.5"},N:{"10":0,"11":0.03812},J:{"7":0,"10":0.064804},R:{_:"0"},M:{"0":0.26684},O:{"0":0.080052},Q:{"1.2":0.007624},S:{"2.5":0.007624},H:{"0":0.47277314776632},L:{"0":28.626348}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SL.js new file mode 100644 index 0000000..eb329bb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.003115,"26":0.00623,"27":0,"28":0,"29":0.003115,"30":0.003115,"31":0,"32":0,"33":0.015575,"34":0,"35":0,"36":0,"37":0.003115,"38":0,"39":0,"40":0.00623,"41":0,"42":0,"43":0.01869,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.003115,"50":0,"51":0,"52":0.009345,"53":0,"54":0,"55":0.00623,"56":0,"57":0,"58":0.00623,"59":0,"60":0.040495,"61":0.003115,"62":0,"63":0.109025,"64":0.00623,"65":0.009345,"66":0,"67":0.01246,"68":0.003115,"69":0.077875,"70":0.00623,"71":0.003115,"72":0.003115,"73":0.00623,"74":0.028035,"75":0.01869,"76":0.015575,"77":0.16198,"78":1.54504,"79":1.15255,"80":0.003115,"81":0},C:{"2":0,"3":0,"4":0.003115,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.003115,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.003115,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.003115,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.009345,"44":0.003115,"45":0.003115,"46":0.00623,"47":0.00623,"48":0.003115,"49":0,"50":0,"51":0,"52":0.003115,"53":0,"54":0,"55":0.003115,"56":0.003115,"57":0.003115,"58":0.003115,"59":0,"60":0.00623,"61":0,"62":0.00623,"63":0,"64":0.003115,"65":0,"66":0.00623,"67":0.02492,"68":0.052955,"69":0.01246,"70":0.165095,"71":0.33642,"72":0.046725,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0.003115,"12":0.003115,"15":0.003115,"16":0.01246,"17":0.015575,"18":0,"19":0.003115,"20":0.084105,"21":0.003115,"22":0.003115,"23":0.121485,"24":0.009345,"25":0,"26":0.003115,"27":0,"28":0.003115,"29":0.003115,"30":0.009345,"31":0.003115,"32":0.003115,"33":0.003115,"34":0,"35":0.003115,"36":0.003115,"37":0.00623,"38":0.003115,"39":0,"40":0,"41":0,"42":0.009345,"43":0.003115,"44":0,"45":0.021805,"46":0.00623,"47":0,"48":0,"49":0,"50":0,"51":0.003115,"52":0,"53":0.009345,"54":0.00623,"55":0.028035,"56":0.003115,"57":0,"58":0,"60":0.003115,"62":0.003115,"63":0.00623,"64":0.01869,"9.5-9.6":0,"10.0-10.1":0.003115,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.003115,"12.1":0.644805},E:{"4":0,"5":0,"6":0,"7":0.00623,"8":0.02492,"9":0,"10":0,"11":0.00623,"12":0.009345,"13":0.190015,_:"0","3.1":0,"3.2":0,"5.1":3.062045,"6.1":0,"7.1":0,"9.1":0,"10.1":0.003115,"11.1":0.01869,"12.1":0.02492},G:{"8":0.00031447244724472,"3.2":0.0012578897889789,"4.0-4.1":0.00062894489448945,"4.2-4.3":0,"5.0-5.1":0.0018868346834683,"6.0-6.1":0.00062894489448945,"7.0-7.1":0.0022013071307131,"8.1-8.4":0.0040881418141814,"9.0-9.2":0.0037736693669367,"9.3":0.03993800080008,"10.0-10.2":0.013836787678768,"10.3":0.044655087508751,"11.0-11.2":0.037736693669367,"11.3-11.4":0.067297103710371,"12.0-12.1":0.096228568856886,"12.2-12.4":0.68114732073207,"13.0-13.1":0.98901584658466,"13.2":0.45032454445445,"13.3":0.7094498409841},I:{"3":0.0025917957746479,"4":0.011231115023474,_:"76","2.1":0,"2.2":0.0017278638497653,"2.3":0.0017278638497653,"4.1":0.0198704342723,"4.2-4.3":0.43455775821596,"4.4":0,"4.4.3-4.4.4":0.26436316901408},P:{"4":0.25640689655172,"5.0-5.4":0.051281379310345,"6.2-6.4":0.010256275862069,"7.2-7.4":0.071793931034483,"8.2":0.010256275862069,"9.2":0.15384413793103,"10.1":0.93332110344828},B:{"12":0.03738,"13":0.01869,"14":0.015575,"15":0.02492,"16":0.015575,"17":0.04984,"18":0.40495,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0031601449275362,"8":0.02528115942029,"9":0,"10":0.0094804347826087,"11":0.18012826086957,"5.5":0},N:{"10":0.0218025,"11":0.1090125},J:{"7":0,"10":0.05508},R:{_:"0"},M:{"0":0.130815},O:{"0":3.56643},Q:{"1.2":0.089505},S:{"2.5":0},H:{"0":33.692954149485},L:{"0":33.24797}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SM.js new file mode 100644 index 0000000..8c18ee2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00811,"37":0,"38":0.02433,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.81911,"50":0.00811,"51":0,"52":0,"53":0.01622,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02433,"60":0,"61":0,"62":0,"63":0.00811,"64":0,"65":0.00811,"66":0.01622,"67":0.06488,"68":8.68581,"69":0,"70":0,"71":0.09732,"72":0,"73":0.00811,"74":0.06488,"75":0.17842,"76":0.04866,"77":0.07299,"78":23.54333,"79":13.5437,"80":0,"81":0.00811},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01622,"49":0,"50":0,"51":0,"52":0.21897,"53":0,"54":0,"55":0,"56":0.03244,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00811,"66":0.00811,"67":0.00811,"68":0.12165,"69":0.04055,"70":1.19217,"71":1.7031,"72":0.00811,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01622,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00811,"9":0,"10":0,"11":0.62447,"12":0.06488,"13":4.73624,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01622,"10.1":0.06488,"11.1":0.30818,"12.1":2.57898},G:{"8":0.0010522452245225,"3.2":0.0042089808980898,"4.0-4.1":0.0021044904490449,"4.2-4.3":0,"5.0-5.1":0.0063134713471347,"6.0-6.1":0.0021044904490449,"7.0-7.1":0.0073657165716572,"8.1-8.4":0.013679187918792,"9.0-9.2":0.012626942694269,"9.3":0.13363514351435,"10.0-10.2":0.046298789878988,"10.3":0.14941882188219,"11.0-11.2":0.12626942694269,"11.3-11.4":0.2251804780478,"12.0-12.1":0.32198703870387,"12.2-12.4":2.2791631563156,"13.0-13.1":3.3093112311231,"13.2":1.5068151615162,"13.3":2.3738652265227},I:{"3":0.00025119718309859,"4":0.0010885211267606,_:"76","2.1":0,"2.2":0.00016746478873239,"2.3":0.00016746478873239,"4.1":0.0019258450704225,"4.2-4.3":0.042117394366197,"4.4":0,"4.4.3-4.4.4":0.025622112676056},P:{"4":0.03088041322314,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.02058694214876,"9.2":0.01029347107438,"10.1":1.1837491735537},B:{"12":0,"13":0,"14":0.00811,"15":0,"16":0,"17":0.01622,"18":4.43617,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.04866,"11":0.53526,"5.5":0},N:{"10":0,"11":0.00567},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.10962},O:{"0":0.00378},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.0089466494845361},L:{"0":22.54498}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SN.js new file mode 100644 index 0000000..096fea6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.005726,"27":0,"28":0,"29":0,"30":0.005726,"31":0,"32":0,"33":0.011452,"34":0,"35":0,"36":0.005726,"37":0,"38":0,"39":0,"40":0.005726,"41":0,"42":0,"43":0.017178,"44":0,"45":0,"46":0,"47":0.017178,"48":0,"49":0.366464,"50":0.005726,"51":0,"52":0,"53":0.005726,"54":0,"55":0.022904,"56":0.011452,"57":0,"58":0.005726,"59":0.011452,"60":0.051534,"61":0.011452,"62":0.005726,"63":0.091616,"64":0.02863,"65":0.17178,"66":0.005726,"67":0.091616,"68":0.022904,"69":0.309204,"70":0.034356,"71":0.051534,"72":0.05726,"73":0.074438,"74":0.188958,"75":0.08589,"76":0.234766,"77":0.263396,"78":5.634384,"79":4.890004,"80":0.005726,"81":0.005726},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.017178,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.005726,"43":0.005726,"44":0,"45":0,"46":0,"47":0.011452,"48":0.040082,"49":0,"50":0,"51":0,"52":0.017178,"53":0,"54":0,"55":0.005726,"56":0.022904,"57":0.017178,"58":0,"59":0.005726,"60":0.022904,"61":0.005726,"62":0,"63":0.02863,"64":0.005726,"65":0.017178,"66":0.017178,"67":0.097342,"68":0.120246,"69":0.034356,"70":0.480984,"71":1.54602,"72":0.02863,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005726,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.005726,"57":0,"58":0,"60":0.011452,"62":0.005726,"63":0.017178,"64":0.017178,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.011452},E:{"4":0,"5":0,"6":0,"7":0.040082,"8":0.022904,"9":0.022904,"10":0.05726,"11":0.05726,"12":0.08589,"13":0.904708,_:"0","3.1":0,"3.2":0,"5.1":11.503534,"6.1":0.005726,"7.1":0,"9.1":0.068712,"10.1":0.160328,"11.1":0.251944,"12.1":0.377916},G:{"8":0.00060082568256826,"3.2":0.002403302730273,"4.0-4.1":0.0012016513651365,"4.2-4.3":0,"5.0-5.1":0.0036049540954095,"6.0-6.1":0.0012016513651365,"7.0-7.1":0.0042057797779778,"8.1-8.4":0.0078107338733873,"9.0-9.2":0.0072099081908191,"9.3":0.076304861686169,"10.0-10.2":0.026436330033003,"10.3":0.085317246924692,"11.0-11.2":0.072099081908191,"11.3-11.4":0.12857669606961,"12.0-12.1":0.18385265886589,"12.2-12.4":1.3013884284428,"13.0-13.1":1.8895967716772,"13.2":0.86038237743774,"13.3":1.355462739874},I:{"3":0.0019309295774648,"4":0.0083673615023474,_:"76","2.1":0,"2.2":0.0012872863849765,"2.3":0.0012872863849765,"4.1":0.01480379342723,"4.2-4.3":0.3237525258216,"4.4":0,"4.4.3-4.4.4":0.19695481690141},P:{"4":0.75710857142857,"5.0-5.4":0.040924787644788,"6.2-6.4":0.040924787644788,"7.2-7.4":0.28647351351351,"8.2":0.061387181467181,"9.2":0.35809189189189,"10.1":1.1049692664093},B:{"12":0.034356,"13":0.02863,"14":0.011452,"15":0.022904,"16":0.017178,"17":0.08589,"18":0.641312,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.022904,"9":0,"10":0.02863,"11":0.108794,"5.5":0},N:{"10":0.0111124,"11":0.1555736},J:{"7":0,"10":0.02137},R:{_:"0"},M:{"0":0.132494},O:{"0":0.487236},Q:{"1.2":0.059836},S:{"2.5":0.004274},H:{"0":1.1653479587629},L:{"0":54.898282}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SO.js new file mode 100644 index 0000000..1bfee22 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.003268,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003268,"22":0,"23":0,"24":0,"25":0,"26":0.006536,"27":0,"28":0,"29":0.006536,"30":0.009804,"31":0.013072,"32":0.006536,"33":0.045752,"34":0,"35":0,"36":0.003268,"37":0.003268,"38":0,"39":0,"40":0.006536,"41":0,"42":0,"43":0.11438,"44":0,"45":0.006536,"46":0,"47":0,"48":0,"49":0.009804,"50":0.003268,"51":0.003268,"52":0,"53":0,"54":0.003268,"55":0.003268,"56":0.003268,"57":0,"58":0.006536,"59":0,"60":0,"61":0.003268,"62":0.013072,"63":0.029412,"64":0.006536,"65":0.006536,"66":0,"67":0.003268,"68":0.01634,"69":0.104576,"70":0.019608,"71":0.006536,"72":0.006536,"73":0.009804,"74":0.045752,"75":0.019608,"76":0.039216,"77":0.071896,"78":3.215712,"79":3.078456,"80":0.009804,"81":0.003268},C:{"2":0.003268,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.003268,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.003268,"44":0,"45":0,"46":0,"47":0.003268,"48":0.003268,"49":0,"50":0,"51":0,"52":0.003268,"53":0.003268,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.003268,"61":0,"62":0,"63":0,"64":0.003268,"65":0,"66":0.003268,"67":0,"68":0.042484,"69":0.006536,"70":0.127452,"71":0.34314,"72":0.088236,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.013072,"17":0,"18":0,"19":0.009804,"20":0.029412,"21":0,"22":0,"23":0.009804,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.003268,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01634,"37":0.003268,"38":0,"39":0,"40":0,"41":0.003268,"42":0,"43":0,"44":0,"45":0.026144,"46":0.013072,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006536,"54":0.006536,"55":0.029412,"56":0.003268,"57":0,"58":0,"60":0,"62":0.006536,"63":0.003268,"64":0.009804,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.019608},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003268,"12":0.003268,"13":0.160132,_:"0","3.1":0,"3.2":0,"5.1":1.1438,"6.1":0,"7.1":0,"9.1":0.003268,"10.1":0.045752,"11.1":0.003268,"12.1":0.013072},G:{"8":0.0003583298329833,"3.2":0.0014333193319332,"4.0-4.1":0.0007166596659666,"4.2-4.3":0,"5.0-5.1":0.0021499789978998,"6.0-6.1":0.0007166596659666,"7.0-7.1":0.0025083088308831,"8.1-8.4":0.0046582878287829,"9.0-9.2":0.0042999579957996,"9.3":0.045507888788879,"10.0-10.2":0.015766512651265,"10.3":0.050882836283628,"11.0-11.2":0.042999579957996,"11.3-11.4":0.076682584258426,"12.0-12.1":0.10964892889289,"12.2-12.4":0.77614241824182,"13.0-13.1":1.1269473247325,"13.2":0.51312832083208,"13.3":0.80839210321032},I:{"3":0.00098522535211268,"4":0.0042693098591549,_:"76","2.1":0,"2.2":0.00065681690140845,"2.3":0.00065681690140845,"4.1":0.0075533943661972,"4.2-4.3":0.16518945070423,"4.4":0,"4.4.3-4.4.4":0.10049298591549},P:{"4":1.0358399489362,"5.0-5.4":0.060931761702128,"6.2-6.4":0.1421741106383,"7.2-7.4":0.55854114893617,"8.2":0.091397642553191,"9.2":0.6702493787234,"10.1":2.2138540085106},B:{"12":0.029412,"13":0.006536,"14":0.019608,"15":0.009804,"16":0.013072,"17":0.104576,"18":0.339872,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.006536,"9":0,"10":0.003268,"11":0.058824,"5.5":0},N:{"10":0.040392,"11":0.060588},J:{"7":0,"10":0.006732},R:{_:"0"},M:{"0":0.141372},O:{"0":6.752196},Q:{"1.2":0},S:{"2.5":0},H:{"0":13.428801587629},L:{"0":51.526032}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SR.js new file mode 100644 index 0000000..53b6663 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004193,"35":0,"36":0.004193,"37":0,"38":0.004193,"39":0,"40":0.004193,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.142562,"50":0,"51":0.016772,"52":0,"53":0.012579,"54":0,"55":0.004193,"56":0,"57":0,"58":0.012579,"59":0,"60":0,"61":0,"62":0.004193,"63":0.075474,"64":0,"65":0.016772,"66":0.100632,"67":0,"68":0,"69":0.100632,"70":0.113211,"71":0.121597,"72":0.113211,"73":0.046123,"74":0.075474,"75":0.046123,"76":0.079667,"77":0.121597,"78":6.125973,"79":4.788406,"80":0.020965,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004193,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004193,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.016772,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.016772,"64":0.020965,"65":0,"66":0,"67":0.004193,"68":0.092246,"69":0.025158,"70":0.280931,"71":1.002127,"72":0.171913,"73":0.004193,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.004193,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004193,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.008386,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.004193,"11":0,"12":0.025158,"13":0.452844,_:"0","3.1":0,"3.2":0,"5.1":0.482195,"6.1":0,"7.1":0,"9.1":0.004193,"10.1":0.008386,"11.1":0.050316,"12.1":0.071281},G:{"8":0.0010397050705071,"3.2":0.0041588202820282,"4.0-4.1":0.0020794101410141,"4.2-4.3":0,"5.0-5.1":0.0062382304230423,"6.0-6.1":0.0020794101410141,"7.0-7.1":0.0072779354935494,"8.1-8.4":0.013516165916592,"9.0-9.2":0.012476460846085,"9.3":0.1320425439544,"10.0-10.2":0.04574702310231,"10.3":0.147638120012,"11.0-11.2":0.12476460846085,"11.3-11.4":0.22249688508851,"12.0-12.1":0.31814975157516,"12.2-12.4":2.2520011827183,"13.0-13.1":3.2698724467447,"13.2":1.4888576609661,"13.3":2.3455746390639},I:{"3":0.0017070704225352,"4":0.0073973051643192,_:"76","2.1":0,"2.2":0.0011380469483568,"2.3":0.0011380469483568,"4.1":0.013087539906103,"4.2-4.3":0.28621880751174,"4.4":0,"4.4.3-4.4.4":0.17412118309859},P:{"4":0.89453390169492,"5.0-5.4":0.041127995480226,"6.2-6.4":0.061691993220339,"7.2-7.4":0.46268994915254,"8.2":0.10281998870057,"9.2":0.69917592316384,"10.1":6.7552732576271},B:{"12":0.016772,"13":0.008386,"14":0.008386,"15":0.012579,"16":0.04193,"17":0.12579,"18":0.733775,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.004193,"9":0,"10":0.004193,"11":0.297703,"5.5":0},N:{"10":0,"11":0.05807},J:{"7":0,"10":0.034842},R:{_:"0"},M:{"0":0.168403},O:{"0":0.923313},Q:{"1.2":0.05807},S:{"2.5":0},H:{"0":0.34635462371134},L:{"0":57.36381}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ST.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ST.js new file mode 100644 index 0000000..a7b0aa5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ST.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.018428,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.023035,"34":0,"35":0.023035,"36":0,"37":0,"38":0,"39":0,"40":0.105961,"41":0.004607,"42":0,"43":0.870723,"44":0,"45":0,"46":0.018428,"47":0,"48":0,"49":0.078319,"50":0,"51":0.004607,"52":0.023035,"53":0.009214,"54":0.004607,"55":0.004607,"56":0.004607,"57":0,"58":0.009214,"59":0,"60":0.023035,"61":0,"62":0.004607,"63":0.105961,"64":0.004607,"65":0.009214,"66":0,"67":0,"68":0.041463,"69":0.359346,"70":0,"71":0.004607,"72":0.004607,"73":0.308669,"74":0.082926,"75":0.036856,"76":0.672622,"77":0.133603,"78":7.64762,"79":3.773133,"80":0.013821,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.004607,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004607,"48":0,"49":0.009214,"50":0,"51":0,"52":0.004607,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.004607,"62":0,"63":0.018428,"64":0,"65":0,"66":0,"67":0,"68":0.059891,"69":0.032249,"70":0.433058,"71":0.861509,"72":0.004607,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004607,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004607,"56":0,"57":0,"58":0,"60":0.009214,"62":0.009214,"63":0,"64":0.013821,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.032249},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.036856,"12":0,"13":0.244171,_:"0","3.1":0,"3.2":0,"5.1":0.340918,"6.1":0,"7.1":0,"9.1":0,"10.1":0.009214,"11.1":0.013821,"12.1":0.110568},G:{"8":0.00098996759675968,"3.2":0.0039598703870387,"4.0-4.1":0.0019799351935194,"4.2-4.3":0,"5.0-5.1":0.0059398055805581,"6.0-6.1":0.0019799351935194,"7.0-7.1":0.0069297731773177,"8.1-8.4":0.012869578757876,"9.0-9.2":0.011879611161116,"9.3":0.12572588478848,"10.0-10.2":0.043558574257426,"10.3":0.14057539873987,"11.0-11.2":0.11879611161116,"11.3-11.4":0.21185306570657,"12.0-12.1":0.30293008460846,"12.2-12.4":2.1442698145815,"13.0-13.1":3.1134480918092,"13.2":1.4176335985599,"13.3":2.2333668982898},I:{"3":0.0023417816901408,"4":0.010147720657277,_:"76","2.1":0,"2.2":0.0015611877934272,"2.3":0.0015611877934272,"4.1":0.017953659624413,"4.2-4.3":0.39263873004695,"4.4":0,"4.4.3-4.4.4":0.23886173239437},P:{"4":0.20073453278689,"5.0-5.4":0.021129950819672,"6.2-6.4":0.063389852459016,"7.2-7.4":0.031694926229508,"8.2":0.021129950819672,"9.2":0.12677970491803,"10.1":2.1129950819672},B:{"12":0,"13":0.013821,"14":0.023035,"15":0.027642,"16":0,"17":0.069105,"18":0.764762,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.09214,"9":0,"10":0,"11":0.391595,"5.5":0},N:{"10":0,"11":0.032358},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.140218},O:{"0":8.040963},Q:{"1.2":0.005393},S:{"2.5":0},H:{"0":2.2261043780069},L:{"0":51.006929}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SV.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SV.js new file mode 100644 index 0000000..65a9bed --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SV.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.041562,"33":0,"34":0,"35":0,"36":0.006927,"37":0,"38":0.027708,"39":0,"40":0,"41":0,"42":0,"43":0.006927,"44":0,"45":0,"46":0,"47":0,"48":0.013854,"49":0.360204,"50":0,"51":0.006927,"52":0,"53":0.034635,"54":0,"55":0.006927,"56":0.006927,"57":0.020781,"58":0.020781,"59":0.006927,"60":0.013854,"61":0.006927,"62":0.006927,"63":0.06927,"64":0.006927,"65":0.048489,"66":0.020781,"67":0.06927,"68":0.013854,"69":0.034635,"70":0.117759,"71":0.083124,"72":0.159321,"73":0.173175,"74":0.103905,"75":0.173175,"76":0.159321,"77":0.27708,"78":17.490675,"79":12.67641,"80":0.020781,"81":0.006927},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.006927,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006927,"44":0,"45":0,"46":0,"47":0.006927,"48":0.06927,"49":0,"50":0,"51":0,"52":0.083124,"53":0,"54":0,"55":0,"56":0.013854,"57":0,"58":0,"59":0,"60":0.020781,"61":0,"62":0.006927,"63":0.006927,"64":0.013854,"65":0.006927,"66":0.076197,"67":0.020781,"68":1.198371,"69":0.041562,"70":0.824313,"71":2.265129,"72":0.013854,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.006927,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.006927,"63":0.006927,"64":0.076197,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.020781,"11":0.055416,"12":0.166248,"13":1.399254,_:"0","3.1":0,"3.2":0,"5.1":4.43328,"6.1":0,"7.1":0,"9.1":0.006927,"10.1":0.062343,"11.1":0.180102,"12.1":0.637284},G:{"8":0.00047268706870687,"3.2":0.0018907482748275,"4.0-4.1":0.00094537413741374,"4.2-4.3":0,"5.0-5.1":0.0028361224122412,"6.0-6.1":0.00094537413741374,"7.0-7.1":0.0033088094809481,"8.1-8.4":0.0061449318931893,"9.0-9.2":0.0056722448244824,"9.3":0.060031257725773,"10.0-10.2":0.020798231023102,"10.3":0.067121563756376,"11.0-11.2":0.056722448244824,"11.3-11.4":0.10115503270327,"12.0-12.1":0.1446422430243,"12.2-12.4":1.0238401908191,"13.0-13.1":1.4866008310831,"13.2":0.67688788238824,"13.3":1.0663820270027},I:{"3":0.001213323943662,"4":0.0052577370892019,_:"76","2.1":0,"2.2":0.00080888262910798,"2.3":0.00080888262910798,"4.1":0.0093021502347418,"4.2-4.3":0.20343398122066,"4.4":0,"4.4.3-4.4.4":0.12375904225352},P:{"4":0.25553556149733,"5.0-5.4":0.020442844919786,"6.2-6.4":0.020442844919786,"7.2-7.4":0.10221422459893,"8.2":0.040885689839572,"9.2":0.19420702673797,"10.1":1.2776778074866},B:{"12":0,"13":0.006927,"14":0.006927,"15":0.020781,"16":0.020781,"17":0.090051,"18":0.512598,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0143158,"9":0,"10":0.0143158,"11":0.1861054,"5.5":0},N:{"10":0,"11":0.027657},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.119847},O:{"0":0.147504},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.25601997250859},L:{"0":44.76369}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SY.js new file mode 100644 index 0000000..3414a40 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.008253,"37":0,"38":0.008253,"39":0,"40":0.008253,"41":0,"42":0,"43":0.024759,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.041265,"50":0,"51":0,"52":0,"53":0.008253,"54":0,"55":0,"56":0,"57":0,"58":0.008253,"59":0,"60":0,"61":0,"62":0,"63":0.033012,"64":0,"65":0.008253,"66":0.008253,"67":0.008253,"68":0.008253,"69":0.024759,"70":0.041265,"71":0.024759,"72":0.016506,"73":0.033012,"74":0.041265,"75":0.041265,"76":0.074277,"77":0.08253,"78":2.855538,"79":2.657466,"80":0.008253,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.008253,"44":0,"45":0,"46":0,"47":0.008253,"48":0.008253,"49":0.008253,"50":0,"51":0,"52":0.024759,"53":0,"54":0,"55":0,"56":0.008253,"57":0,"58":0,"59":0,"60":0.008253,"61":0,"62":0.008253,"63":0,"64":0,"65":0.008253,"66":0.008253,"67":0.008253,"68":0.041265,"69":0.024759,"70":0.363132,"71":1.122408,"72":0.008253,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.008253,"46":0.008253,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.016506,"64":0.016506,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.008253},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.008253,"11":0.008253,"12":0.024759,"13":0.115542,_:"0","3.1":0,"3.2":0,"5.1":59.033709,"6.1":0,"7.1":0,"9.1":0,"10.1":0.008253,"11.1":0.041265,"12.1":0.041265},G:{"8":0.000085870287028703,"3.2":0.00034348114811481,"4.0-4.1":0.00017174057405741,"4.2-4.3":0,"5.0-5.1":0.00051522172217222,"6.0-6.1":0.00017174057405741,"7.0-7.1":0.00060109200920092,"8.1-8.4":0.0011163137313731,"9.0-9.2":0.0010304434443444,"9.3":0.010905526452645,"10.0-10.2":0.0037782926292629,"10.3":0.012193580758076,"11.0-11.2":0.010304434443444,"11.3-11.4":0.018376241424142,"12.0-12.1":0.026276307830783,"12.2-12.4":0.18599504170417,"13.0-13.1":0.27006205270527,"13.2":0.1229662510251,"13.3":0.19372336753675},I:{"3":0.0014243626760563,"4":0.0061722382629108,_:"76","2.1":0,"2.2":0.00094957511737089,"2.3":0.00094957511737089,"4.1":0.010920113849765,"4.2-4.3":0.23881814201878,"4.4":0,"4.4.3-4.4.4":0.14528499295775},P:{"4":0.64039525403226,"5.0-5.4":0.020330008064516,"6.2-6.4":0.081320032258065,"7.2-7.4":0.1219800483871,"8.2":0.030495012096774,"9.2":0.29478511693548,"10.1":1.3316155282258},B:{"12":0,"13":0.008253,"14":0.008253,"15":0.008253,"16":0.008253,"17":0.049518,"18":0.181566,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.08253,"9":0,"10":0,"11":0.049518,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.006988},R:{_:"0"},M:{"0":0.041928},O:{"0":0.478678},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.68142605498282},L:{"0":23.933568}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/SZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/SZ.js new file mode 100644 index 0000000..5f63c4c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/SZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.002696,"38":0,"39":0,"40":0.018872,"41":0,"42":0.005392,"43":0.002696,"44":0,"45":0,"46":0.005392,"47":0,"48":0,"49":0.002696,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005392,"56":0,"57":0,"58":0.002696,"59":0.002696,"60":0.005392,"61":0,"62":0,"63":0.024264,"64":0.021568,"65":0.002696,"66":0,"67":0.005392,"68":0.01348,"69":0.021568,"70":0.010784,"71":0.002696,"72":0.008088,"73":0.010784,"74":0.024264,"75":0.016176,"76":0.021568,"77":0.113232,"78":1.916856,"79":1.175456,"80":0.002696,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005392,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.002696,"46":0,"47":0.002696,"48":0,"49":0.002696,"50":0,"51":0,"52":0.002696,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.002696,"59":0,"60":0.029656,"61":0.002696,"62":0.002696,"63":0,"64":0,"65":0,"66":0,"67":0.002696,"68":0.024264,"69":0.005392,"70":0.10784,"71":0.24264,"72":0.024264,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0.002696,"16":0.002696,"17":0.005392,"18":0.01348,"19":0.002696,"20":0.005392,"21":0,"22":0.002696,"23":0,"24":0,"25":0.005392,"26":0.008088,"27":0,"28":0.029656,"29":0.008088,"30":0.008088,"31":0.002696,"32":0.018872,"33":0.002696,"34":0,"35":0.018872,"36":0,"37":0.002696,"38":0.005392,"39":0,"40":0,"41":0,"42":0.005392,"43":0,"44":0,"45":0.04044,"46":0.010784,"47":0,"48":0,"49":0.002696,"50":0,"51":0.002696,"52":0,"53":0.01348,"54":0.008088,"55":0.005392,"56":0,"57":0,"58":0,"60":0,"62":0.008088,"63":0.01348,"64":0.02696,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.258816},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.002696,"13":0.04044,_:"0","3.1":0,"3.2":0,"5.1":1.215896,"6.1":0,"7.1":0,"9.1":0.005392,"10.1":0.002696,"11.1":0.016176,"12.1":0.137496},G:{"8":0.00026575137513751,"3.2":0.0010630055005501,"4.0-4.1":0.00053150275027503,"4.2-4.3":0,"5.0-5.1":0.0015945082508251,"6.0-6.1":0.00053150275027503,"7.0-7.1":0.0018602596259626,"8.1-8.4":0.0034547678767877,"9.0-9.2":0.0031890165016502,"9.3":0.033750424642464,"10.0-10.2":0.011693060506051,"10.3":0.037736695269527,"11.0-11.2":0.031890165016502,"11.3-11.4":0.056870794279428,"12.0-12.1":0.081319920792079,"12.2-12.4":0.57561747854785,"13.0-13.1":0.83578807480748,"13.2":0.38055596919692,"13.3":0.59953510231023},I:{"3":0.0009807323943662,"4":0.0042498403755869,_:"76","2.1":0,"2.2":0.00065382159624413,"2.3":0.00065382159624413,"4.1":0.0075189483568075,"4.2-4.3":0.1644361314554,"4.4":0,"4.4.3-4.4.4":0.10003470422535},P:{"4":0.73037806606607,"5.0-5.4":0.04114806006006,"6.2-6.4":0.010287015015015,"7.2-7.4":0.29832343543544,"8.2":0.072009105105105,"9.2":0.29832343543544,"10.1":1.9751068828829},B:{"12":0.01348,"13":0.01348,"14":0.021568,"15":0.02696,"16":0.018872,"17":0.043136,"18":0.299256,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.024264,"9":0,"10":0.01348,"11":0.18872,"5.5":0},N:{"10":0.010956,"11":0.16434},J:{"7":0,"10":0.058432},R:{_:"0"},M:{"0":0.051128},O:{"0":1.468104},Q:{"1.2":0},S:{"2.5":0.204512},H:{"0":33.33008467354},L:{"0":38.817728}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TC.js new file mode 100644 index 0000000..6d8cb0e --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00953,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.004765,"49":0.023825,"50":0.00953,"51":0,"52":0,"53":0.00953,"54":0,"55":0,"56":0,"57":0.004765,"58":0.014295,"59":0.004765,"60":0,"61":0,"62":0,"63":0.004765,"64":0,"65":0.004765,"66":0,"67":0.004765,"68":0.004765,"69":0.04765,"70":0.18107,"71":0.00953,"72":0.262075,"73":0.004765,"74":0.00953,"75":0.061945,"76":0.05718,"77":0.128655,"78":4.626815,"79":3.130605,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004765,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.004765,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.004765,"66":0,"67":0,"68":0.06671,"69":0,"70":0.271605,"71":0.65757,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00953,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.004765,"8":0,"9":0,"10":0,"11":0.004765,"12":0.033355,"13":2.75417,_:"0","3.1":0,"3.2":0,"5.1":4.89842,"6.1":0,"7.1":0,"9.1":0.004765,"10.1":0.128655,"11.1":0.090535,"12.1":0.25731},G:{"8":0.0039241704170417,"3.2":0.015696681668167,"4.0-4.1":0.0078483408340834,"4.2-4.3":0,"5.0-5.1":0.02354502250225,"6.0-6.1":0.0078483408340834,"7.0-7.1":0.027469192919292,"8.1-8.4":0.051014215421542,"9.0-9.2":0.0470900450045,"9.3":0.4983696429643,"10.0-10.2":0.17266349834983,"10.3":0.55723219921992,"11.0-11.2":0.470900450045,"11.3-11.4":0.83977246924692,"12.0-12.1":1.2007961476148,"12.2-12.4":8.4997531233123,"13.0-13.1":12.341515961596,"13.2":5.6194120372037,"13.3":8.8529284608461},I:{"3":0.001739735915493,"4":0.0075388556338028,_:"76","2.1":0,"2.2":0.001159823943662,"2.3":0.001159823943662,"4.1":0.013337975352113,"4.2-4.3":0.29169572183099,"4.4":0,"4.4.3-4.4.4":0.17745306338028},P:{"4":0.074056097560976,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.042317770034843,"8.2":0.19042996515679,"9.2":0.084635540069686,"10.1":2.6025428571429},B:{"12":0.023825,"13":0.04765,"14":0.01906,"15":0.02859,"16":0.00953,"17":0.166775,"18":1.60104,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01906,"9":0,"10":0,"11":0.94347,"5.5":0},N:{"10":0,"11":0.01047},J:{"7":0,"10":0.026175},R:{_:"0"},M:{"0":0.18846},O:{"0":0.141345},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.034693118556701},L:{"0":34.18076}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TD.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TD.js new file mode 100644 index 0000000..b9fff5c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TD.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00236,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01416,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00236,"27":0,"28":0,"29":0,"30":0.00472,"31":0,"32":0,"33":0.00236,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00236,"41":0,"42":0,"43":0.00472,"44":0,"45":0.00236,"46":0,"47":0,"48":0.00236,"49":0.03304,"50":0.00236,"51":0,"52":0,"53":0,"54":0.01416,"55":0.02596,"56":0.02124,"57":0,"58":0.00236,"59":0,"60":0,"61":0,"62":0,"63":0.48616,"64":0.00236,"65":0,"66":0.00708,"67":0.00472,"68":0.00236,"69":0.09676,"70":0.00236,"71":0.00708,"72":0.00944,"73":0.00236,"74":0.07788,"75":0.03776,"76":0.10384,"77":0.01652,"78":0.67024,"79":0.6254,"80":0,"81":0},C:{"2":0.00472,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00236,"20":0,"21":0,"22":0,"23":0,"24":0.00236,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00236,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00472,"39":0,"40":0,"41":0,"42":0,"43":0.00472,"44":0.00236,"45":0,"46":0,"47":0.00472,"48":0,"49":0,"50":0,"51":0,"52":0.01652,"53":0,"54":0,"55":0,"56":0.00472,"57":0.00236,"58":0,"59":0,"60":0.01416,"61":0,"62":0.00236,"63":0.00236,"64":0,"65":0.00236,"66":0,"67":0,"68":0.07552,"69":0.0118,"70":0.17936,"71":0.38704,"72":0.1062,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0.00236,"16":0.02124,"17":0,"18":0,"19":0,"20":0.05664,"21":0.00236,"22":0,"23":0.02596,"24":0,"25":0,"26":0.00236,"27":0,"28":0.00944,"29":0.00236,"30":0.03304,"31":0,"32":0,"33":0.00236,"34":0,"35":0,"36":0.00236,"37":0.00236,"38":0.03304,"39":0,"40":0,"41":0,"42":0.00472,"43":0,"44":0.00236,"45":0.07552,"46":0.01652,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01888,"54":0.10856,"55":0.0118,"56":0,"57":0,"58":0.00236,"60":0,"62":0,"63":0.00236,"64":0.00708,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0944},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08968,"12":0.01652,"13":0.08968,_:"0","3.1":0,"3.2":0,"5.1":0.22184,"6.1":0,"7.1":0,"9.1":0.00472,"10.1":0.05428,"11.1":0.00236,"12.1":0.02596},G:{"8":0.00034845884588459,"3.2":0.0013938353835384,"4.0-4.1":0.00069691769176918,"4.2-4.3":0,"5.0-5.1":0.0020907530753075,"6.0-6.1":0.00069691769176918,"7.0-7.1":0.0024392119211921,"8.1-8.4":0.0045299649964997,"9.0-9.2":0.0041815061506151,"9.3":0.044254273427343,"10.0-10.2":0.015332189218922,"10.3":0.049481156115612,"11.0-11.2":0.041815061506151,"11.3-11.4":0.074570193019302,"12.0-12.1":0.10662840684068,"12.2-12.4":0.75476186018602,"13.0-13.1":1.095903070307,"13.2":0.49899306730673,"13.3":0.78612315631563},I:{"3":0.0025102816901408,"4":0.010877887323944,_:"76","2.1":0,"2.2":0.0016735211267606,"2.3":0.0016735211267606,"4.1":0.019245492957746,"4.2-4.3":0.42089056338028,"4.4":0,"4.4.3-4.4.4":0.25604873239437},P:{"4":0.77447871559633,"5.0-5.4":0.11063981651376,"6.2-6.4":0.060348990825688,"7.2-7.4":0.29168678899083,"8.2":0.040232660550459,"9.2":0.4123847706422,"10.1":0.50290825688073},B:{"12":0.00944,"13":0.00236,"14":0.00236,"15":0.00708,"16":0.05192,"17":0.01652,"18":0.1652,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.07316,"9":0,"10":0.048773333333333,"11":0.24386666666667,"5.5":0},N:{"10":0,"11":0.01528},J:{"7":0,"10":0.04584},R:{_:"0"},M:{"0":0.2292},O:{"0":2.83444},Q:{"1.2":1.25296},S:{"2.5":0},H:{"0":25.026382130584},L:{"0":50.0352}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TG.js new file mode 100644 index 0000000..9e53041 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.005636,"26":0.005636,"27":0.011272,"28":0,"29":0.005636,"30":0,"31":0.16908,"32":0,"33":0.022544,"34":0,"35":0,"36":0.005636,"37":0.022544,"38":0,"39":0,"40":0.005636,"41":0,"42":0.005636,"43":0.061996,"44":0,"45":0.02818,"46":0.005636,"47":0,"48":0.016908,"49":0.16908,"50":0.02818,"51":0,"52":0,"53":0.005636,"54":0,"55":0.02818,"56":0.005636,"57":0.005636,"58":0.02818,"59":0.005636,"60":0.011272,"61":0,"62":0.005636,"63":0.129628,"64":0.011272,"65":0.011272,"66":0.005636,"67":0.005636,"68":0.25362,"69":0.388884,"70":0.078904,"71":0.022544,"72":0.135264,"73":0.123992,"74":0.067632,"75":0.180352,"76":0.219804,"77":0.462152,"78":5.292204,"79":4.768056,"80":0.005636,"81":0.005636},C:{"2":0,"3":0.005636,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005636,"22":0.005636,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.022544,"31":0,"32":0,"33":0,"34":0.005636,"35":0,"36":0,"37":0,"38":0,"39":0.005636,"40":0.005636,"41":0.005636,"42":0.011272,"43":0.02818,"44":0.005636,"45":0.005636,"46":0,"47":0.050724,"48":0.005636,"49":0.016908,"50":0.011272,"51":0.005636,"52":0.129628,"53":0.005636,"54":0,"55":0.005636,"56":0.011272,"57":0.067632,"58":0.02818,"59":0.005636,"60":0.022544,"61":0.016908,"62":0.005636,"63":0.011272,"64":0.005636,"65":0.022544,"66":0.016908,"67":0.033816,"68":0.355068,"69":0.101448,"70":1.35264,"71":4.373536,"72":0.22544,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.011272,"17":0,"18":0,"19":0,"20":0.005636,"21":0,"22":0,"23":0.005636,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.005636,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005636,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.033816,"46":0.016908,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.011272,"55":0.005636,"56":0,"57":0,"58":0,"60":0.005636,"62":0.005636,"63":0.011272,"64":0.033816,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.08454},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.005636,"11":0.022544,"12":0.073268,"13":0.163444,_:"0","3.1":0,"3.2":0,"5.1":6.019248,"6.1":0.777768,"7.1":0,"9.1":0,"10.1":0.011272,"11.1":0.05636,"12.1":0.118356},G:{"8":0.00024101250125012,"3.2":0.0009640500050005,"4.0-4.1":0.00048202500250025,"4.2-4.3":0,"5.0-5.1":0.0014460750075008,"6.0-6.1":0.00048202500250025,"7.0-7.1":0.0016870875087509,"8.1-8.4":0.0031331625162516,"9.0-9.2":0.0028921500150015,"9.3":0.030608587658766,"10.0-10.2":0.010604550055005,"10.3":0.034223775177518,"11.0-11.2":0.028921500150015,"11.3-11.4":0.051576675267527,"12.0-12.1":0.073749825382538,"12.2-12.4":0.52203307770777,"13.0-13.1":0.75798431643164,"13.2":0.34512990179018,"13.3":0.54372420282028},I:{"3":0.0020678873239437,"4":0.0089608450704225,_:"76","2.1":0,"2.2":0.0013785915492958,"2.3":0.0013785915492958,"4.1":0.015853802816901,"4.2-4.3":0.34671577464789,"4.4":0,"4.4.3-4.4.4":0.21092450704225},P:{"4":0.17648934736842,"5.0-5.4":0.010381726315789,"6.2-6.4":0.010381726315789,"7.2-7.4":0.051908631578947,"8.2":0.020763452631579,"9.2":0.20763452631579,"10.1":0.50870458947368},B:{"12":0.02818,"13":0.02818,"14":0.022544,"15":0.146536,"16":0.016908,"17":0.107084,"18":0.800312,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.076141254901961,"9":0.0058570196078431,"10":0.040999137254902,"11":0.17571058823529,"5.5":0},N:{"10":0.021196571428571,"11":0.27555542857143},J:{"7":0,"10":0.039276},R:{_:"0"},M:{"0":0.292388},O:{"0":1.623408},Q:{"1.2":0.013092},S:{"2.5":0},H:{"0":9.4901778487973},L:{"0":45.398872}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TH.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TH.js new file mode 100644 index 0000000..5aa49d3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TH.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00549,"31":0.00549,"32":0,"33":0,"34":0,"35":0,"36":0.01098,"37":0,"38":0.00549,"39":0.00549,"40":0.00549,"41":0.0549,"42":0,"43":0.02196,"44":0.00549,"45":0.00549,"46":0.00549,"47":0.00549,"48":0.00549,"49":0.24705,"50":0.00549,"51":0.01098,"52":0.00549,"53":0.01098,"54":0.00549,"55":0.01098,"56":0.01098,"57":0.01647,"58":0.02745,"59":0.01098,"60":0.01098,"61":0.01647,"62":0.01647,"63":0.03294,"64":0.01098,"65":0.02196,"66":0.02196,"67":0.04941,"68":0.02745,"69":0.0549,"70":0.07686,"71":0.08235,"72":0.06588,"73":0.09882,"74":0.12627,"75":0.15921,"76":0.11529,"77":0.18117,"78":11.61684,"79":10.43649,"80":0.04941,"81":0.01098},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.01098,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00549,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00549,"44":0,"45":0.00549,"46":0,"47":0.00549,"48":0.01098,"49":0.00549,"50":0.00549,"51":0.00549,"52":0.04392,"53":0.01098,"54":0.00549,"55":0.02745,"56":0.07137,"57":0.01098,"58":0.01098,"59":0,"60":0.00549,"61":0.00549,"62":0,"63":0.00549,"64":0.00549,"65":0.01098,"66":0.00549,"67":0.01098,"68":0.06588,"69":0.01647,"70":0.25254,"71":0.86193,"72":0.01098,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00549,"37":0.04392,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00549,"56":0,"57":0.00549,"58":0.00549,"60":0,"62":0,"63":0,"64":0.02745,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00549},E:{"4":0,"5":0,"6":0,"7":0,"8":0.01647,"9":0.00549,"10":0.01647,"11":0.02745,"12":0.09333,"13":1.2627,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01098,"10.1":0.06588,"11.1":0.09882,"12.1":0.32391},G:{"8":0.0016080228022802,"3.2":0.0064320912091209,"4.0-4.1":0.0032160456045605,"4.2-4.3":0,"5.0-5.1":0.0096481368136814,"6.0-6.1":0.0032160456045605,"7.0-7.1":0.011256159615962,"8.1-8.4":0.020904296429643,"9.0-9.2":0.019296273627363,"9.3":0.20421889588959,"10.0-10.2":0.07075300330033,"10.3":0.22833923792379,"11.0-11.2":0.19296273627363,"11.3-11.4":0.34411687968797,"12.0-12.1":0.49205497749775,"12.2-12.4":3.482977389739,"13.0-13.1":5.0572317131713,"13.2":2.3026886528653,"13.3":3.6276994419442},I:{"3":0.00046119718309859,"4":0.0019985211267606,_:"76","2.1":0,"2.2":0.00030746478873239,"2.3":0.00030746478873239,"4.1":0.0035358450704225,"4.2-4.3":0.077327394366197,"4.4":0,"4.4.3-4.4.4":0.047042112676056},P:{"4":0.23504776595745,"5.0-5.4":0.020438936170213,"6.2-6.4":0.020438936170213,"7.2-7.4":0.091975212765957,"8.2":0.061316808510638,"9.2":0.29636457446809,"10.1":2.1358688297872},B:{"12":0.00549,"13":0.00549,"14":0.01098,"15":0.00549,"16":0.01098,"17":0.0549,"18":0.41724,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.077723595505618,"9":0.016655056179775,"10":0.011103370786517,"11":0.88271797752809,"5.5":0},N:{"10":0.015334,"11":0.061336},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.10373},O:{"0":0.18491},Q:{"1.2":0.00902},S:{"2.5":0},H:{"0":0.46967542955326},L:{"0":48.7737}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TJ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TJ.js new file mode 100644 index 0000000..7326d96 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TJ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.005028,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.010056,"36":0.005028,"37":0,"38":0,"39":0,"40":0.020112,"41":0.010056,"42":0,"43":0.005028,"44":0.065364,"45":0.005028,"46":0.005028,"47":0.17598,"48":0,"49":1.050852,"50":0,"51":0.005028,"52":0,"53":0,"54":0,"55":0.005028,"56":0.010056,"57":0.005028,"58":0.010056,"59":0.005028,"60":0.010056,"61":0.005028,"62":0.005028,"63":0.296652,"64":0.020112,"65":0,"66":0,"67":0.005028,"68":0.05028,"69":0.05028,"70":0.010056,"71":0.035196,"72":0.035196,"73":0.02514,"74":0.145812,"75":0.05028,"76":0.07542,"77":0.206148,"78":6.581652,"79":6.76266,"80":0.010056,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.005028,"36":0,"37":0.005028,"38":0.005028,"39":0,"40":0,"41":0,"42":0,"43":0.010056,"44":0,"45":0.005028,"46":0,"47":0.005028,"48":0,"49":0,"50":0,"51":0,"52":0.040224,"53":0,"54":0,"55":0,"56":0,"57":0.005028,"58":0,"59":0,"60":0.010056,"61":0,"62":0,"63":0,"64":0,"65":0.005028,"66":0.005028,"67":0.005028,"68":0.170952,"69":0.020112,"70":0.246372,"71":0.7542,"72":0.005028,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.005028,"17":0,"18":0,"19":0.015084,"20":0.005028,"21":0,"22":0.005028,"23":0,"24":0.005028,"25":0.005028,"26":0,"27":0,"28":0.005028,"29":0,"30":0.005028,"31":0,"32":0,"33":0,"34":0,"35":0.005028,"36":0.020112,"37":0.005028,"38":0.005028,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.020112,"46":0.005028,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.020112,"54":0.010056,"55":0.010056,"56":0,"57":0.005028,"58":0,"60":0.216204,"62":0.005028,"63":0.030168,"64":0.20112,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.055308},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.005028,"13":0.407268,_:"0","3.1":0,"3.2":0,"5.1":0.005028,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.020112,"12.1":0.02514},G:{"8":0.00054469486948695,"3.2":0.0021787794779478,"4.0-4.1":0.0010893897389739,"4.2-4.3":0,"5.0-5.1":0.0032681692169217,"6.0-6.1":0.0010893897389739,"7.0-7.1":0.0038128640864086,"8.1-8.4":0.0070810333033303,"9.0-9.2":0.0065363384338434,"9.3":0.069176248424842,"10.0-10.2":0.023966574257426,"10.3":0.077346671467147,"11.0-11.2":0.065363384338434,"11.3-11.4":0.11656470207021,"12.0-12.1":0.16667663006301,"12.2-12.4":1.1798090873087,"13.0-13.1":1.7130653645365,"13.2":0.78000305310531,"13.3":1.2288316255626},I:{"3":0.0024962535211268,"4":0.010817098591549,_:"76","2.1":0,"2.2":0.0016641690140845,"2.3":0.0016641690140845,"4.1":0.019137943661972,"4.2-4.3":0.41853850704225,"4.4":0,"4.4.3-4.4.4":0.25461785915493},P:{"4":2.230261980198,"5.0-5.4":0.2422003960396,"6.2-6.4":0.20183366336634,"7.2-7.4":0.51467584158416,"8.2":0.10091683168317,"9.2":0.78715128712871,"10.1":1.01926},B:{"12":0.010056,"13":0,"14":0.005028,"15":0.005028,"16":0.035196,"17":0.02514,"18":0.593304,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.060336,"9":0,"10":0.005028,"11":0.447492,"5.5":0},N:{"10":0.009944,"11":0.059664},J:{"7":0,"10":0.004972},R:{_:"0"},M:{"0":0.02486},O:{"0":2.704768},Q:{"1.2":0.169048},S:{"2.5":0},H:{"0":7.9315787285223},L:{"0":43.93104}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TK.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TK.js new file mode 100644 index 0000000..de2c1e6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TK.js @@ -0,0 +1 @@ +module.exports={D:{"74":0.952,"78":2.858,"79":9.524,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 80 81"},C:{"71":2.858,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 3.5 3.6"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":1.904,_:"0 5 6 7 8 9 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1"},G:{"8":0.0015137513751375,"3.2":0.0060550055005501,"4.0-4.1":0.003027502750275,"4.2-4.3":0,"5.0-5.1":0.0090825082508251,"6.0-6.1":0.003027502750275,"7.0-7.1":0.010596259625963,"8.1-8.4":0.019678767876788,"9.0-9.2":0.01816501650165,"9.3":0.19224642464246,"10.0-10.2":0.066605060506051,"10.3":0.21495269526953,"11.0-11.2":0.1816501650165,"11.3-11.4":0.32394279427943,"12.0-12.1":0.46320792079208,"12.2-12.4":3.2787854785479,"13.0-13.1":4.7607480748075,"13.2":2.1676919691969,"13.3":3.4150231023102},I:{"3":0,"4":0,_:"76","2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},P:{"4":1.0796196513471,"5.0-5.4":0.010381726315789,"6.2-6.4":3.2491410459588,"7.2-7.4":0.051908631578947,"8.2":0.020763452631579,"9.2":1.0796196513471,"10.1":1.0796196513471},B:{"18":0.952,_:"12 13 14 15 16 17 76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0.021196571428571,"11":0.27555542857143},J:{"7":0,"10":0},R:{_:"0"},M:{_:"0"},O:{_:"0"},Q:{_:"1.2"},S:{_:"2.5"},H:{"0":0},L:{"0":59.328}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TL.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TL.js new file mode 100644 index 0000000..7615aa0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TL.js @@ -0,0 +1 @@ +module.exports={D:{"4":0.002589,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.002589,"25":0,"26":0.002589,"27":0,"28":0.002589,"29":0,"30":0,"31":0.015534,"32":0,"33":0.002589,"34":0,"35":0,"36":0.002589,"37":0,"38":0.002589,"39":0,"40":0.010356,"41":0,"42":0.005178,"43":0.02589,"44":0,"45":0,"46":0.002589,"47":0,"48":0,"49":0.119094,"50":0,"51":0,"52":0,"53":0.010356,"54":0,"55":0.028479,"56":0,"57":0,"58":0.005178,"59":0.002589,"60":0.002589,"61":0,"62":0.002589,"63":0.082848,"64":0.010356,"65":0,"66":0.002589,"67":0.007767,"68":0.002589,"69":0.010356,"70":0.012945,"71":0.010356,"72":0.012945,"73":0.010356,"74":0.007767,"75":0.005178,"76":0.015534,"77":0.031068,"78":1.467963,"79":0.706797,"80":0.002589,"81":0},C:{"2":0,"3":0,"4":0.002589,"5":0.002589,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.002589,"19":0.002589,"20":0.002589,"21":0.005178,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.002589,"30":0.002589,"31":0,"32":0.015534,"33":0,"34":0.005178,"35":0.002589,"36":0.002589,"37":0,"38":0.002589,"39":0,"40":0.002589,"41":0.002589,"42":0,"43":0.015534,"44":0.015534,"45":0,"46":0.002589,"47":0.020712,"48":0.010356,"49":0.002589,"50":0.002589,"51":0,"52":0.007767,"53":0,"54":0,"55":0,"56":0.010356,"57":0.007767,"58":0.002589,"59":0.010356,"60":0,"61":0.002589,"62":0.005178,"63":0.007767,"64":0.002589,"65":0,"66":0.002589,"67":0.007767,"68":0.038835,"69":0.023301,"70":0.248544,"71":0.427185,"72":0.038835,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.005178,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.002589,"31":0,"32":0,"33":0,"34":0.012945,"35":0,"36":0,"37":0.05178,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.002589,"46":0.005178,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.002589,"55":0,"56":0,"57":0.002589,"58":0,"60":0,"62":0,"63":0.005178,"64":0.005178,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.012945},E:{"4":0,"5":0,"6":0,"7":0,"8":0.007767,"9":0.002589,"10":0.007767,"11":0,"12":0.015534,"13":0.041424,_:"0","3.1":0,"3.2":0,"5.1":1.791588,"6.1":0,"7.1":0,"9.1":0.007767,"10.1":0.007767,"11.1":0.018123,"12.1":0.036246},G:{"8":0.0002593398339834,"3.2":0.0010373593359336,"4.0-4.1":0.0005186796679668,"4.2-4.3":0,"5.0-5.1":0.0015560390039004,"6.0-6.1":0.0005186796679668,"7.0-7.1":0.0018153788378838,"8.1-8.4":0.0033714178417842,"9.0-9.2":0.0031120780078008,"9.3":0.032936158915892,"10.0-10.2":0.01141095269527,"10.3":0.036826256425643,"11.0-11.2":0.031120780078008,"11.3-11.4":0.055498724472447,"12.0-12.1":0.07935798919892,"12.2-12.4":0.56173008040804,"13.0-13.1":0.81562377787779,"13.2":0.37137464226423,"13.3":0.58507066546655},I:{"3":0.0030331830985915,"4":0.01314379342723,_:"76","2.1":0,"2.2":0.0020221220657277,"2.3":0.0020221220657277,"4.1":0.023254403755869,"4.2-4.3":0.50856369953052,"4.4":0,"4.4.3-4.4.4":0.30938467605634},P:{"4":3.3901816003788,"5.0-5.4":0.13155928598485,"6.2-6.4":0.12143934090909,"7.2-7.4":0.37443796780303,"8.2":0.091079505681818,"9.2":0.41491774810606,"10.1":0.81971555113636},B:{"12":0.020712,"13":0.010356,"14":0.002589,"15":0.007767,"16":0.005178,"17":0.031068,"18":0.119094,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.010356,"9":0,"10":0.005178,"11":0.085437,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.007411},R:{_:"0"},M:{"0":0.051877},O:{"0":1.92686},Q:{"1.2":0.066699},S:{"2.5":0},H:{"0":4.5184688728522},L:{"0":75.130447}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TM.js new file mode 100644 index 0000000..724423b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0.006742,"9":0,"10":0,"11":0.010113,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.006742,"32":0,"33":0,"34":0.003371,"35":0,"36":0,"37":0.003371,"38":0.003371,"39":0.006742,"40":0.010113,"41":0.016855,"42":0.010113,"43":0.010113,"44":0.006742,"45":0,"46":0.020226,"47":0.003371,"48":0.050565,"49":1.658532,"50":0,"51":0.010113,"52":0.003371,"53":0.040452,"54":0,"55":0.003371,"56":0.006742,"57":0,"58":0.003371,"59":0,"60":0.006742,"61":0.003371,"62":0.003371,"63":0.03371,"64":0.006742,"65":0,"66":0.006742,"67":0,"68":0,"69":0.023597,"70":0.006742,"71":0.087646,"72":0.026968,"73":0.192147,"74":0.091017,"75":0.064049,"76":0.060678,"77":0.080904,"78":2.265312,"79":2.299022,"80":0.010113,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.013484,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.006742,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.003371,"40":0,"41":0,"42":0.003371,"43":0,"44":0,"45":0,"46":0,"47":0.003371,"48":0,"49":0,"50":0,"51":0,"52":0.006742,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.003371,"59":0.003371,"60":0.003371,"61":0.003371,"62":0.003371,"63":0,"64":0.003371,"65":0,"66":0.003371,"67":0.006742,"68":0.020226,"69":0.003371,"70":0.020226,"71":0.060678,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.003371,"36":0.003371,"37":0.003371,"38":0,"39":0,"40":0.003371,"41":0,"42":0.003371,"43":0.006742,"44":0,"45":0.013484,"46":0,"47":0,"48":0,"49":0.003371,"50":0,"51":0.020226,"52":0,"53":0.010113,"54":0.003371,"55":0.003371,"56":0,"57":0,"58":0.013484,"60":0.003371,"62":0.006742,"63":0.003371,"64":0.003371,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.003371,"12.1":0.006742},E:{"4":0,"5":0.003371,"6":0,"7":0,"8":0,"9":0,"10":0.003371,"11":0,"12":0,"13":0.030339,_:"0","3.1":0,"3.2":0,"5.1":0.010113,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.003371},G:{"8":0.000557400340034,"3.2":0.002229601360136,"4.0-4.1":0.001114800680068,"4.2-4.3":0,"5.0-5.1":0.003344402040204,"6.0-6.1":0.001114800680068,"7.0-7.1":0.003901802380238,"8.1-8.4":0.007246204420442,"9.0-9.2":0.006688804080408,"9.3":0.070789843184318,"10.0-10.2":0.024525614961496,"10.3":0.079150848284828,"11.0-11.2":0.06688804080408,"11.3-11.4":0.11928367276728,"12.0-12.1":0.17056450405041,"12.2-12.4":1.2073291365137,"13.0-13.1":1.7530240694069,"13.2":0.79819728692869,"13.3":1.2574951671167},I:{"3":0.0051226091549296,"4":0.022197973004695,_:"76","2.1":0,"2.2":0.0034150727699531,"2.3":0.0034150727699531,"4.1":0.03927333685446,"4.2-4.3":0.85889080164319,"4.4":0,"4.4.3-4.4.4":0.52250613380282},P:{"4":4.3660286272189,"5.0-5.4":0.14348450887574,"6.2-6.4":0.16398229585799,"7.2-7.4":1.3323561538462,"8.2":0.081991147928994,"9.2":0.74816922485207,"10.1":5.2884290414201},B:{"12":0,"13":0.037081,"14":0.003371,"15":0,"16":0.006742,"17":0.010113,"18":0.020226,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.044219588235294,"9":0,"10":0.068030135746606,"11":0.6394832760181,"5.5":0},N:{"10":0.01160075,"11":0.03480225},J:{"7":0,"10":0.033145},R:{_:"0"},M:{"0":0.053032},O:{"0":1.133559},Q:{"1.2":0.026516},S:{"2.5":0},H:{"0":1.0229731563574},L:{"0":61.775608}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TN.js new file mode 100644 index 0000000..7aa445d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.006929,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.006929,"28":0,"29":0,"30":0,"31":0.034645,"32":0.013858,"33":0,"34":0,"35":0,"36":0.013858,"37":0,"38":0.006929,"39":0.006929,"40":0.013858,"41":0.006929,"42":0.006929,"43":0.020787,"44":0,"45":0,"46":0.006929,"47":0.006929,"48":0.013858,"49":1.073995,"50":0.006929,"51":0.006929,"52":0.006929,"53":0.006929,"54":0.006929,"55":0.006929,"56":0.020787,"57":0.006929,"58":0.034645,"59":0.013858,"60":0.020787,"61":0.013858,"62":0.020787,"63":0.090077,"64":0.006929,"65":0.110864,"66":0.027716,"67":0.159367,"68":0.027716,"69":0.152438,"70":0.235586,"71":0.256373,"72":0.214799,"73":0.180154,"74":0.145509,"75":0.145509,"76":0.194012,"77":0.353379,"78":18.632081,"79":16.782038,"80":0.090077,"81":0.013858},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.006929,"33":0.006929,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.006929,"44":0.020787,"45":0,"46":0.006929,"47":0.006929,"48":0.062361,"49":0,"50":0.006929,"51":0,"52":0.06929,"53":0,"54":0,"55":0.013858,"56":0.006929,"57":0,"58":0,"59":0,"60":0.013858,"61":0,"62":0.006929,"63":0.006929,"64":0.027716,"65":0.048503,"66":0.006929,"67":0.013858,"68":0.097006,"69":0.034645,"70":0.464243,"71":1.66296,"72":0.027716,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.006929,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.006929,"56":0.006929,"57":0.020787,"58":0.006929,"60":0,"62":0.006929,"63":0.013858,"64":0.228657,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.006929,"8":0.090077,"9":0,"10":0.034645,"11":0.020787,"12":0.145509,"13":0.505817,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.027716,"10.1":0.117793,"11.1":0.124722,"12.1":0.263302},G:{"8":0.00029593119311931,"3.2":0.0011837247724772,"4.0-4.1":0.00059186238623862,"4.2-4.3":0,"5.0-5.1":0.0017755871587159,"6.0-6.1":0.00059186238623862,"7.0-7.1":0.0020715183518352,"8.1-8.4":0.0038471055105511,"9.0-9.2":0.0035511743174317,"9.3":0.037583261526153,"10.0-10.2":0.01302097249725,"10.3":0.042022229422942,"11.0-11.2":0.035511743174317,"11.3-11.4":0.063329275327533,"12.0-12.1":0.090554945094509,"12.2-12.4":0.64098696429643,"13.0-13.1":0.93070360236024,"13.2":0.42377346854685,"13.3":0.66762077167717},I:{"3":0.0018686971830986,"4":0.0080976877934272,_:"76","2.1":0,"2.2":0.0012457981220657,"2.3":0.0012457981220657,"4.1":0.014326678403756,"4.2-4.3":0.31331822769953,"4.4":0,"4.4.3-4.4.4":0.19060711267606},P:{"4":0.39907405078125,"5.0-5.4":0.01023266796875,"6.2-6.4":0.040930671875,"7.2-7.4":0.17395535546875,"8.2":0.040930671875,"9.2":0.27628203515625,"10.1":1.6679248789062},B:{"12":0.006929,"13":0.006929,"14":0.027716,"15":0.020787,"16":0.006929,"17":0.124722,"18":0.519675,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.013858,"8":0.055432,"9":0,"10":0.006929,"11":0.159367,"5.5":0},N:{"10":0,"11":0.058349},J:{"7":0,"10":0.009213},R:{_:"0"},M:{"0":0.076775},O:{"0":0.288674},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.31109441065292},L:{"0":44.227523}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TO.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TO.js new file mode 100644 index 0000000..18c8a3d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TO.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.008028,"12":0,"13":0.004014,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004014,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.008028,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004014,"56":0.004014,"57":0.004014,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.598086,"64":0,"65":0.004014,"66":0,"67":0.02007,"68":0,"69":0.004014,"70":0.004014,"71":0.004014,"72":0.008028,"73":0.008028,"74":0.04014,"75":0.036126,"76":0.024084,"77":0.052182,"78":3.235284,"79":1.709964,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.004014,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.008028,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004014,"48":0.028098,"49":0,"50":0.008028,"51":0,"52":0.148518,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.004014,"66":0,"67":0,"68":0.028098,"69":0.016056,"70":0.128448,"71":0.305064,"72":0.012042,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.012042,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.008028,"54":0,"55":0.004014,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.004014,"64":0.004014,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.016056,"11":0.012042,"12":0.012042,"13":0.88308,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004014,"10.1":0,"11.1":0.016056,"12.1":0.02007},G:{"8":0.0010606160616062,"3.2":0.0042424642464246,"4.0-4.1":0.0021212321232123,"4.2-4.3":0,"5.0-5.1":0.006363696369637,"6.0-6.1":0.0021212321232123,"7.0-7.1":0.0074243124312431,"8.1-8.4":0.01378800880088,"9.0-9.2":0.012727392739274,"9.3":0.13469823982398,"10.0-10.2":0.046667106710671,"10.3":0.15060748074807,"11.0-11.2":0.12727392739274,"11.3-11.4":0.22697183718372,"12.0-12.1":0.32454851485149,"12.2-12.4":2.2972943894389,"13.0-13.1":3.3356375137514,"13.2":1.51880220022,"13.3":2.3927498349835},I:{"3":0.0031685211267606,"4":0.013730258215962,_:"76","2.1":0,"2.2":0.0021123474178404,"2.3":0.0021123474178404,"4.1":0.024291995305164,"4.2-4.3":0.53125537558685,"4.4":0,"4.4.3-4.4.4":0.32318915492958},P:{"4":0.42384680634921,"5.0-5.4":0.020675453968254,"6.2-6.4":0.10337726984127,"7.2-7.4":0.2687809015873,"8.2":0.10337726984127,"9.2":0.90971997460317,"10.1":1.4266063238095},B:{"12":0,"13":0.012042,"14":0.004014,"15":0.004014,"16":0.012042,"17":0.04014,"18":0.54189,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.004014,"11":0.104364,"5.5":0},N:{"10":0,"11":0.02993},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.167608},O:{"0":0.670432},Q:{"1.2":0.161622},S:{"2.5":0},H:{"0":1.5301326804124},L:{"0":72.044122}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TR.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TR.js new file mode 100644 index 0000000..9fe465c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TR.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004888,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.009776,"35":0,"36":0,"37":0,"38":0.014664,"39":0,"40":0,"41":0,"42":0,"43":0.002444,"44":0,"45":0,"46":0.002444,"47":0.002444,"48":0.002444,"49":0.075764,"50":0.002444,"51":0,"52":0,"53":0.007332,"54":0,"55":0.002444,"56":0.002444,"57":0,"58":0.004888,"59":0.002444,"60":0.002444,"61":0.002444,"62":0.002444,"63":0.009776,"64":0.002444,"65":0.004888,"66":0.002444,"67":0.007332,"68":0.004888,"69":0.009776,"70":0.034216,"71":0.04888,"72":0.03666,"73":0.034216,"74":0.021996,"75":0.031772,"76":0.031772,"77":0.051324,"78":2.008968,"79":1.947868,"80":0.002444,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.002444,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.002444,"49":0,"50":0,"51":0,"52":0.007332,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.002444,"61":0,"62":0,"63":0.002444,"64":0.017108,"65":0.004888,"66":0.002444,"67":0,"68":0.019552,"69":0.002444,"70":0.034216,"71":0.131976,"72":0.002444,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.002444,"32":0.002444,"33":0,"34":0,"35":0,"36":0.002444,"37":0,"38":0,"39":0,"40":0.004888,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.002444,"54":0,"55":0.004888,"56":0.002444,"57":0.002444,"58":0.002444,"60":0,"62":0,"63":0,"64":0.019552,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.002444,"11":0.002444,"12":0.009776,"13":0.127088,_:"0","3.1":0,"3.2":0,"5.1":0.09776,"6.1":0,"7.1":0,"9.1":0.002444,"10.1":0.007332,"11.1":0.01222,"12.1":0.034216},G:{"8":0.0013306746674667,"3.2":0.005322698669867,"4.0-4.1":0.0026613493349335,"4.2-4.3":0,"5.0-5.1":0.0079840480048005,"6.0-6.1":0.0026613493349335,"7.0-7.1":0.0093147226722672,"8.1-8.4":0.017298770677068,"9.0-9.2":0.015968096009601,"9.3":0.16899568276828,"10.0-10.2":0.058549685368537,"10.3":0.18895580278028,"11.0-11.2":0.15968096009601,"11.3-11.4":0.28476437883788,"12.0-12.1":0.40718644824482,"12.2-12.4":2.882241329733,"13.0-13.1":4.1849718291829,"13.2":1.9055261238124,"13.3":3.002002049805},I:{"3":0.00047416901408451,"4":0.0020547323943662,_:"76","2.1":0,"2.2":0.00031611267605634,"2.3":0.00031611267605634,"4.1":0.0036352957746479,"4.2-4.3":0.079502338028169,"4.4":0,"4.4.3-4.4.4":0.04836523943662},P:{"4":0.67621321664275,"5.0-5.4":0.08074187661406,"6.2-6.4":0.090834611190818,"7.2-7.4":0.37343117934003,"8.2":0.12111281492109,"9.2":0.58537860545194,"10.1":5.0968309612626},B:{"12":0.002444,"13":0.002444,"14":0.002444,"15":0.002444,"16":0.002444,"17":0.019552,"18":0.131976,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0099176811594203,"9":0.0024794202898551,"10":0.0074382608695652,"11":0.15124463768116,"5.5":0},N:{"10":0,"11":0.07556},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.098228},O:{"0":0.219124},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.58658967697595},L:{"0":70.18194}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TT.js new file mode 100644 index 0000000..a240f84 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00471,"35":0,"36":0.00471,"37":0.00471,"38":0.00942,"39":0,"40":0,"41":0,"42":0.00471,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.16014,"50":0.00471,"51":0,"52":0,"53":0.01413,"54":0.00471,"55":0.01413,"56":0.00942,"57":0,"58":0.00942,"59":0.00471,"60":0.00471,"61":0.00471,"62":0.03297,"63":0.01413,"64":0.00942,"65":0.02355,"66":0.01413,"67":0.01413,"68":0.00471,"69":0.10833,"70":0.01413,"71":0.13659,"72":0.01413,"73":0.03297,"74":0.05181,"75":0.05181,"76":0.07536,"77":0.13188,"78":7.35702,"79":5.21397,"80":0.01413,"81":0.00471},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00471,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00471,"48":0.04239,"49":0,"50":0,"51":0,"52":0.03297,"53":0,"54":0.00471,"55":0.00471,"56":0.00471,"57":0,"58":0,"59":0,"60":0.00471,"61":0.00471,"62":0,"63":0,"64":0,"65":0.00471,"66":0.00471,"67":0.00942,"68":0.08007,"69":0.01884,"70":0.33441,"71":0.87135,"72":0.07536,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00942,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00942,"53":0.00471,"54":0.00471,"55":0.00942,"56":0,"57":0,"58":0,"60":0.00471,"62":0,"63":0,"64":0.02826,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00471,"9":0,"10":0.00471,"11":0.00942,"12":0.07065,"13":1.15866,_:"0","3.1":0,"3.2":0,"5.1":0.02826,"6.1":0,"7.1":0,"9.1":0.00942,"10.1":0.05652,"11.1":0.16956,"12.1":0.36267},G:{"8":0.0012492259225923,"3.2":0.004996903690369,"4.0-4.1":0.0024984518451845,"4.2-4.3":0,"5.0-5.1":0.0074953555355536,"6.0-6.1":0.0024984518451845,"7.0-7.1":0.0087445814581458,"8.1-8.4":0.016239936993699,"9.0-9.2":0.014990711071107,"9.3":0.15865169216922,"10.0-10.2":0.054965940594059,"10.3":0.1773900810081,"11.0-11.2":0.14990711071107,"11.3-11.4":0.26733434743474,"12.0-12.1":0.38226313231323,"12.2-12.4":2.7058233483348,"13.0-13.1":3.9288155265527,"13.2":1.7888915211521,"13.3":2.8182536813681},I:{"3":0.0038841197183099,"4":0.016831185446009,_:"76","2.1":0,"2.2":0.0025894131455399,"2.3":0.0025894131455399,"4.1":0.029778251173709,"4.2-4.3":0.65123740610329,"4.4":0,"4.4.3-4.4.4":0.39618021126761},P:{"4":0.21372760511883,"5.0-5.4":0.010686380255941,"6.2-6.4":0.042745521023766,"7.2-7.4":0.16029570383912,"8.2":0.032059140767824,"9.2":0.34196416819013,"10.1":4.9798531992687},B:{"12":0.00471,"13":0.01413,"14":0.00942,"15":0.01413,"16":0.02826,"17":0.17898,"18":1.18692,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00942,"9":0.00471,"10":0.00942,"11":0.48513,"5.5":0},N:{"10":0,"11":0.03703},J:{"7":0,"10":0.01058},R:{_:"0"},M:{"0":0.14812},O:{"0":0.12167},Q:{"1.2":0.00529},S:{"2.5":0},H:{"0":0.44072426116838},L:{"0":57.08612}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TV.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TV.js new file mode 100644 index 0000000..1dde29c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TV.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00507,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00507,"68":0,"69":0.00507,"70":0.01014,"71":0.01521,"72":0,"73":0,"74":0.02028,"75":0,"76":0,"77":0.00507,"78":0.377208,"79":0.155142,"80":0,"81":0},C:{"2":0,"3":0,"4":0.00507,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01014,"71":0.041574,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01521,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.046644,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01014},G:{"8":0.001075603960396,"3.2":0.0043024158415842,"4.0-4.1":0.0021512079207921,"4.2-4.3":0,"5.0-5.1":0.0064536237623762,"6.0-6.1":0.0021512079207921,"7.0-7.1":0.0075292277227723,"8.1-8.4":0.013982851485149,"9.0-9.2":0.012907247524752,"9.3":0.1366017029703,"10.0-10.2":0.047326574257426,"10.3":0.15273576237624,"11.0-11.2":0.12907247524752,"11.3-11.4":0.23017924752475,"12.0-12.1":0.32913481188119,"12.2-12.4":2.3297581782178,"13.0-13.1":3.3827744554455,"13.2":1.5402648712871,"13.3":2.4265625346535},I:{"3":0.0041967887323944,"4":0.018186084507042,_:"76","2.1":0,"2.2":0.0027978591549296,"2.3":0.0027978591549296,"4.1":0.03217538028169,"4.2-4.3":0.70366157746479,"4.4":0,"4.4.3-4.4.4":0.42807245070423},P:{"4":0.92300515909091,"5.0-5.4":0.61199255113636,"6.2-6.4":0,"7.2-7.4":0.050163323863636,"8.2":0,"9.2":0.87284183522727,"10.1":1.0734951306818},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01521,"18":0.093288,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00507,"11":0.066924,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0.305524},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.19566937800687},L:{"0":82.697332}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TW.js new file mode 100644 index 0000000..044d2bb --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005357,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.021428,"25":0,"26":0.005357,"27":0,"28":0,"29":0,"30":0.005357,"31":0,"32":0,"33":0,"34":0.016071,"35":0.005357,"36":0,"37":0,"38":0.05357,"39":0.005357,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.005357,"46":0,"47":0,"48":0.010714,"49":0.283921,"50":0.005357,"51":0.005357,"52":0,"53":0.080355,"54":0.005357,"55":0.010714,"56":0.010714,"57":0.005357,"58":0.026785,"59":0.005357,"60":0.005357,"61":0.032142,"62":0.010714,"63":0.058927,"64":0.026785,"65":0.026785,"66":0.016071,"67":0.048213,"68":0.021428,"69":0.05357,"70":0.042856,"71":0.058927,"72":0.058927,"73":0.117854,"74":0.117854,"75":0.133925,"76":0.149996,"77":0.257136,"78":10.542576,"79":9.680099,"80":0.010714,"81":0.005357},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.005357,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.005357,"49":0,"50":0,"51":0.005357,"52":0.042856,"53":0,"54":0,"55":0,"56":0.010714,"57":0.005357,"58":0,"59":0,"60":0.005357,"61":0,"62":0.005357,"63":0.005357,"64":0.005357,"65":0.005357,"66":0.010714,"67":0.010714,"68":0.064284,"69":0.016071,"70":0.219637,"71":0.80355,"72":0.010714,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005357,"37":0.058927,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005357,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.005357,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0.005357,"8":0.005357,"9":0,"10":0.005357,"11":0.016071,"12":0.069641,"13":1.0714,_:"0","3.1":0,"3.2":0,"5.1":0.005357,"6.1":0,"7.1":0,"9.1":0.016071,"10.1":0.048213,"11.1":0.069641,"12.1":0.241065},G:{"8":0.0030072162216222,"3.2":0.012028864886489,"4.0-4.1":0.0060144324432443,"4.2-4.3":0,"5.0-5.1":0.018043297329733,"6.0-6.1":0.0060144324432443,"7.0-7.1":0.021050513551355,"8.1-8.4":0.039093810881088,"9.0-9.2":0.036086594659466,"9.3":0.38191646014601,"10.0-10.2":0.13231751375138,"10.3":0.42702470347035,"11.0-11.2":0.36086594659466,"11.3-11.4":0.64354427142714,"12.0-12.1":0.92020816381638,"12.2-12.4":6.5136303360336,"13.0-13.1":9.4576950170017,"13.2":4.3063336293629,"13.3":6.7842797959796},I:{"3":0.00076081338028169,"4":0.0032968579812207,_:"76","2.1":0,"2.2":0.00050720892018779,"2.3":0.00050720892018779,"4.1":0.0058329025821596,"4.2-4.3":0.12756304342723,"4.4":0,"4.4.3-4.4.4":0.077602964788732},P:{"4":0.33119531141869,"5.0-5.4":0.021367439446367,"6.2-6.4":0.03205115916955,"7.2-7.4":0.10683719723183,"8.2":0.10683719723183,"9.2":0.4487162283737,"10.1":2.0299067474048},B:{"12":0,"13":0,"14":0.005357,"15":0.005357,"16":0.005357,"17":0.048213,"18":0.691053,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.060552572413793,"9":0.0055047793103448,"10":0.022019117241379,"11":0.71011653103448,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.106789},O:{"0":0.116075},Q:{"1.2":0.018572},S:{"2.5":0},H:{"0":0.65056248109966},L:{"0":36.872558}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/TZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/TZ.js new file mode 100644 index 0000000..86d1124 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/TZ.js @@ -0,0 +1 @@ +module.exports={D:{"11":0.009324,"21":0.003108,"27":0.003108,"28":0.006216,"29":0.012432,"31":0.009324,"32":0.009324,"33":0.009324,"36":0.009324,"38":0.003108,"40":0.006216,"42":0.018648,"43":0.037296,"45":0.003108,"46":0.006216,"47":0.003108,"48":0.003108,"49":0.102564,"50":0.037296,"52":0.003108,"53":0.006216,"55":0.034188,"56":0.006216,"57":0.043512,"58":0.027972,"60":0.090132,"61":0.006216,"62":0.012432,"63":0.189588,"64":0.012432,"65":0.040404,"66":0.006216,"67":0.04662,"68":0.012432,"69":0.285936,"70":0.027972,"71":0.034188,"72":0.052836,"73":0.049728,"74":0.13986,"75":0.083916,"76":0.121212,"77":0.2331,"78":5.81196,"79":5.466972,"80":0.027972,"81":0.006216,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 26 30 34 35 37 39 41 44 51 54 59"},C:{"4":0.009324,"6":0.006216,"15":0.003108,"16":0.003108,"17":0.003108,"18":0.006216,"19":0.006216,"20":0.009324,"21":0.006216,"23":0.024864,"24":0.003108,"25":0.006216,"26":0.006216,"27":0.003108,"28":0.006216,"29":0.006216,"30":0.01554,"31":0.006216,"32":0.009324,"33":0.009324,"34":0.009324,"35":0.009324,"36":0.012432,"37":0.012432,"38":0.01554,"39":0.006216,"40":0.018648,"41":0.018648,"42":0.009324,"43":0.052836,"44":0.03108,"45":0.01554,"46":0.012432,"47":0.059052,"48":0.03108,"49":0.024864,"50":0.009324,"51":0.009324,"52":0.055944,"53":0.003108,"54":0.006216,"55":0.009324,"56":0.024864,"57":0.006216,"58":0.012432,"59":0.009324,"60":0.024864,"61":0.009324,"62":0.006216,"63":0.03108,"64":0.012432,"65":0.012432,"66":0.021756,"67":0.065268,"68":0.096348,"69":0.083916,"70":1.003884,"71":3.017868,"72":0.317016,_:"2 3 5 7 8 9 10 11 12 13 14 22 73 3.5","3.6":0.003108},F:{"17":0.006216,"30":0.003108,"36":0.006216,"38":0.003108,"40":0.003108,"42":0.012432,"46":0.003108,"53":0.006216,"54":0.003108,"55":0.006216,"57":0.003108,"58":0.003108,"60":0.006216,"62":0.024864,"63":0.043512,"64":0.055944,_:"9 11 12 15 16 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 37 39 41 43 44 45 47 48 49 50 51 52 56 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.003108},E:{"4":0.009324,"8":0.024864,"9":0.97902,"10":0.040404,"11":0.049728,"12":0.096348,"13":0.767676,_:"0 5 6 7 3.1 3.2 6.1 7.1","5.1":0.003108,"9.1":0.034188,"10.1":0.102564,"11.1":0.180264,"12.1":0.43512},G:{"8":0.00034945934593459,"3.2":0.0013978373837384,"4.0-4.1":0.00069891869186919,"4.2-4.3":0,"5.0-5.1":0.0020967560756076,"6.0-6.1":0.00069891869186919,"7.0-7.1":0.0024462154215422,"8.1-8.4":0.0045429714971497,"9.0-9.2":0.0041935121512151,"9.3":0.044381336933693,"10.0-10.2":0.015376211221122,"10.3":0.049623227122712,"11.0-11.2":0.041935121512151,"11.3-11.4":0.074784300030003,"12.0-12.1":0.10693455985599,"12.2-12.4":0.75692894329433,"13.0-13.1":1.0990496429643,"13.2":0.50042578337834,"13.3":0.78838028442844},I:{"3":0.001480323943662,"4":0.0064147370892019,_:"76","2.1":0,"2.2":0.00098688262910798,"2.3":0.00098688262910798,"4.1":0.011349150234742,"4.2-4.3":0.24820098122066,"4.4":0,"4.4.3-4.4.4":0.15099304225352},P:{"4":0.64013876679842,"5.0-5.4":0.081287462450593,"6.2-6.4":0.030482798418972,"7.2-7.4":0.21337958893281,"8.2":0.050804664031621,"9.2":0.46740290909091,"10.1":1.0872198102767},B:{"12":0.13986,"13":0.055944,"14":0.03108,"15":0.043512,"16":0.052836,"17":0.161616,"18":0.898212,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.422688,"9":0.01718243902439,"10":0.058420292682927,"11":0.34708526829268,_:"6 7 5.5"},N:{"10":0.0220544,"11":0.1433536},J:{"7":0,"10":0.027568},R:{_:"0"},M:{"0":0.24122},O:{"0":3.253024},Q:{"1.2":0.027568},S:{"2.5":0.096488},H:{"0":19.287605415808},L:{"0":42.488132}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/UA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/UA.js new file mode 100644 index 0000000..2ad3edc --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/UA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00719,"35":0,"36":0.01438,"37":0.00719,"38":0.00719,"39":0,"40":0.00719,"41":0.01438,"42":0.00719,"43":0.00719,"44":0,"45":0.00719,"46":0.00719,"47":0.00719,"48":0.00719,"49":0.65429,"50":0.00719,"51":0.01438,"52":0.00719,"53":0.01438,"54":0.00719,"55":0.01438,"56":0.02876,"57":0.02876,"58":0.03595,"59":0.02157,"60":0.02157,"61":0.13661,"62":0.02157,"63":0.04314,"64":0.02157,"65":0.02157,"66":0.03595,"67":0.06471,"68":0.04314,"69":0.10066,"70":0.26603,"71":0.2876,"72":0.27322,"73":0.26603,"74":0.23008,"75":0.28041,"76":0.30198,"77":0.40983,"78":18.43516,"79":14.90487,"80":0.03595,"81":0.01438},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.00719,"17":0,"18":0,"19":0,"20":0.01438,"21":0.00719,"22":0,"23":0,"24":0,"25":0,"26":0.00719,"27":0,"28":0,"29":0,"30":0,"31":0.00719,"32":0.00719,"33":0,"34":0,"35":0,"36":0,"37":0.00719,"38":0.00719,"39":0,"40":0,"41":0.02157,"42":0,"43":0.00719,"44":0,"45":0.03595,"46":0.03595,"47":0.04314,"48":0.04314,"49":0.02876,"50":0.02876,"51":0.01438,"52":0.23008,"53":0.02876,"54":0.01438,"55":0.02876,"56":0.05033,"57":0.03595,"58":0.00719,"59":0.00719,"60":0.09347,"61":0.01438,"62":0.01438,"63":0.03595,"64":0.03595,"65":0.04314,"66":0.04314,"67":0.04314,"68":0.23008,"69":0.06471,"70":0.63991,"71":1.94849,"72":0.02157,"73":0.00719,"3.5":0,"3.6":0.00719},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.09347,"37":0.00719,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00719,"44":0,"45":0.00719,"46":0.00719,"47":0,"48":0.00719,"49":0,"50":0.00719,"51":0,"52":0,"53":0.02876,"54":0.00719,"55":0.02876,"56":0.00719,"57":0.02157,"58":0.02157,"60":0.02876,"62":0.01438,"63":0.02157,"64":0.13661,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.06471},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01438,"10":0,"11":0.02876,"12":0.1438,"13":1.47395,_:"0","3.1":0,"3.2":0,"5.1":0.02876,"6.1":0,"7.1":0,"9.1":0.00719,"10.1":0.02876,"11.1":0.10785,"12.1":0.40983},G:{"8":0.00072128612861286,"3.2":0.0028851445144514,"4.0-4.1":0.0014425722572257,"4.2-4.3":0,"5.0-5.1":0.0043277167716772,"6.0-6.1":0.0014425722572257,"7.0-7.1":0.00504900290029,"8.1-8.4":0.0093767196719672,"9.0-9.2":0.0086554335433543,"9.3":0.091603338333833,"10.0-10.2":0.031736589658966,"10.3":0.10242263026303,"11.0-11.2":0.086554335433543,"11.3-11.4":0.15435523152315,"12.0-12.1":0.22071355535554,"12.2-12.4":1.5623057545755,"13.0-13.1":2.2684448744874,"13.2":1.0328817361736,"13.3":1.6272215061506},I:{"3":0.00091316901408451,"4":0.0039570657276995,_:"76","2.1":0,"2.2":0.000608779342723,"2.3":0.000608779342723,"4.1":0.0070009624413146,"4.2-4.3":0.15310800469484,"4.4":0,"4.4.3-4.4.4":0.09314323943662},P:{"4":0.081891428571429,"5.0-5.4":0.020472857142857,"6.2-6.4":0.010236428571429,"7.2-7.4":0.020472857142857,"8.2":0.020472857142857,"9.2":0.10236428571429,"10.1":0.74725928571429},B:{"12":0,"13":0.00719,"14":0.02157,"15":0.01438,"16":0.01438,"17":0.06471,"18":0.31636,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03595,"9":0.01438,"10":0.01438,"11":0.34512,"5.5":0},N:{"10":0.0119425,"11":0.0358275},J:{"7":0,"10":0.01405},R:{_:"0"},M:{"0":0.10678},O:{"0":0.36249},Q:{"1.2":0.01686},S:{"2.5":0},H:{"0":0.52674463917526},L:{"0":37.80401}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/UG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/UG.js new file mode 100644 index 0000000..2af1e33 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/UG.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.003038,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003038,"31":0.003038,"32":0,"33":0.003038,"34":0,"35":0,"36":0.003038,"37":0,"38":0,"39":0,"40":0.006076,"41":0,"42":0,"43":0.003038,"44":0,"45":0,"46":0.003038,"47":0.018228,"48":0,"49":0.03038,"50":0.003038,"51":0,"52":0,"53":0,"54":0,"55":0.006076,"56":0,"57":0.003038,"58":0.009114,"59":0,"60":0.003038,"61":0.003038,"62":0.012152,"63":0.024304,"64":0.009114,"65":0.012152,"66":0.003038,"67":0.006076,"68":0.003038,"69":0.039494,"70":0.027342,"71":0.033418,"72":0.009114,"73":0.03038,"74":0.036456,"75":0.021266,"76":0.051646,"77":0.06076,"78":2.18736,"79":1.491658,"80":0.01519,"81":0.003038},C:{"2":0,"3":0,"4":0.003038,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.003038,"21":0.003038,"22":0,"23":0,"24":0.009114,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003038,"31":0.003038,"32":0.003038,"33":0.003038,"34":0.003038,"35":0,"36":0.003038,"37":0.003038,"38":0.003038,"39":0.003038,"40":0.003038,"41":0.003038,"42":0.003038,"43":0.012152,"44":0.006076,"45":0.006076,"46":0.003038,"47":0.012152,"48":0.027342,"49":0.006076,"50":0.009114,"51":0,"52":0.054684,"53":0,"54":0.003038,"55":0.006076,"56":0.01519,"57":0.006076,"58":0.006076,"59":0.006076,"60":0.024304,"61":0.006076,"62":0.006076,"63":0.003038,"64":0.024304,"65":0.021266,"66":0.012152,"67":0.012152,"68":0.115444,"69":0.027342,"70":0.41013,"71":1.054186,"72":0.1519,"73":0.003038,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.006076,"15":0.003038,"16":0.006076,"17":0,"18":0.003038,"19":0.006076,"20":0.01519,"21":0,"22":0,"23":0.03038,"24":0,"25":0,"26":0.006076,"27":0.003038,"28":0.009114,"29":0,"30":0.006076,"31":0,"32":0.003038,"33":0.003038,"34":0.003038,"35":0.003038,"36":0,"37":0.003038,"38":0.04557,"39":0,"40":0,"41":0.006076,"42":0.009114,"43":0,"44":0.003038,"45":0.154938,"46":0.04557,"47":0,"48":0,"49":0,"50":0,"51":0.003038,"52":0,"53":0.024304,"54":0.021266,"55":0.01519,"56":0.003038,"57":0,"58":0,"60":0,"62":0.003038,"63":0.006076,"64":0.018228,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.063798},E:{"4":0,"5":0,"6":0,"7":0,"8":0.003038,"9":0,"10":0.009114,"11":0.018228,"12":0.033418,"13":0.154938,_:"0","3.1":0,"3.2":0,"5.1":0.127596,"6.1":0,"7.1":0.003038,"9.1":0.006076,"10.1":0.036456,"11.1":0.024304,"12.1":0.063798},G:{"8":0.00030232123212321,"3.2":0.0012092849284928,"4.0-4.1":0.00060464246424642,"4.2-4.3":0,"5.0-5.1":0.0018139273927393,"6.0-6.1":0.00060464246424642,"7.0-7.1":0.0021162486248625,"8.1-8.4":0.0039301760176018,"9.0-9.2":0.0036278547854785,"9.3":0.038394796479648,"10.0-10.2":0.013302134213421,"10.3":0.042929614961496,"11.0-11.2":0.036278547854785,"11.3-11.4":0.064696743674367,"12.0-12.1":0.092510297029703,"12.2-12.4":0.65482778877888,"13.0-13.1":0.9508002750275,"13.2":0.43292400440044,"13.3":0.68203669966997},I:{"3":0.0018907112676056,"4":0.0081930821596244,_:"76","2.1":0,"2.2":0.0012604741784038,"2.3":0.0012604741784038,"4.1":0.014495453051643,"4.2-4.3":0.31700925586854,"4.4":0,"4.4.3-4.4.4":0.19285254929577},P:{"4":0.38450996273292,"5.0-5.4":0.030356049689441,"6.2-6.4":0.2226110310559,"7.2-7.4":0.091068149068323,"8.2":0.030356049689441,"9.2":0.20237366459627,"10.1":0.65771440993789},B:{"12":0.021266,"13":0.018228,"14":0.012152,"15":0.021266,"16":0.012152,"17":0.051646,"18":0.230888,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.029195694915254,"9":0,"10":0.0097318983050847,"11":0.15246640677966,"5.5":0},N:{"10":0.0554784375,"11":0.2995835625},J:{"7":0,"10":0.160126},R:{_:"0"},M:{"0":0.215822},O:{"0":3.675936},Q:{"1.2":0.055696},S:{"2.5":0.438606},H:{"0":28.987973670103},L:{"0":39.49808}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/US.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/US.js new file mode 100644 index 0000000..0e45921 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/US.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.004352,"36":0,"37":0.004352,"38":0.004352,"39":0,"40":0.008704,"41":0.004352,"42":0,"43":0.004352,"44":0,"45":0,"46":0,"47":0.004352,"48":0.026112,"49":0.182784,"50":0.004352,"51":0.004352,"52":0,"53":0.004352,"54":0.004352,"55":0.004352,"56":0.026112,"57":0.095744,"58":0.008704,"59":0.008704,"60":0.02176,"61":0.013056,"62":0.008704,"63":0.04352,"64":0.008704,"65":0.034816,"66":0.017408,"67":0.034816,"68":0.069632,"69":0.034816,"70":0.052224,"71":0.069632,"72":0.091392,"73":0.06528,"74":0.134912,"75":0.208896,"76":0.204544,"77":0.28288,"78":5.531392,"79":3.52512,"80":0.017408,"81":0.013056},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004352,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.030464,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.004352,"31":0.004352,"32":0.004352,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004352,"39":0,"40":0,"41":0,"42":0,"43":0.004352,"44":0.008704,"45":0.008704,"46":0,"47":0.008704,"48":0.013056,"49":0,"50":0.004352,"51":0.004352,"52":0.039168,"53":0.004352,"54":0.013056,"55":0.004352,"56":0.004352,"57":0.008704,"58":0.004352,"59":0.004352,"60":0.017408,"61":0.008704,"62":0.004352,"63":0.008704,"64":0.008704,"65":0.013056,"66":0.013056,"67":0.013056,"68":0.169728,"69":0.034816,"70":0.295936,"71":0.905216,"72":0.004352,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004352,"46":0.004352,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004352,"56":0.004352,"57":0.004352,"58":0.004352,"60":0,"62":0,"63":0,"64":0.008704,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004352},E:{"4":0,"5":0,"6":0,"7":0,"8":0.026112,"9":0.008704,"10":0.008704,"11":0.02176,"12":0.06528,"13":1.788672,_:"0","3.1":0,"3.2":0,"5.1":0.082688,"6.1":0,"7.1":0,"9.1":0.039168,"10.1":0.060928,"11.1":0.126208,"12.1":0.248064},G:{"8":0.0043864194419442,"3.2":0.017545677767777,"4.0-4.1":0.0087728388838884,"4.2-4.3":0,"5.0-5.1":0.026318516651665,"6.0-6.1":0.0087728388838884,"7.0-7.1":0.030704936093609,"8.1-8.4":0.057023452745275,"9.0-9.2":0.05263703330333,"9.3":0.55707526912691,"10.0-10.2":0.19300245544554,"10.3":0.62287156075608,"11.0-11.2":0.5263703330333,"11.3-11.4":0.93869376057606,"12.0-12.1":1.3422443492349,"12.2-12.4":9.5009845112511,"13.0-13.1":13.795289144914,"13.2":6.2813526408641,"13.3":9.8957622610261},I:{"3":0.0017707042253521,"4":0.0076730516431925,_:"76","2.1":0,"2.2":0.0011804694835681,"2.3":0.0011804694835681,"4.1":0.013575399061033,"4.2-4.3":0.29688807511737,"4.4":0,"4.4.3-4.4.4":0.18061183098592},P:{"4":0.053029453376206,"5.0-5.4":0.021211781350482,"6.2-6.4":0.010605890675241,"7.2-7.4":0.053029453376206,"8.2":0.021211781350482,"9.2":0.24393548553055,"10.1":2.7787433569132},B:{"12":0.004352,"13":0.004352,"14":0.013056,"15":0.013056,"16":0.026112,"17":0.078336,"18":1.45792,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0044073220338983,"7":0.0044073220338983,"8":0.048480542372881,"9":0.039665898305085,"10":0.013221966101695,"11":0.92994494915254,"5.5":0},N:{"10":0,"11":0.016944},J:{"7":0,"10":0.005648},L:{"0":31.788048},R:{_:"0"},M:{"0":0.39536},O:{"0":0.208976},S:{"2.5":0.005648},Q:{"1.2":0.022592},H:{"0":0.12298471477663}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/UY.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/UY.js new file mode 100644 index 0000000..71388b6 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/UY.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00577,"28":0,"29":0.00577,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01154,"37":0,"38":0.00577,"39":0,"40":0,"41":0,"42":0.01154,"43":0.00577,"44":0,"45":0,"46":0.00577,"47":0,"48":0.02308,"49":0.42698,"50":0,"51":0.00577,"52":0.00577,"53":0.00577,"54":0,"55":0.01154,"56":0.00577,"57":0.01731,"58":0.01154,"59":0.00577,"60":0.00577,"61":0.00577,"62":0.05193,"63":0.02885,"64":0.00577,"65":0.0577,"66":0.01154,"67":0.02308,"68":0.01731,"69":0.05193,"70":0.12117,"71":0.08078,"72":0.09809,"73":0.0577,"74":0.12117,"75":0.16733,"76":0.65201,"77":1.02706,"78":13.20176,"79":10.07442,"80":0.02308,"81":0.00577},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01154,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01154,"39":0,"40":0,"41":0,"42":0,"43":0.00577,"44":0.00577,"45":0.02885,"46":0,"47":0.00577,"48":0.01154,"49":0.00577,"50":0.00577,"51":0.00577,"52":0.13271,"53":0.01154,"54":0.01731,"55":0.00577,"56":0.00577,"57":0.01731,"58":0.00577,"59":0.00577,"60":0.01731,"61":0.01154,"62":0.00577,"63":0.01154,"64":0.04039,"65":0.01154,"66":0.02885,"67":0.01154,"68":0.15579,"69":0.02885,"70":0.45583,"71":1.54636,"72":0.01154,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00577,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00577,"54":0,"55":0,"56":0.00577,"57":0,"58":0,"60":0,"62":0,"63":0.00577,"64":0.10963,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.01154,"11":0.01731,"12":0.07501,"13":0.78472,_:"0","3.1":0,"3.2":0,"5.1":0.45583,"6.1":0,"7.1":0,"9.1":0.01731,"10.1":0.02308,"11.1":0.07501,"12.1":0.26542},G:{"8":0.00088027202720272,"3.2":0.0035210881088109,"4.0-4.1":0.0017605440544054,"4.2-4.3":0,"5.0-5.1":0.0052816321632163,"6.0-6.1":0.0017605440544054,"7.0-7.1":0.006161904190419,"8.1-8.4":0.011443536353635,"9.0-9.2":0.010563264326433,"9.3":0.11179454745475,"10.0-10.2":0.03873196919692,"10.3":0.12499862786279,"11.0-11.2":0.10563264326433,"11.3-11.4":0.18837821382138,"12.0-12.1":0.26936324032403,"12.2-12.4":1.9066692109211,"13.0-13.1":2.7684555255526,"13.2":1.2605495429543,"13.3":1.9858936933693},I:{"3":0.00050922535211268,"4":0.0022066431924883,_:"76","2.1":0,"2.2":0.00033948356807512,"2.3":0.00033948356807512,"4.1":0.0039040610328639,"4.2-4.3":0.085380117370892,"4.4":0,"4.4.3-4.4.4":0.051940985915493},P:{"4":0.14207488789238,"5.0-5.4":0,"6.2-6.4":0.040592825112108,"7.2-7.4":0.081185650224215,"8.2":0.020296412556054,"9.2":0.28414977578475,"10.1":1.6947504484305},B:{"12":0.00577,"13":0.00577,"14":0.01154,"15":0.01731,"16":0.01731,"17":0.04616,"18":0.49045,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.030141791044776,"9":0.0060283582089552,"10":0.018085074626866,"11":0.3496447761194,"5.5":0},N:{"10":0,"11":0.14382},J:{"7":0,"10":0.00423},R:{_:"0"},M:{"0":0.13959},O:{"0":0.01692},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.12815010309278},L:{"0":54.13642}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/UZ.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/UZ.js new file mode 100644 index 0000000..4967387 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/UZ.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.005578,"28":0,"29":0,"30":0,"31":0.005578,"32":0,"33":0,"34":0,"35":0.005578,"36":0.016734,"37":0,"38":0.005578,"39":0.011156,"40":0.016734,"41":0.022312,"42":0,"43":0,"44":0,"45":0,"46":0.011156,"47":0.005578,"48":0.156184,"49":0.2789,"50":0,"51":0,"52":0,"53":0.005578,"54":0,"55":0.005578,"56":0.02789,"57":0.011156,"58":0.011156,"59":0.005578,"60":0.011156,"61":0.005578,"62":0.005578,"63":0.128294,"64":0.016734,"65":0.066936,"66":0.02789,"67":0.02789,"68":0.016734,"69":0.08367,"70":0.078092,"71":0.105982,"72":0.094826,"73":0.02789,"74":0.568956,"75":0.050202,"76":0.145028,"77":0.273322,"78":10.916146,"79":10.269098,"80":0.105982,"81":0.05578},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.005578,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.005578,"48":0,"49":0,"50":0.005578,"51":0,"52":0.061358,"53":0,"54":0.011156,"55":0.005578,"56":0.005578,"57":0.005578,"58":0,"59":0,"60":0.005578,"61":0.005578,"62":0.005578,"63":0.011156,"64":0.005578,"65":0.005578,"66":0.02789,"67":0.022312,"68":0.078092,"69":0.039046,"70":0.267744,"71":0.814388,"72":0.022312,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.005578,"31":0,"32":0,"33":0,"34":0,"35":0.005578,"36":0.016734,"37":0.005578,"38":0.005578,"39":0,"40":0.005578,"41":0,"42":0.02789,"43":0.005578,"44":0.005578,"45":0.011156,"46":0.005578,"47":0.011156,"48":0.005578,"49":0.005578,"50":0.005578,"51":0.016734,"52":0.011156,"53":0.16734,"54":0.061358,"55":0.089248,"56":0.033468,"57":0.206386,"58":0.08367,"60":0.184074,"62":0.290056,"63":0.094826,"64":0.050202,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.105982},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005578,"12":0.02789,"13":0.312368,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.005578,"10.1":0.005578,"11.1":0.016734,"12.1":0.05578},G:{"8":0.0006018795879588,"3.2":0.0024075183518352,"4.0-4.1":0.0012037591759176,"4.2-4.3":0,"5.0-5.1":0.0036112775277528,"6.0-6.1":0.0012037591759176,"7.0-7.1":0.0042131571157116,"8.1-8.4":0.0078244346434643,"9.0-9.2":0.0072225550555056,"9.3":0.076438707670767,"10.0-10.2":0.026482701870187,"10.3":0.085466901490149,"11.0-11.2":0.072225550555055,"11.3-11.4":0.12880223182318,"12.0-12.1":0.18417515391539,"12.2-12.4":1.3036711875188,"13.0-13.1":1.8929113041304,"13.2":0.861891569957,"13.3":1.357840350435},I:{"3":0.003367161971831,"4":0.014591035211268,_:"76","2.1":0,"2.2":0.0022447746478873,"2.3":0.0022447746478873,"4.1":0.025814908450704,"4.2-4.3":0.56456082394366,"4.4":0,"4.4.3-4.4.4":0.34345052112676},P:{"4":2.2218610526316,"5.0-5.4":0.24238484210526,"6.2-6.4":0.37367663157895,"7.2-7.4":0.62616084210526,"8.2":0.14139115789474,"9.2":0.96953936842105,"10.1":1.7572901052632},B:{"12":0.005578,"13":0,"14":0.005578,"15":0.016734,"16":0.016734,"17":0.033468,"18":0.284478,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02409696,"9":0.01204848,"10":0.00602424,"11":0.10843632,"5.5":0},N:{"10":0.010318,"11":0.020636},J:{"7":0,"10":0.013266},R:{_:"0"},M:{"0":0.039798},O:{"0":5.35062},Q:{"1.2":0.092862},S:{"2.5":0},H:{"0":0.40190053608247},L:{"0":42.321792}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VA.js new file mode 100644 index 0000000..d3612f4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.019218,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.172962,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.009609,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.009609,"66":0.499668,"67":0.336315,"68":0,"69":0.009609,"70":0,"71":0.009609,"72":0.009609,"73":0.009609,"74":0.009609,"75":0.932073,"76":0.028827,"77":0.345924,"78":31.13316,"79":20.457561,"80":0.105699,"81":0.019218},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.009609,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.009609,"45":0,"46":0,"47":0.009609,"48":0.009609,"49":0,"50":0,"51":0,"52":0.009609,"53":0,"54":0,"55":0.019218,"56":0.028827,"57":0.009609,"58":0,"59":0,"60":0.019218,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.019218,"67":0.009609,"68":0.048045,"69":0.019218,"70":2.97879,"71":9.166986,"72":0.028827,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.009609,"13":4.51623,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.028827,"10.1":0.172962,"11.1":0.172962,"12.1":0.451623},G:{"8":0.0005460499049905,"3.2":0.002184199619962,"4.0-4.1":0.001092099809981,"4.2-4.3":0,"5.0-5.1":0.003276299429943,"6.0-6.1":0.001092099809981,"7.0-7.1":0.0038223493349335,"8.1-8.4":0.0070986487648765,"9.0-9.2":0.006552598859886,"9.3":0.069348337933793,"10.0-10.2":0.024026195819582,"10.3":0.077539086508651,"11.0-11.2":0.06552598859886,"11.3-11.4":0.11685467966797,"12.0-12.1":0.16709127092709,"12.2-12.4":1.1827440942094,"13.0-13.1":1.7173269511951,"13.2":0.78194346394639,"13.3":1.2318885856586},I:{"3":0.00014418309859155,"4":0.00062479342723005,_:"76","2.1":0,"2.2":0.0000961220657277,"2.3":0.0000961220657277,"4.1":0.0011054037558685,"4.2-4.3":0.024174699530516,"4.4":0,"4.4.3-4.4.4":0.014706676056338},P:{"4":0.0099611904761905,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0099611904761905,"10.1":0.18926261904762},B:{"12":0,"13":0,"14":0.009609,"15":0.326706,"16":0.019218,"17":0.134526,"18":4.785282,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":10.992696,"5.5":0},N:{"10":0,"11":0.005865},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0.029716},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":4.929069}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VC.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VC.js new file mode 100644 index 0000000..7359060 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VC.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.009968,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.044856,"37":0,"38":0,"39":0,"40":0.004984,"41":0.004984,"42":0.004984,"43":0.004984,"44":0.004984,"45":0.004984,"46":0.004984,"47":0.004984,"48":0.004984,"49":0.164472,"50":0.019936,"51":0.019936,"52":0.004984,"53":0.019936,"54":0.009968,"55":0.009968,"56":0.009968,"57":0.004984,"58":0.014952,"59":0.004984,"60":0.009968,"61":0.009968,"62":0.019936,"63":0.019936,"64":0.034888,"65":0.019936,"66":0,"67":0.044856,"68":0.009968,"69":0.044856,"70":0.019936,"71":0.019936,"72":0.004984,"73":0.004984,"74":0.019936,"75":0.1246,"76":0.04984,"77":0.134568,"78":7.685328,"79":4.984,"80":0.009968,"81":0},C:{"2":0,"3":0.004984,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.004984,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.004984,"46":0.004984,"47":0.004984,"48":0,"49":0.004984,"50":0.004984,"51":0.039872,"52":0.019936,"53":0.009968,"54":0.004984,"55":0.009968,"56":0.014952,"57":0.009968,"58":0.004984,"59":0,"60":0.004984,"61":0.014952,"62":0,"63":0,"64":0,"65":0,"66":0.004984,"67":0.004984,"68":0.09968,"69":0.004984,"70":0.279104,"71":1.076544,"72":0.004984,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.04984,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.009968,"39":0,"40":0,"41":0,"42":0,"43":0.009968,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.004984,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.004984,"56":0,"57":0,"58":0,"60":0,"62":0.004984,"63":0,"64":0.02492,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.004984},E:{"4":0,"5":0,"6":0,"7":0,"8":0.004984,"9":0.014952,"10":0,"11":0.009968,"12":0.09968,"13":1.425424,_:"0","3.1":0,"3.2":0,"5.1":0.02492,"6.1":0,"7.1":0,"9.1":0.004984,"10.1":0.039872,"11.1":0.059808,"12.1":0.079744},G:{"8":0.00098203500350035,"3.2":0.0039281400140014,"4.0-4.1":0.0019640700070007,"4.2-4.3":0,"5.0-5.1":0.0058922100210021,"6.0-6.1":0.0019640700070007,"7.0-7.1":0.0068742450245024,"8.1-8.4":0.012766455045505,"9.0-9.2":0.011784420042004,"9.3":0.12471844544454,"10.0-10.2":0.043209540154015,"10.3":0.13944897049705,"11.0-11.2":0.11784420042004,"11.3-11.4":0.21015549074907,"12.0-12.1":0.30050271107111,"12.2-12.4":2.1270878175818,"13.0-13.1":3.0885000860086,"13.2":1.4062741250125,"13.3":2.2154709678968},I:{"3":0.0051627605633803,"4":0.022371962441315,_:"76","2.1":0,"2.2":0.0034418403755869,"2.3":0.0034418403755869,"4.1":0.039581164319249,"4.2-4.3":0.86562285446009,"4.4":0,"4.4.3-4.4.4":0.52660157746479},P:{"4":1.1796334986807,"5.0-5.4":0.011024612137203,"6.2-6.4":0.011024612137203,"7.2-7.4":0.58430444327177,"8.2":0.011024612137203,"9.2":0.099221509234828,"10.1":2.2710701002639},B:{"12":0.004984,"13":0.009968,"14":0.009968,"15":0.009968,"16":0.02492,"17":0.09968,"18":2.138136,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.014952,"9":0.02492,"10":0.019936,"11":0.244216,"5.5":0},N:{"10":0.029568,"11":0.251328},J:{"7":0,"10":0.005016},R:{_:"0"},M:{"0":0.170544},O:{"0":0.491568},Q:{"1.2":0.030096},S:{"2.5":0},H:{"0":0.28492948453608},L:{"0":59.795648}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VE.js new file mode 100644 index 0000000..63644a5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.007476,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.007476,"26":0.007476,"27":0.007476,"28":0,"29":0.007476,"30":0,"31":0,"32":0,"33":0.007476,"34":0,"35":0,"36":0.014952,"37":0.022428,"38":0,"39":0.007476,"40":0.007476,"41":0,"42":0.014952,"43":0.014952,"44":0.007476,"45":0.014952,"46":0.014952,"47":0.007476,"48":0.014952,"49":1.412964,"50":0.014952,"51":0.014952,"52":0.007476,"53":0.007476,"54":0.007476,"55":0.007476,"56":0.014952,"57":0.014952,"58":0.052332,"59":0.007476,"60":0.014952,"61":0.052332,"62":0.022428,"63":0.164472,"64":0.03738,"65":0.07476,"66":0.044856,"67":0.119616,"68":0.059808,"69":0.156996,"70":0.433608,"71":0.515844,"72":0.3738,"73":0.366324,"74":0.306516,"75":0.3738,"76":0.441084,"77":0.687792,"78":19.579644,"79":14.219352,"80":0.029904,"81":0.007476},C:{"2":0.007476,"3":0.007476,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.007476,"27":0.07476,"28":0.007476,"29":0,"30":0.007476,"31":0.014952,"32":0,"33":0,"34":0.007476,"35":0,"36":0,"37":0,"38":0.022428,"39":0.007476,"40":0.022428,"41":0.007476,"42":0.007476,"43":0.029904,"44":0.007476,"45":0.029904,"46":0.007476,"47":0.029904,"48":0.067284,"49":0.007476,"50":0.014952,"51":0.014952,"52":0.919548,"53":0.007476,"54":0.014952,"55":0.014952,"56":0.044856,"57":0.014952,"58":0.007476,"59":0.014952,"60":0.07476,"61":0.044856,"62":0.022428,"63":0.052332,"64":0.097188,"65":0.07476,"66":0.127092,"67":0.052332,"68":0.291564,"69":0.11214,"70":1.173732,"71":2.982924,"72":0.052332,"73":0,"3.5":0,"3.6":0.014952},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.007476,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.007476,"34":0,"35":0,"36":0.029904,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.007476,"46":0,"47":0,"48":0.007476,"49":0,"50":0,"51":0,"52":0,"53":0.007476,"54":0,"55":0.007476,"56":0.014952,"57":0.022428,"58":0.029904,"60":0.007476,"62":0.007476,"63":0.014952,"64":0.142044,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.014952},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.014952,"11":0.03738,"12":0.082236,"13":0.433608,_:"0","3.1":0,"3.2":0,"5.1":1.726956,"6.1":0,"7.1":0,"9.1":0.014952,"10.1":0.052332,"11.1":0.119616,"12.1":0.254184},G:{"8":0.00044385198519852,"3.2":0.0017754079407941,"4.0-4.1":0.00088770397039704,"4.2-4.3":0,"5.0-5.1":0.0026631119111911,"6.0-6.1":0.00088770397039704,"7.0-7.1":0.0031069638963896,"8.1-8.4":0.0057700758075808,"9.0-9.2":0.0053262238223822,"9.3":0.056369202120212,"10.0-10.2":0.019529487348735,"10.3":0.06302698189819,"11.0-11.2":0.053262238223822,"11.3-11.4":0.094984324832483,"12.0-12.1":0.13581870747075,"12.2-12.4":0.96138339993999,"13.0-13.1":1.3959144934493,"13.2":0.63559604280428,"13.3":1.0013300786079},I:{"3":0.0044366197183099,"4":0.019225352112676,_:"76","2.1":0,"2.2":0.0029577464788732,"2.3":0.0029577464788732,"4.1":0.034014084507042,"4.2-4.3":0.74387323943662,"4.4":0,"4.4.3-4.4.4":0.45253521126761},P:{"4":0.072395707317073,"5.0-5.4":0.010342243902439,"6.2-6.4":0.010342243902439,"7.2-7.4":0.14479141463415,"8.2":0.031026731707317,"9.2":0.15513365853659,"10.1":1.272096},B:{"12":0.007476,"13":0.007476,"14":0.014952,"15":0.014952,"16":0.014952,"17":0.089712,"18":0.216804,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0076780540540541,"8":0.1842732972973,"9":0.015356108108108,"10":0.015356108108108,"11":0.62960043243243,"5.5":0},N:{"10":0.0268175,"11":0.1877225},J:{"7":0,"10":0.098436},R:{_:"0"},M:{"0":0.174156},O:{"0":0.068148},Q:{"1.2":0.005048},S:{"2.5":0},H:{"0":1.1230932646048},L:{"0":35.742632}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VG.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VG.js new file mode 100644 index 0000000..b03b21d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VG.js @@ -0,0 +1 @@ +module.exports={D:{"38":0.017502,"41":0.011668,"48":0.61257,"49":2.146912,"50":0.14585,"53":0.192522,"54":0.005834,"63":0.005834,"64":1.160966,"65":0.011668,"67":0.046672,"68":0.110846,"69":0.501724,"70":0.052506,"71":0.37921,"72":1.95439,"73":1.125962,"74":0.099178,"75":0.02917,"76":0.332538,"77":0.332538,"78":14.719182,"79":7.578366,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 51 52 55 56 57 58 59 60 61 62 66 80 81"},C:{"3":0.052506,"47":0.005834,"48":0.011668,"54":0.005834,"55":0.140016,"62":1.890216,"63":0.659242,"64":0.02917,"65":0.035004,"66":0.011668,"68":0.040838,"69":0.023336,"70":0.740918,"71":3.692922,"72":0.011668,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 52 53 56 57 58 59 60 61 67 73 3.5 3.6"},F:{"58":0.005834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 10.5 10.6 11.1 11.5 11.6 12.1","9.5-9.6":0.005834,"10.0-10.1":0},E:{"4":0.105012,"8":0.005834,"11":0.052506,"12":0.05834,"13":4.772212,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.005834,"10.1":0.250862,"11.1":0.023336,"12.1":0.921772},G:{"8":0.001361495049505,"3.2":0.0054459801980198,"4.0-4.1":0.0027229900990099,"4.2-4.3":0,"5.0-5.1":0.0081689702970297,"6.0-6.1":0.0027229900990099,"7.0-7.1":0.0095304653465347,"8.1-8.4":0.017699435643564,"9.0-9.2":0.016337940594059,"9.3":0.17290987128713,"10.0-10.2":0.059905782178218,"10.3":0.1933322970297,"11.0-11.2":0.16337940594059,"11.3-11.4":0.29135994059406,"12.0-12.1":0.41661748514851,"12.2-12.4":2.9489982772277,"13.0-13.1":4.2819019306931,"13.2":1.9496609108911,"13.3":3.0715328316832},I:{"3":0.00017607042253521,"4":0.00076297183098592,_:"76","2.1":0,"2.2":0.00011738028169014,"2.3":0.00011738028169014,"4.1":0.0013498732394366,"4.2-4.3":0.02952114084507,"4.4":0,"4.4.3-4.4.4":0.017959183098592},P:{"4":0.043790236775819,"5.0-5.4":0.054737795969773,"6.2-6.4":0.010281719298246,"7.2-7.4":0.098528032745592,"8.2":0.25179386146096,"9.2":0.29558409823678,"10.1":3.5579567380353},B:{"12":0.134182,"14":0.011668,"15":0.02917,"16":0.023336,"17":0.309202,"18":4.503848,_:"13 76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.15052711614731,"7":0.17670574504249,"8":0.91625201133144,"9":0.1636164305949,"10":0.47775997733711,"11":5.0459307195467,_:"5.5"},N:{"10":0.053575714285714,"11":0.021430285714286},J:{"7":0,"10":0.004167},R:{_:"0"},M:{"0":0.091674},O:{"0":0.145845},Q:{_:"1.2"},S:{_:"2.5"},H:{"0":0.055230649484536},L:{"0":23.688579}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VI.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VI.js new file mode 100644 index 0000000..64295b8 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VI.js @@ -0,0 +1 @@ +module.exports={D:{"13":0.004743,"38":0.014229,"49":0.374697,"53":0.075888,"58":0.018972,"60":0.009486,"63":0.018972,"67":0.009486,"69":0.033201,"70":0.018972,"71":0.004743,"72":0.009486,"73":0.014229,"74":0.042687,"75":0.208692,"76":0.052173,"77":0.241893,"78":13.712013,"79":10.486773,"80":0.018972,_:"4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 61 62 64 65 66 68 81"},C:{"21":0.04743,"52":0.018972,"61":0.009486,"65":0.004743,"68":0.042687,"69":0.085374,"70":1.394442,"71":3.405474,"72":0.303552,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 66 67 73 3.5 3.6"},F:{"64":0.018972,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"9":0.004743,"10":0.018972,"11":0.014229,"12":0.113832,"13":5.326389,_:"0 5 6 7 8 3.1 3.2 6.1 7.1","5.1":0.023715,"9.1":0.009486,"10.1":0.123318,"11.1":0.14229,"12.1":0.972315},G:{"8":0.0023832364236424,"3.2":0.0095329456945695,"4.0-4.1":0.0047664728472847,"4.2-4.3":0,"5.0-5.1":0.014299418541854,"6.0-6.1":0.0047664728472847,"7.0-7.1":0.016682654965497,"8.1-8.4":0.030982073507351,"9.0-9.2":0.028598837083708,"9.3":0.30267102580258,"10.0-10.2":0.10486240264026,"10.3":0.33841957215722,"11.0-11.2":0.28598837083708,"11.3-11.4":0.51001259465947,"12.0-12.1":0.72927034563456,"12.2-12.4":5.1620900936094,"13.0-13.1":7.4952785523552,"13.2":3.4127945586559,"13.3":5.3765813717372},I:{"3":0.00018510563380282,"4":0.00080212441314554,_:"76","2.1":0,"2.2":0.00012340375586854,"2.3":0.00012340375586854,"4.1":0.0014191431924883,"4.2-4.3":0.031036044600939,"4.4":0,"4.4.3-4.4.4":0.018880774647887},P:{"4":0.042515628415301,"5.0-5.4":0,"6.2-6.4":0.010350566037736,"7.2-7.4":0.020701132075472,"8.2":0.010628907103825,"9.2":0.10628907103825,"10.1":5.590805136612},B:{"12":0.014229,"13":0.014229,"14":0.128061,"15":0.014229,"16":0.061659,"17":0.526473,"18":4.804659,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.009486,"11":2.731968,_:"6 7 8 9 5.5"},N:{"10":0.03936,"11":0.11808},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.399532},O:{"0":0.294392},Q:{_:"1.2"},S:{_:"2.5"},H:{"0":0.12940168728522},L:{"0":22.559822}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VN.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VN.js new file mode 100644 index 0000000..41ca7f9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VN.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03344,"37":0,"38":0.00836,"39":0.00836,"40":0.00836,"41":0.02508,"42":0.00836,"43":0.02508,"44":0.00836,"45":0.01672,"46":0.02508,"47":0.01672,"48":0.01672,"49":1.38776,"50":0.01672,"51":0.03344,"52":0.01672,"53":0.02508,"54":0.0418,"55":0.02508,"56":0.02508,"57":0.05852,"58":0.03344,"59":0.02508,"60":0.02508,"61":0.05016,"62":0.05016,"63":0.07524,"64":0.05016,"65":0.05016,"66":0.0418,"67":0.07524,"68":0.05852,"69":0.0836,"70":0.39292,"71":0.59356,"72":0.6688,"73":0.74404,"74":0.61864,"75":0.63536,"76":0.7106,"77":1.03664,"78":20.66592,"79":19.59584,"80":0.05852,"81":0.01672},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00836,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00836,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00836,"39":0.00836,"40":0.00836,"41":0.00836,"42":0.00836,"43":0.00836,"44":0.00836,"45":0.01672,"46":0.00836,"47":0.01672,"48":0.00836,"49":0.00836,"50":0.00836,"51":0.02508,"52":0.0836,"53":0.02508,"54":0.01672,"55":0.0418,"56":0.0418,"57":0.01672,"58":0.01672,"59":0.01672,"60":0.05016,"61":0.00836,"62":0.01672,"63":0.0418,"64":0.07524,"65":0.14212,"66":0.15048,"67":0.11704,"68":0.23408,"69":0.22572,"70":0.43472,"71":1.05336,"72":0.05016,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0.00836,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00836,"33":0,"34":0,"35":0,"36":0.01672,"37":0.03344,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.03344,"44":0,"45":0.00836,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00836,"56":0.01672,"57":0.0418,"58":0.17556,"60":0.09196,"62":0.09196,"63":0.19228,"64":0.19228,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02508},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00836,"9":0.00836,"10":0.01672,"11":0.02508,"12":0.1672,"13":1.13696,_:"0","3.1":0,"3.2":0,"5.1":0.00836,"6.1":0,"7.1":0,"9.1":0.00836,"10.1":0.10032,"11.1":0.10032,"12.1":0.48488},G:{"8":0.0010986098609861,"3.2":0.0043944394439444,"4.0-4.1":0.0021972197219722,"4.2-4.3":0,"5.0-5.1":0.0065916591659166,"6.0-6.1":0.0021972197219722,"7.0-7.1":0.0076902690269027,"8.1-8.4":0.014281928192819,"9.0-9.2":0.013183318331833,"9.3":0.13952345234523,"10.0-10.2":0.048338833883388,"10.3":0.15600260026003,"11.0-11.2":0.13183318331833,"11.3-11.4":0.23510251025103,"12.0-12.1":0.33617461746175,"12.2-12.4":2.3795889588959,"13.0-13.1":3.4551280128013,"13.2":1.5732093209321,"13.3":2.4784638463846},I:{"3":0.0011730985915493,"4":0.0050834272300469,_:"76","2.1":0,"2.2":0.00078206572769953,"2.3":0.00078206572769953,"4.1":0.0089937558685446,"4.2-4.3":0.19668953051643,"4.4":0,"4.4.3-4.4.4":0.11965605633803},P:{"4":0.13455735849057,"5.0-5.4":0,"6.2-6.4":0.010350566037736,"7.2-7.4":0.020701132075472,"8.2":0.010350566037736,"9.2":0.093155094339623,"10.1":0.81769471698113},B:{"12":0.00836,"13":0.00836,"14":0.02508,"15":0.00836,"16":0.01672,"17":0.13376,"18":0.46816,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.138624,"9":0.060648,"10":0.025992,"11":0.251256,"5.5":0},N:{"10":0.03936,"11":0.11808},J:{"7":0,"10":0.01312},R:{_:"0"},M:{"0":0.03936},O:{"0":0.40836},Q:{"1.2":0.01476},S:{"2.5":0.00164},H:{"0":0.21426515463918},L:{"0":15.83004}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/VU.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/VU.js new file mode 100644 index 0000000..967c51c --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/VU.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.029784,"41":0,"42":0,"43":0.003723,"44":0.003723,"45":0,"46":0.007446,"47":0,"48":0,"49":0.070737,"50":0,"51":0.003723,"52":0,"53":0,"54":0,"55":0.003723,"56":0,"57":0.178704,"58":0.003723,"59":0.003723,"60":0.003723,"61":0.003723,"62":0,"63":0.011169,"64":0,"65":0.003723,"66":0,"67":0,"68":0.003723,"69":0.316455,"70":0.003723,"71":0.003723,"72":0.003723,"73":0.003723,"74":0.018615,"75":0.018615,"76":0.03723,"77":0.048399,"78":4.311234,"79":1.917345,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.003723,"33":0,"34":0.007446,"35":0,"36":0,"37":0,"38":0.059568,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.007446,"48":0.003723,"49":0,"50":0,"51":0,"52":0.003723,"53":0.003723,"54":0,"55":0,"56":0,"57":0.003723,"58":0,"59":0.003723,"60":0,"61":0.018615,"62":0,"63":0.003723,"64":0.026061,"65":0,"66":0.003723,"67":0.014892,"68":0.063291,"69":0.078183,"70":0.193596,"71":0.349962,"72":0.003723,"73":0,"3.5":0.003723,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.052122,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.011169,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.014892,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.003723,"10":0.003723,"11":0.018615,"12":0.007446,"13":0.625464,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.007446,"11.1":0.040953,"12.1":0.067014},G:{"8":0.0008664703470347,"3.2":0.0034658813881388,"4.0-4.1":0.0017329406940694,"4.2-4.3":0,"5.0-5.1":0.0051988220822082,"6.0-6.1":0.0017329406940694,"7.0-7.1":0.0060652924292429,"8.1-8.4":0.011264114511451,"9.0-9.2":0.010397644164416,"9.3":0.11004173407341,"10.0-10.2":0.038124695269527,"10.3":0.12303878927893,"11.0-11.2":0.10397644164416,"11.3-11.4":0.18542465426543,"12.0-12.1":0.26513992619262,"12.2-12.4":1.8767747716772,"13.0-13.1":2.7250492414241,"13.2":1.2407855369537,"13.3":1.9547571029103},I:{"3":0.0047562957746479,"4":0.020610615023474,_:"76","2.1":0,"2.2":0.0031708638497653,"2.3":0.0031708638497653,"4.1":0.0364649342723,"4.2-4.3":0.79747225821596,"4.4":0,"4.4.3-4.4.4":0.48514216901408},P:{"4":1.079644,"5.0-5.4":0.051905961538462,"6.2-6.4":0.10381192307692,"7.2-7.4":0.41524769230769,"8.2":0.072668346153846,"9.2":0.48791603846154,"10.1":1.0277380384615},B:{"12":0.026061,"13":0.026061,"14":0.022338,"15":0.022338,"16":0.03723,"17":0.07446,"18":1.585998,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0721386,"9":0.0040077,"10":0.0080154,"11":0.5971473,"5.5":0},N:{"10":0,"11":0.018831},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.156925},O:{"0":1.035705},Q:{"1.2":0.225972},S:{"2.5":0},H:{"0":0.41004340721649},L:{"0":71.776998}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/WF.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/WF.js new file mode 100644 index 0000000..b50db35 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/WF.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.015885,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.015885,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.015885,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.047655,"74":0,"75":0.047655,"76":0.06354,"77":0.015885,"78":2.47806,"79":1.375641,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.015885,"48":0,"49":0,"50":0,"51":0,"52":0.015885,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.079425,"61":0,"62":0,"63":0,"64":0.06354,"65":0,"66":0,"67":0,"68":0.616338,"69":0,"70":0.85779,"71":1.296216,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.371709,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.162027},G:{"8":0.0013711914191419,"3.2":0.0054847656765677,"4.0-4.1":0.0027423828382838,"4.2-4.3":0,"5.0-5.1":0.0082271485148515,"6.0-6.1":0.0027423828382838,"7.0-7.1":0.0095983399339934,"8.1-8.4":0.017825488448845,"9.0-9.2":0.016454297029703,"9.3":0.17414131023102,"10.0-10.2":0.060332422442244,"10.3":0.19470918151815,"11.0-11.2":0.16454297029703,"11.3-11.4":0.29343496369637,"12.0-12.1":0.41958457425743,"12.2-12.4":2.9700006138614,"13.0-13.1":4.3123970132013,"13.2":1.9635461122112,"13.3":3.0934078415842},I:{"3":0.0070139084507042,"4":0.030393603286385,_:"76","2.1":0,"2.2":0.0046759389671361,"2.3":0.0046759389671361,"4.1":0.053773298122066,"4.2-4.3":1.1759986502347,"4.4":0,"4.4.3-4.4.4":0.71541866197183},P:{"4":0.058870527597403,"5.0-5.4":0.17661158279221,"6.2-6.4":0.11774105519481,"7.2-7.4":0.058870527597403,"8.2":0.058870527597403,"9.2":0.058870527597403,"10.1":6.7230142516234},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.047655,"18":0.454311,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.061407},O:{"0":0.122814},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":66.472116}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/WS.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/WS.js new file mode 100644 index 0000000..07023c3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/WS.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.037048,"50":0,"51":0,"52":0,"53":0.003368,"54":0,"55":0.003368,"56":0.003368,"57":0,"58":0.006736,"59":0,"60":0,"61":0.003368,"62":0,"63":0.077464,"64":0,"65":0.013472,"66":0.003368,"67":0,"68":0.01684,"69":0.060624,"70":0.006736,"71":0.003368,"72":0,"73":0.05052,"74":0.003368,"75":0.037048,"76":0.026944,"77":0.03368,"78":2.721344,"79":1.326992,"80":0.006736,"81":0.006736},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.003368,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.003368,"46":0,"47":0.006736,"48":0,"49":0,"50":0,"51":0,"52":0.003368,"53":0,"54":0,"55":0,"56":0.013472,"57":0,"58":0,"59":0,"60":0.003368,"61":0,"62":0,"63":0,"64":0,"65":0.006736,"66":0.003368,"67":0.003368,"68":0.026944,"69":0.020208,"70":0.316592,"71":0.357008,"72":0.060624,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.013472,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.006736,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.013472,"9":0,"10":0,"11":0.003368,"12":0.013472,"13":0.077464,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.010104,"12.1":0.013472},G:{"8":0.00061582238223822,"3.2":0.0024632895289529,"4.0-4.1":0.0012316447644764,"4.2-4.3":0,"5.0-5.1":0.0036949342934293,"6.0-6.1":0.0012316447644764,"7.0-7.1":0.0043107566756676,"8.1-8.4":0.0080056909690969,"9.0-9.2":0.0073898685868587,"9.3":0.078209442544254,"10.0-10.2":0.027096184818482,"10.3":0.087446778277828,"11.0-11.2":0.073898685868587,"11.3-11.4":0.13178598979898,"12.0-12.1":0.1884416489649,"12.2-12.4":1.333871279928,"13.0-13.1":1.9367613921392,"13.2":0.88185765136514,"13.3":1.3892952943294},I:{"3":0.0020192676056338,"4":0.0087501596244131,_:"76","2.1":0,"2.2":0.0013461784037559,"2.3":0.0013461784037559,"4.1":0.015481051643192,"4.2-4.3":0.3385638685446,"4.4":0,"4.4.3-4.4.4":0.20596529577465},P:{"4":1.0330348243243,"5.0-5.4":0.061368405405405,"6.2-6.4":0.24547362162162,"7.2-7.4":0.24547362162162,"8.2":0.20456135135135,"9.2":0.99212255405405,"10.1":3.2729816216216},B:{"12":0.013472,"13":0.020208,"14":0.003368,"15":0.006736,"16":0.020208,"17":0.047152,"18":0.333432,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.003368,"9":0,"10":0.003368,"11":0.31996,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.079584},O:{"0":1.910016},Q:{"1.2":0.1658},S:{"2.5":0},H:{"0":1.0548298556701},L:{"0":74.520664}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/YE.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/YE.js new file mode 100644 index 0000000..48386a2 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/YE.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.004139,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.012417,"20":0,"21":0,"22":0,"23":0,"24":0.037251,"25":0,"26":0,"27":0,"28":0,"29":0.004139,"30":0.033112,"31":0.020695,"32":0.020695,"33":0.078641,"34":0,"35":0.024834,"36":0.008278,"37":0.004139,"38":0.004139,"39":0.004139,"40":0.008278,"41":0.004139,"42":0,"43":0.04139,"44":0.004139,"45":0,"46":0.004139,"47":0.004139,"48":0.008278,"49":0.062085,"50":0.004139,"51":0.008278,"52":0.008278,"53":0.008278,"54":0.020695,"55":0.020695,"56":0.074502,"57":0.004139,"58":0.008278,"59":0.004139,"60":0.008278,"61":0.008278,"62":0.012417,"63":0.045529,"64":0.012417,"65":0.008278,"66":0.028973,"67":0.016556,"68":0.033112,"69":0.053807,"70":0.020695,"71":0.033112,"72":0.053807,"73":0.066224,"74":0.08278,"75":0.111753,"76":0.12417,"77":0.157282,"78":2.81452,"79":2.574458,"80":0.004139,"81":0},C:{"2":0.012417,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.012417,"16":0,"17":0,"18":0.008278,"19":0,"20":0,"21":0.012417,"22":0,"23":0.012417,"24":0.004139,"25":0.020695,"26":0,"27":0.004139,"28":0,"29":0,"30":0.012417,"31":0.004139,"32":0,"33":0,"34":0.004139,"35":0,"36":0,"37":0,"38":0.008278,"39":0,"40":0,"41":0.004139,"42":0.004139,"43":0.028973,"44":0.004139,"45":0.004139,"46":0,"47":0.024834,"48":0.008278,"49":0.008278,"50":0.008278,"51":0.028973,"52":0.033112,"53":0.004139,"54":0.012417,"55":0.004139,"56":0.024834,"57":0.004139,"58":0.004139,"59":0.012417,"60":0.016556,"61":0.008278,"62":0.008278,"63":0.008278,"64":0.012417,"65":0.016556,"66":0.024834,"67":0.016556,"68":0.107614,"69":0.037251,"70":0.343537,"71":0.840217,"72":0.012417,"73":0.008278,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.008278,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.004139,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004139,"37":0.004139,"38":0,"39":0,"40":0,"41":0,"42":0.004139,"43":0.012417,"44":0,"45":0.020695,"46":0.016556,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.012417,"54":0.004139,"55":0.004139,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.004139,"64":0.004139,"9.5-9.6":0,"10.0-10.1":0.008278,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.037251},E:{"4":0,"5":0.012417,"6":0,"7":0.004139,"8":0,"9":0.004139,"10":0,"11":0.004139,"12":0.008278,"13":0.028973,_:"0","3.1":0,"3.2":0,"5.1":5.927048,"6.1":0,"7.1":0,"9.1":0.008278,"10.1":0.012417,"11.1":0.008278,"12.1":0.028973},G:{"8":0.00031039623962396,"3.2":0.0012415849584958,"4.0-4.1":0.00062079247924792,"4.2-4.3":0,"5.0-5.1":0.0018623774377438,"6.0-6.1":0.00062079247924792,"7.0-7.1":0.0021727736773677,"8.1-8.4":0.0040351511151115,"9.0-9.2":0.0037247548754875,"9.3":0.039420322432243,"10.0-10.2":0.013657434543454,"10.3":0.044076266026603,"11.0-11.2":0.037247548754875,"11.3-11.4":0.066424795279528,"12.0-12.1":0.094981249324932,"12.2-12.4":0.6723182550255,"13.0-13.1":0.97619617361736,"13.2":0.44448741514151,"13.3":0.70025391659166},I:{"3":0.0057076232394366,"4":0.024733034037559,_:"76","2.1":0,"2.2":0.0038050821596244,"2.3":0.0038050821596244,"4.1":0.043758444835681,"4.2-4.3":0.95697816314554,"4.4":0,"4.4.3-4.4.4":0.58217757042254},P:{"4":0.9524125,"5.0-5.4":0.16211276595745,"6.2-6.4":0.081056382978723,"7.2-7.4":0.22290505319149,"8.2":0.081056382978723,"9.2":0.46607420212766,"10.1":1.844032712766},B:{"12":0.004139,"13":0.016556,"14":0.004139,"15":0.008278,"16":0.024834,"17":0.045529,"18":0.173838,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.044149333333333,"9":0.0264896,"10":0.030904533333333,"11":0.097128533333333,"5.5":0},N:{"10":0,"11":0.011722},J:{"7":0,"10":0.005861},R:{_:"0"},M:{"0":0.304772},O:{"0":3.276299},Q:{"1.2":0.005861},S:{"2.5":0},H:{"0":1.9753785498282},L:{"0":66.47802}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/YT.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/YT.js new file mode 100644 index 0000000..f37e82a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/YT.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.005013,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.030078,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.020052,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.005013,"56":0,"57":0,"58":0.005013,"59":0,"60":0,"61":0,"62":0.055143,"63":0,"64":0,"65":0,"66":0.005013,"67":0.020052,"68":0,"69":0.05013,"70":0,"71":0.055143,"72":0.005013,"73":0.015039,"74":0.010026,"75":0.125325,"76":0.075195,"77":0.135351,"78":5.499261,"79":5.810067,"80":0.005013,"81":0},C:{"2":0,"3":0.005013,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.005013,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.005013,"43":0,"44":0,"45":0.030078,"46":0.010026,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.045117,"53":0.070182,"54":0.005013,"55":0,"56":0.025065,"57":0,"58":0,"59":0,"60":0,"61":0.030078,"62":0,"63":0,"64":0,"65":0,"66":0.005013,"67":0.020052,"68":0.125325,"69":0.481248,"70":0.431118,"71":4.516713,"72":0.015039,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.045117,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005013,"9":0.015039,"10":0.005013,"11":0,"12":0.005013,"13":1.318419,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.025065,"11.1":0.421092,"12.1":0.15039},G:{"8":0.00081868666866687,"3.2":0.0032747466746675,"4.0-4.1":0.0016373733373337,"4.2-4.3":0,"5.0-5.1":0.0049121200120012,"6.0-6.1":0.0016373733373337,"7.0-7.1":0.0057308066806681,"8.1-8.4":0.010642926692669,"9.0-9.2":0.0098242400240024,"9.3":0.10397320692069,"10.0-10.2":0.036022213421342,"10.3":0.1162535069507,"11.0-11.2":0.098242400240024,"11.3-11.4":0.17519894709471,"12.0-12.1":0.25051812061206,"12.2-12.4":1.7732753243324,"13.0-13.1":2.5747695729573,"13.2":1.172359309531,"13.3":1.8469571245125},I:{"3":0.00098655633802817,"4":0.0042750774647887,_:"76","2.1":0,"2.2":0.00065770422535211,"2.3":0.00065770422535211,"4.1":0.0075635985915493,"4.2-4.3":0.16541261267606,"4.4":0,"4.4.3-4.4.4":0.10062874647887},P:{"4":0.11312732444444,"5.0-5.4":0,"6.2-6.4":0.030852906666667,"7.2-7.4":0.041137208888889,"8.2":0.010284302222222,"9.2":0.16454883555556,"10.1":1.9540174222222},B:{"12":0.010026,"13":0.005013,"14":0.020052,"15":0.085221,"16":0.085221,"17":0.280728,"18":1.213146,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.015039,"9":0,"10":0,"11":0.320832,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.019948},O:{"0":0.074805},Q:{"1.2":0},S:{"2.5":0},H:{"0":0.27383942611684},L:{"0":64.327766}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ZA.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ZA.js new file mode 100644 index 0000000..523459d --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ZA.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.007467,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.002489,"27":0,"28":0.004978,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.002489,"37":0,"38":0,"39":0,"40":0.007467,"41":0,"42":0,"43":0.002489,"44":0,"45":0,"46":0.004978,"47":0,"48":0.002489,"49":0.054758,"50":0.002489,"51":0,"52":0,"53":0.002489,"54":0.002489,"55":0.012445,"56":0.002489,"57":0.002489,"58":0.007467,"59":0.002489,"60":0.002489,"61":0.002489,"62":0.004978,"63":0.009956,"64":0.002489,"65":0.004978,"66":0.004978,"67":0.007467,"68":0.007467,"69":0.017423,"70":0.009956,"71":0.012445,"72":0.012445,"73":0.012445,"74":0.019912,"75":0.022401,"76":0.032357,"77":0.044802,"78":1.739811,"79":1.162363,"80":0.007467,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.004978,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.002489,"44":0,"45":0,"46":0,"47":0.002489,"48":0.002489,"49":0,"50":0.002489,"51":0,"52":0.017423,"53":0,"54":0,"55":0,"56":0.002489,"57":0.002489,"58":0,"59":0.002489,"60":0.004978,"61":0.002489,"62":0,"63":0,"64":0.002489,"65":0.002489,"66":0.004978,"67":0.002489,"68":0.059736,"69":0.007467,"70":0.09956,"71":0.233966,"72":0.009956,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.004978,"25":0.002489,"26":0.02489,"27":0.002489,"28":0.014934,"29":0.002489,"30":0.007467,"31":0.002489,"32":0.014934,"33":0.004978,"34":0,"35":0.054758,"36":0.002489,"37":0.002489,"38":0.012445,"39":0,"40":0,"41":0,"42":0.007467,"43":0,"44":0.004978,"45":0.097071,"46":0.044802,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.012445,"54":0.004978,"55":0.017423,"56":0.002489,"57":0,"58":0,"60":0,"62":0,"63":0.002489,"64":0.004978,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.029868},E:{"4":0,"5":0,"6":0,"7":0,"8":0.007467,"9":0.004978,"10":0.002489,"11":0.004978,"12":0.027379,"13":0.293702,_:"0","3.1":0,"3.2":0,"5.1":0.261345,"6.1":0,"7.1":0.002489,"9.1":0.004978,"10.1":0.009956,"11.1":0.022401,"12.1":0.054758},G:{"8":0.0012160531053105,"3.2":0.0048642124212421,"4.0-4.1":0.0024321062106211,"4.2-4.3":0,"5.0-5.1":0.0072963186318632,"6.0-6.1":0.0024321062106211,"7.0-7.1":0.0085123717371737,"8.1-8.4":0.015808690369037,"9.0-9.2":0.014592637263726,"9.3":0.15443874437444,"10.0-10.2":0.053506336633663,"10.3":0.1726795409541,"11.0-11.2":0.14592637263726,"11.3-11.4":0.26023536453645,"12.0-12.1":0.37211225022502,"12.2-12.4":2.6339710261026,"13.0-13.1":3.8244870162016,"13.2":1.7413880468047,"13.3":2.7434158055806},I:{"3":0.00078310211267606,"4":0.0033934424882629,_:"76","2.1":0,"2.2":0.00052206807511737,"2.3":0.00052206807511737,"4.1":0.0060037828638498,"4.2-4.3":0.13130012089202,"4.4":0,"4.4.3-4.4.4":0.079876415492958},P:{"4":1.3601103002114,"5.0-5.4":0.1124903255814,"6.2-6.4":0.14316950528541,"7.2-7.4":0.62380998731501,"8.2":0.19430147145877,"9.2":0.97150735729387,"10.1":6.2380998731501},B:{"12":0.007467,"13":0.007467,"14":0.009956,"15":0.012445,"16":0.017423,"17":0.04978,"18":0.296191,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01251227027027,"9":0.0025024540540541,"10":0.020019632432432,"11":0.42791964324324,"5.5":0},N:{"10":0.012518333333333,"11":0.10014666666667},J:{"7":0,"10":0.07511},R:{_:"0"},M:{"0":0.277907},O:{"0":0.691012},Q:{"1.2":0.037555},S:{"2.5":0.015022},H:{"0":5.3260862353952},L:{"0":61.48628}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ZM.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ZM.js new file mode 100644 index 0000000..7e4e8d4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ZM.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.002669,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.005338,"37":0.002669,"38":0,"39":0.005338,"40":0.008007,"41":0,"42":0.002669,"43":0.013345,"44":0,"45":0,"46":0.002669,"47":0,"48":0,"49":0.005338,"50":0.008007,"51":0.005338,"52":0,"53":0.002669,"54":0,"55":0.008007,"56":0,"57":0,"58":0.013345,"59":0.002669,"60":0.018683,"61":0.002669,"62":0.005338,"63":0.088077,"64":0.005338,"65":0.010676,"66":0.002669,"67":0.008007,"68":0.005338,"69":0.045373,"70":0.010676,"71":0.008007,"72":0.008007,"73":0.016014,"74":0.024021,"75":0.029359,"76":0.032028,"77":0.045373,"78":1.131656,"79":0.899453,"80":0.005338,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.002669,"22":0,"23":0.002669,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.002669,"36":0,"37":0,"38":0,"39":0,"40":0.002669,"41":0.002669,"42":0,"43":0.005338,"44":0.005338,"45":0.002669,"46":0,"47":0.005338,"48":0.005338,"49":0,"50":0,"51":0,"52":0.010676,"53":0,"54":0.005338,"55":0.002669,"56":0.002669,"57":0.002669,"58":0.002669,"59":0.002669,"60":0.005338,"61":0.002669,"62":0,"63":0.002669,"64":0.002669,"65":0.002669,"66":0.010676,"67":0.005338,"68":0.066725,"69":0.013345,"70":0.136119,"71":0.352308,"72":0.032028,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0.002669,"15":0.002669,"16":0.005338,"17":0.002669,"18":0,"19":0.005338,"20":0.02669,"21":0.002669,"22":0.002669,"23":0.013345,"24":0,"25":0,"26":0.002669,"27":0,"28":0.005338,"29":0,"30":0.008007,"31":0,"32":0.002669,"33":0.005338,"34":0.002669,"35":0.005338,"36":0.005338,"37":0.002669,"38":0.010676,"39":0,"40":0.002669,"41":0,"42":0.010676,"43":0.002669,"44":0.002669,"45":0.056049,"46":0.02669,"47":0,"48":0.002669,"49":0,"50":0,"51":0.002669,"52":0.002669,"53":0.024021,"54":0.016014,"55":0.029359,"56":0.002669,"57":0,"58":0.002669,"60":0.002669,"62":0.005338,"63":0.016014,"64":0.02669,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.002669,"11.1":0,"11.5":0,"11.6":0.002669,"12.1":0.178823},E:{"4":0,"5":0,"6":0,"7":0,"8":0.005338,"9":0,"10":0,"11":0.008007,"12":0.021352,"13":0.173485,_:"0","3.1":0,"3.2":0,"5.1":0.37366,"6.1":0,"7.1":0,"9.1":0,"10.1":0.013345,"11.1":0.008007,"12.1":0.085408},G:{"8":0.00040149584958496,"3.2":0.0016059833983398,"4.0-4.1":0.00080299169916992,"4.2-4.3":0,"5.0-5.1":0.0024089750975098,"6.0-6.1":0.00080299169916992,"7.0-7.1":0.0028104709470947,"8.1-8.4":0.0052194460446045,"9.0-9.2":0.0048179501950195,"9.3":0.05098997289729,"10.0-10.2":0.017665817381738,"10.3":0.057012410641064,"11.0-11.2":0.048179501950195,"11.3-11.4":0.085920111811181,"12.0-12.1":0.122857729973,"12.2-12.4":0.86964001020102,"13.0-13.1":1.2627044469447,"13.2":0.57494205660566,"13.3":0.90577463666367},I:{"3":0.0041361338028169,"4":0.017923246478873,_:"76","2.1":0,"2.2":0.0027574225352113,"2.3":0.0027574225352113,"4.1":0.03171035915493,"4.2-4.3":0.69349176760563,"4.4":0,"4.4.3-4.4.4":0.42188564788732},P:{"4":1.038917246875,"5.0-5.4":0.092576784375,"6.2-6.4":0.082290475,"7.2-7.4":0.18515356875,"8.2":0.051431546875,"9.2":0.6171785625,"10.1":1.224070815625},B:{"12":0.045373,"13":0.048042,"14":0.037366,"15":0.040035,"16":0.018683,"17":0.085408,"18":0.296259,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.067737379310345,"9":0.0028223908045977,"10":0.025401517241379,"11":0.14958671264368,"5.5":0},N:{"10":0.078599455696203,"11":0.8084515443038},J:{"7":0,"10":0.329895},R:{_:"0"},M:{"0":0.21993},O:{"0":4.120022},Q:{"1.2":0.139289},S:{"2.5":0.065979},H:{"0":26.707110116838},L:{"0":41.225651}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/ZW.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/ZW.js new file mode 100644 index 0000000..aca189a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/ZW.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.011114,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.005557,"34":0.005557,"35":0,"36":0.044456,"37":0,"38":0.011114,"39":0,"40":0.022228,"41":0,"42":0.011114,"43":0.005557,"44":0,"45":0,"46":0.016671,"47":0.005557,"48":0.005557,"49":0.072241,"50":0,"51":0.005557,"52":0,"53":0.005557,"54":0,"55":0.05557,"56":0,"57":0.005557,"58":0.022228,"59":0,"60":0.116697,"61":0.011114,"62":0.011114,"63":0.261179,"64":0.005557,"65":0.033342,"66":0.022228,"67":0.022228,"68":0.016671,"69":0.127811,"70":0.033342,"71":0.033342,"72":0.022228,"73":0.050013,"74":0.144482,"75":0.061127,"76":0.133368,"77":0.188938,"78":6.151599,"79":4.00104,"80":0.038899,"81":0.005557},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.005557,"42":0.005557,"43":0.011114,"44":0.005557,"45":0.011114,"46":0,"47":0.016671,"48":0.016671,"49":0.005557,"50":0,"51":0,"52":0.027785,"53":0,"54":0.011114,"55":0,"56":0.011114,"57":0.016671,"58":0.005557,"59":0.005557,"60":0.016671,"61":0.005557,"62":0.005557,"63":0.005557,"64":0.005557,"65":0.022228,"66":0.022228,"67":0.016671,"68":0.133368,"69":0.033342,"70":0.805765,"71":1.717113,"72":0.100026,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.005557,"17":0,"18":0,"19":0,"20":0.005557,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.011114,"29":0.005557,"30":0.005557,"31":0,"32":0.005557,"33":0,"34":0.005557,"35":0.011114,"36":0.011114,"37":0,"38":0.005557,"39":0,"40":0.005557,"41":0,"42":0.005557,"43":0,"44":0,"45":0.072241,"46":0.038899,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.038899,"54":0.016671,"55":0.072241,"56":0.005557,"57":0,"58":0.011114,"60":0.005557,"62":0.016671,"63":0.044456,"64":0.050013,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.288964},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.005557,"10":0.005557,"11":0.011114,"12":0.161153,"13":1.005817,_:"0","3.1":0,"3.2":0,"5.1":8.102106,"6.1":0,"7.1":0,"9.1":0.005557,"10.1":0.061127,"11.1":0.061127,"12.1":0.266736},G:{"8":0.00061000770077008,"3.2":0.0024400308030803,"4.0-4.1":0.0012200154015402,"4.2-4.3":0,"5.0-5.1":0.0036600462046205,"6.0-6.1":0.0012200154015402,"7.0-7.1":0.0042700539053905,"8.1-8.4":0.007930100110011,"9.0-9.2":0.0073200924092409,"9.3":0.0774709779978,"10.0-10.2":0.026840338833883,"10.3":0.086621093509351,"11.0-11.2":0.073200924092409,"11.3-11.4":0.1305416479648,"12.0-12.1":0.18666235643564,"12.2-12.4":1.321276679868,"13.0-13.1":1.9184742189219,"13.2":0.87353102750275,"13.3":1.3761773729373},I:{"3":0.0062592570422535,"4":0.027123447183099,_:"76","2.1":0,"2.2":0.004172838028169,"2.3":0.004172838028169,"4.1":0.047987637323944,"4.2-4.3":1.0494687640845,"4.4":0,"4.4.3-4.4.4":0.63844421830986},P:{"4":0.98130953068592,"5.0-5.4":0.02065914801444,"6.2-6.4":0.02065914801444,"7.2-7.4":0.17560275812274,"8.2":0.041318296028881,"9.2":0.2065914801444,"10.1":1.4151516389892},B:{"12":0.116697,"13":0.061127,"14":0.077798,"15":0.094469,"16":0.083355,"17":0.211166,"18":1.011374,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.038899,"9":0,"10":0.038899,"11":0.461231,"5.5":0},N:{"10":0.0639792,"11":0.4158648},J:{"7":0,"10":0.062202},R:{_:"0"},M:{"0":0.17772},O:{"0":1.448418},Q:{"1.2":0.026658},S:{"2.5":0},H:{"0":12.602210701031},L:{"0":33.79421}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-af.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-af.js new file mode 100644 index 0000000..6c5388a --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-af.js @@ -0,0 +1 @@ +module.exports={D:{"11":0.007706,"19":0.050089,"24":0.150267,"26":0.034677,"28":0.007706,"29":0.007706,"30":0.053942,"31":0.015412,"32":0.003853,"33":0.107884,"34":0.007706,"35":0.096325,"36":0.015412,"37":0.007706,"38":0.011559,"39":0.007706,"40":0.034677,"41":0.007706,"42":0.003853,"43":0.227327,"44":0.007706,"45":0.007706,"46":0.015412,"47":0.019265,"48":0.015412,"49":0.427683,"50":0.015412,"51":0.019265,"52":0.011559,"53":0.023118,"54":0.057795,"55":0.073207,"56":0.258151,"57":0.015412,"58":0.042383,"59":0.026971,"60":0.150267,"61":0.046236,"62":0.03853,"63":0.134855,"64":0.015412,"65":0.046236,"66":0.019265,"67":0.050089,"68":0.023118,"69":0.150267,"70":0.11559,"71":0.150267,"72":0.111737,"73":0.131002,"74":0.265857,"75":0.165679,"76":0.223474,"77":0.296681,"78":9.90221,"79":9.123904,"80":0.034677,"81":0.011559,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 25 27"},C:{"2":0.046236,"15":0.050089,"18":0.050089,"21":0.053942,"23":0.046236,"25":0.096325,"30":0.057795,"34":0.003853,"38":0.003853,"39":0.003853,"40":0.007706,"41":0.003853,"42":0.007706,"43":0.030824,"44":0.011559,"45":0.011559,"46":0.003853,"47":0.034677,"48":0.046236,"49":0.007706,"50":0.011559,"51":0.057795,"52":0.150267,"53":0.011559,"54":0.023118,"55":0.030824,"56":0.034677,"57":0.019265,"58":0.007706,"59":0.007706,"60":0.023118,"61":0.007706,"62":0.007706,"63":0.011559,"64":0.019265,"65":0.019265,"66":0.026971,"67":0.023118,"68":0.100178,"69":0.065501,"70":0.73207,"71":2.334918,"72":0.123296,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 35 36 37 73 3.5 3.6"},F:{"36":0.011559,"42":0.003853,"43":0.046236,"49":0.003853,"53":0.007706,"54":0.003853,"55":0.007706,"56":0.019265,"57":0.007706,"58":0.007706,"60":0.007706,"62":0.023118,"63":0.100178,"64":0.142561,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 44 45 46 47 48 50 51 52 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0.050089,"12.1":0.023118},E:{"4":0,"5":0.046236,"7":0.003853,"8":0.034677,"9":0.023118,"10":0.019265,"11":0.03853,"12":0.111737,"13":0.766747,_:"0 6 3.1 3.2 7.1","5.1":2.438949,"6.1":0.003853,"9.1":0.023118,"10.1":0.088619,"11.1":0.111737,"12.1":0.262004},G:{"8":0.00063996669666967,"3.2":0.0025598667866787,"4.0-4.1":0.0012799333933393,"4.2-4.3":0,"5.0-5.1":0.003839800180018,"6.0-6.1":0.0012799333933393,"7.0-7.1":0.0044797668766877,"8.1-8.4":0.0083195670567057,"9.0-9.2":0.007679600360036,"9.3":0.081275770477048,"10.0-10.2":0.028158534653465,"10.3":0.090875270927093,"11.0-11.2":0.07679600360036,"11.3-11.4":0.13695287308731,"12.0-12.1":0.19582980918092,"12.2-12.4":1.3861678649865,"13.0-13.1":2.0126952610261,"13.2":0.91643230963096,"13.3":1.4437648676868},I:{"3":0.001298661971831,"4":0.0056275352112676,_:"76","2.1":0,"2.2":0.00086577464788732,"2.3":0.00086577464788732,"4.1":0.0099564084507042,"4.2-4.3":0.21774232394366,"4.4":0,"4.4.3-4.4.4":0.13246352112676},P:{"4":0.72070905707196,"5.0-5.4":0.061775062034739,"6.2-6.4":0.072070905707196,"7.2-7.4":0.26769193548387,"8.2":0.072070905707196,"9.2":0.45301712158809,"10.1":2.4915941687345},B:{"12":0.034677,"13":0.023118,"14":0.023118,"15":0.023118,"16":0.042383,"17":0.146414,"18":0.747482,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.21790553003534,"9":0.1307433180212,"10":0.14262907420495,"11":0.62994507773852,_:"6 7 5.5"},N:{"10":0.024588,"11":0.147528},J:{"7":0,"10":0.049176},R:{_:"0"},M:{"0":0.258174},O:{"0":1.383075},Q:{"1.2":0.030735},S:{"2.5":0.018441},H:{"0":9.2414969690722},L:{"0":41.261374}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-an.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-an.js new file mode 100644 index 0000000..90a90e4 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-an.js @@ -0,0 +1 @@ +module.exports={D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.20373,"76":0,"77":0,"78":16.644741,"79":8.678898,"80":0,"81":0},C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.81492,"71":2.553416,"72":0,"73":0,"3.5":0,"3.6":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":5.310562,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.101865,"12.1":0.101865},G:{"8":0.004070096409641,"3.2":0.016280385638564,"4.0-4.1":0.0081401928192819,"4.2-4.3":0,"5.0-5.1":0.024420578457846,"6.0-6.1":0.0081401928192819,"7.0-7.1":0.028490674867487,"8.1-8.4":0.052911253325333,"9.0-9.2":0.048841156915692,"9.3":0.5169022440244,"10.0-10.2":0.1790842420242,"10.3":0.57795369016902,"11.0-11.2":0.48841156915692,"11.3-11.4":0.87100063166317,"12.0-12.1":1.2454495013501,"12.2-12.4":8.8158288232823,"13.0-13.1":12.800453208321,"13.2":5.8283780586059,"13.3":9.18213750015},I:{"3":0,"4":0,_:"76","2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.1553156,"9.2":0,"10.1":0.6212624},B:{"12":0,"13":0,"14":2.145956,"15":0.509325,"16":0,"17":0.101865,"18":1.432901,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":5.718022,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0},O:{"0":0},Q:{"1.2":0},S:{"2.5":0},H:{"0":0},L:{"0":12.002192}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-as.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-as.js new file mode 100644 index 0000000..222586f --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-as.js @@ -0,0 +1 @@ +module.exports={D:{"11":0.003689,"13":0.011067,"26":0.003689,"30":0.007378,"31":0.025823,"32":0.003689,"33":0.007378,"34":0.011067,"36":0.011067,"38":0.025823,"40":0.007378,"41":0.011067,"42":0.007378,"43":0.014756,"45":0.011067,"46":0.003689,"47":0.011067,"48":0.03689,"49":0.339388,"50":0.007378,"51":0.011067,"52":0.003689,"53":0.025823,"54":0.011067,"55":0.084847,"56":0.018445,"57":0.044268,"58":0.033201,"59":0.018445,"60":0.014756,"61":0.022134,"62":0.040579,"63":0.512771,"64":0.014756,"65":0.040579,"66":0.025823,"67":0.051646,"68":0.033201,"69":0.317254,"70":0.125426,"71":0.18445,"72":0.191828,"73":0.18445,"74":0.247163,"75":0.225029,"76":0.210273,"77":0.320943,"78":11.893336,"79":11.033799,"80":0.040579,"81":0.014756,_:"4 5 6 7 8 9 10 12 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 35 37 39 44"},C:{"33":0.007378,"35":0.047957,"36":0.007378,"43":0.011067,"44":0.003689,"45":0.007378,"47":0.025823,"48":0.018445,"49":0.003689,"50":0.003689,"51":0.007378,"52":0.11067,"53":0.007378,"54":0.011067,"55":0.007378,"56":0.029512,"57":0.007378,"58":0.007378,"59":0.007378,"60":0.014756,"61":0.007378,"62":0.007378,"63":0.014756,"64":0.022134,"65":0.077469,"66":0.051646,"67":0.018445,"68":0.059024,"69":0.047957,"70":0.464814,"71":1.54938,"72":0.095914,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 37 38 39 40 41 42 46 73 3.5 3.6"},F:{"36":0.003689,"56":0.003689,"57":0.007378,"58":0.011067,"60":0.003689,"62":0.003689,"63":0.011067,"64":0.03689,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.011067},E:{"4":0,"8":0.011067,"9":0.003689,"10":0.014756,"11":0.025823,"12":0.092225,"13":0.929628,_:"0 5 6 7 3.1 3.2 6.1 7.1","5.1":0.711977,"9.1":0.011067,"10.1":0.051646,"11.1":0.092225,"12.1":0.261919},G:{"8":0.00069869756975698,"3.2":0.0027947902790279,"4.0-4.1":0.001397395139514,"4.2-4.3":0,"5.0-5.1":0.0041921854185419,"6.0-6.1":0.001397395139514,"7.0-7.1":0.0048908829882988,"8.1-8.4":0.0090830684068407,"9.0-9.2":0.0083843708370837,"9.3":0.088734591359136,"10.0-10.2":0.030742693069307,"10.3":0.099215054905491,"11.0-11.2":0.083843708370837,"11.3-11.4":0.14952127992799,"12.0-12.1":0.21380145634563,"12.2-12.4":1.5133789360936,"13.0-13.1":2.1974038568857,"13.2":1.000534919892,"13.3":1.5762617173717},I:{"3":0.0010222042253521,"4":0.0044295516431925,_:"76","2.1":0,"2.2":0.00068146948356808,"2.3":0.00068146948356808,"4.1":0.0078368990610329,"4.2-4.3":0.17138957511737,"4.4":0,"4.4.3-4.4.4":0.10426483098592},P:{"4":0.5405319198895,"5.0-5.4":0.03059614640884,"6.2-6.4":0.050993577348066,"7.2-7.4":0.17337816298343,"8.2":0.071391008287293,"9.2":0.40794861878453,"10.1":2.3966981353591},B:{"12":0.007378,"13":0.007378,"14":0.011067,"15":0.011067,"16":0.022134,"17":0.099603,"18":0.796824,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.008129462962963,"7":0.012194194444444,"8":0.12194194444444,"9":0.020323657407407,"10":0.032517851851852,"11":1.1218658888889,_:"5.5"},N:{"10":0,"11":0.044177},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.12622},O:{"0":6.367799},Q:{"1.2":0.448081},S:{"2.5":0.454392},H:{"0":1.5713847817869},L:{"0":43.669333}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-eu.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-eu.js new file mode 100644 index 0000000..d9064d0 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-eu.js @@ -0,0 +1 @@ +module.exports={D:{"26":0.005235,"33":0.02094,"34":0.01047,"36":0.005235,"38":0.026175,"40":0.02094,"41":0.005235,"43":0.01047,"46":0.01047,"47":0.005235,"48":0.03141,"49":0.874245,"50":0.005235,"51":0.015705,"52":0.005235,"53":0.026175,"54":0.07329,"55":0.015705,"56":0.02094,"57":0.015705,"58":0.026175,"59":0.01047,"60":0.03141,"61":0.07329,"62":0.02094,"63":0.088995,"64":0.015705,"65":0.057585,"66":0.05235,"67":0.07329,"68":0.05235,"69":0.08376,"70":0.225105,"71":0.266985,"72":0.25128,"73":0.19893,"74":0.12564,"75":0.2094,"76":0.266985,"77":0.382155,"78":15.574125,"79":12.370305,"80":0.03141,"81":0.01047,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 37 39 42 44 45"},C:{"21":0.01047,"38":0.02094,"43":0.01047,"44":0.005235,"45":0.026175,"46":0.005235,"47":0.015705,"48":0.047115,"49":0.01047,"50":0.01047,"51":0.01047,"52":0.26175,"53":0.01047,"54":0.01047,"55":0.015705,"56":0.03141,"57":0.01047,"58":0.01047,"59":0.01047,"60":0.078525,"61":0.015705,"62":0.015705,"63":0.03141,"64":0.04188,"65":0.05235,"66":0.05235,"67":0.04188,"68":0.235575,"69":0.12564,"70":1.37157,"71":4.34505,"72":0.036645,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 73 3.5 3.6"},F:{"31":0.026175,"36":0.036645,"40":0.005235,"56":0.015705,"57":0.015705,"58":0.015705,"62":0.005235,"63":0.01047,"64":0.109935,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 60 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01047},E:{"4":0,"8":0.01047,"9":0.015705,"10":0.02094,"11":0.04188,"12":0.193695,"13":3.303285,_:"0 5 6 7 3.1 3.2 6.1 7.1","5.1":0.361215,"9.1":0.036645,"10.1":0.11517,"11.1":0.246045,"12.1":0.59679},G:{"8":0.0012452190219022,"3.2":0.0049808760876088,"4.0-4.1":0.0024904380438044,"4.2-4.3":0,"5.0-5.1":0.0074713141314131,"6.0-6.1":0.0024904380438044,"7.0-7.1":0.0087165331533153,"8.1-8.4":0.016187847284728,"9.0-9.2":0.014942628262826,"9.3":0.15814281578158,"10.0-10.2":0.054789636963696,"10.3":0.17682110111011,"11.0-11.2":0.14942628262826,"11.3-11.4":0.26647687068707,"12.0-12.1":0.38103702070207,"12.2-12.4":2.6971444014401,"13.0-13.1":3.9162138238824,"13.2":1.7831536393639,"13.3":2.8092141134113},I:{"3":0.00055367957746479,"4":0.0023992781690141,_:"76","2.1":0,"2.2":0.00036911971830986,"2.3":0.00036911971830986,"4.1":0.0042448767605634,"4.2-4.3":0.09283360915493,"4.4":0,"4.4.3-4.4.4":0.056475316901408},P:{"4":0.21881535626536,"5.0-5.4":0.020839557739558,"6.2-6.4":0.020839557739558,"7.2-7.4":0.072938452088452,"8.2":0.041679115479115,"9.2":0.27091425061425,"10.1":3.5531445945946},B:{"12":0.005235,"13":0.01047,"14":0.026175,"15":0.02094,"16":0.057585,"17":0.21987,"18":2.54421,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.016149900849858,"7":0.016149900849858,"8":0.10228270538244,"9":0.032299801699717,"10":0.043066402266289,"11":1.6903562889518,_:"5.5"},N:{"10":0,"11":0.071475},J:{"7":0,"10":0.00953},R:{_:"0"},M:{"0":0.29543},O:{"0":0.26684},Q:{"1.2":0.014295},S:{_:"2.5"},H:{"0":0.34736195017182},L:{"0":30.26402}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-na.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-na.js new file mode 100644 index 0000000..e0eff14 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-na.js @@ -0,0 +1 @@ +module.exports={D:{"25":0.00438,"35":0.00438,"37":0.00438,"38":0.00876,"40":0.0219,"41":0.01314,"47":0.00876,"48":0.05256,"49":0.44238,"50":0.00438,"51":0.00876,"53":0.01314,"54":0.00876,"55":0.01314,"56":0.04818,"57":0.1752,"58":0.0219,"59":0.01752,"60":0.03942,"61":0.02628,"62":0.01752,"63":0.1095,"64":0.01314,"65":0.07446,"66":0.03942,"67":0.08322,"68":0.12702,"69":0.07884,"70":0.11388,"71":0.14454,"72":0.18834,"73":0.14454,"74":0.27594,"75":0.42486,"76":0.42048,"77":0.5913,"78":13.5342,"79":9.49146,"80":0.03504,"81":0.02628,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 36 39 42 43 44 45 46 52"},C:{"11":0.00876,"21":0.01314,"30":0.00438,"31":0.00876,"38":0.00876,"43":0.00876,"44":0.01752,"45":0.01752,"47":0.01314,"48":0.03066,"50":0.00876,"51":0.00438,"52":0.09198,"53":0.00438,"54":0.02628,"55":0.00876,"56":0.01314,"57":0.01314,"58":0.00876,"59":0.00876,"60":0.03504,"61":0.01752,"62":0.00876,"63":0.01752,"64":0.0219,"65":0.03066,"66":0.02628,"67":0.0219,"68":0.13578,"69":0.07446,"70":0.69642,"71":2.18124,"72":0.01752,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 32 33 34 35 36 37 39 40 41 42 46 49 73 3.5 3.6"},F:{"56":0.00438,"57":0.00438,"58":0.00438,"63":0.00438,"64":0.02628,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 60 62 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00438},E:{"4":0,"5":0.00438,"8":0.07446,"9":0.01752,"10":0.0219,"11":0.05256,"12":0.17082,"13":4.04274,_:"0 6 7 3.1 3.2 6.1 7.1","5.1":0.46866,"9.1":0.08322,"10.1":0.1533,"11.1":0.30222,"12.1":0.60882},G:{"8":0.0027046144614461,"3.2":0.010818457845785,"4.0-4.1":0.0054092289228923,"4.2-4.3":0,"5.0-5.1":0.016227686768677,"6.0-6.1":0.0054092289228923,"7.0-7.1":0.018932301230123,"8.1-8.4":0.0351599879988,"9.0-9.2":0.032455373537354,"9.3":0.34348603660366,"10.0-10.2":0.11900303630363,"10.3":0.38405525352535,"11.0-11.2":0.32455373537354,"11.3-11.4":0.57878749474947,"12.0-12.1":0.82761202520252,"12.2-12.4":5.8581949234923,"13.0-13.1":8.5060124812481,"13.2":3.8730079087909,"13.3":6.1016102250225},I:{"3":0.00045514084507042,"4":0.0019722769953052,_:"76","2.1":0,"2.2":0.00030342723004695,"2.3":0.00030342723004695,"4.1":0.0034894131455399,"4.2-4.3":0.076311948356808,"4.4":0,"4.4.3-4.4.4":0.046424366197183},P:{"4":0.06363460815047,"5.0-5.4":0.010605768025078,"6.2-6.4":0.020839557739558,"7.2-7.4":0.06363460815047,"8.2":0.021211536050157,"9.2":0.22272112852665,"10.1":2.8741631347962},B:{"12":0.00876,"13":0.01314,"14":0.0219,"15":0.0219,"16":0.05694,"17":0.17958,"18":3.1536,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.017762371541502,"7":0.0044405928853755,"8":0.10213363636364,"9":0.079930671936759,"10":0.026643557312253,"11":2.0160291699605,_:"5.5"},N:{"10":0,"11":0.01686},J:{"7":0,"10":0.01124},R:{_:"0"},M:{"0":0.37092},O:{"0":0.20232},Q:{"1.2":0.02248},S:{_:"2.5"},H:{"0":0.14365762886598},L:{"0":25.38368}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-oc.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-oc.js new file mode 100644 index 0000000..bb6e511 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-oc.js @@ -0,0 +1 @@ +module.exports={D:{"26":0.009096,"34":0.009096,"38":0.031836,"40":0.02274,"45":0.004548,"48":0.009096,"49":0.50028,"50":0.004548,"51":0.004548,"52":0.004548,"53":0.031836,"54":0.018192,"55":0.050028,"56":0.027288,"57":0.040932,"58":0.027288,"59":0.031836,"60":0.031836,"61":0.031836,"62":0.031836,"63":0.495732,"64":0.027288,"65":0.072768,"66":0.036384,"67":0.086412,"68":0.100056,"69":0.218304,"70":0.131892,"71":0.127344,"72":0.18192,"73":0.309264,"74":0.236496,"75":0.345648,"76":0.372936,"77":0.63672,"78":14.617272,"79":9.919188,"80":0.031836,"81":0.004548,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 41 42 43 44 46 47"},C:{"21":0.009096,"45":0.009096,"47":0.009096,"48":0.027288,"50":0.009096,"52":0.081864,"54":0.009096,"56":0.013644,"58":0.004548,"59":0.004548,"60":0.027288,"62":0.004548,"63":0.013644,"64":0.013644,"65":0.02274,"66":0.031836,"67":0.036384,"68":0.104604,"69":0.072768,"70":0.72768,"71":2.210328,"72":0.036384,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 51 53 55 57 61 73 3.5 3.6"},F:{"36":0.009096,"62":0.009096,"64":0.02274,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.004548},E:{"4":0,"8":0.031836,"9":0.013644,"10":0.031836,"11":0.059124,"12":0.186468,"13":4.561644,_:"0 5 6 7 3.1 3.2 7.1","5.1":0.018192,"6.1":0.009096,"9.1":0.054576,"10.1":0.163728,"11.1":0.277428,"12.1":0.654912},G:{"8":0.0025986830683068,"3.2":0.010394732273227,"4.0-4.1":0.0051973661366137,"4.2-4.3":0,"5.0-5.1":0.015592098409841,"6.0-6.1":0.0051973661366137,"7.0-7.1":0.018190781478148,"8.1-8.4":0.033782879887989,"9.0-9.2":0.031184196819682,"9.3":0.33003274967497,"10.0-10.2":0.1143420550055,"10.3":0.36901299569957,"11.0-11.2":0.31184196819682,"11.3-11.4":0.55611817661766,"12.0-12.1":0.79519701890189,"12.2-12.4":5.6287475259526,"13.0-13.1":8.172858249825,"13.2":3.7213141538154,"13.3":5.8626290021002},I:{"3":0.00080628169014085,"4":0.0034938873239437,_:"76","2.1":0,"2.2":0.00053752112676056,"2.3":0.00053752112676056,"4.1":0.0061814929577465,"4.2-4.3":0.13518656338028,"4.4":0,"4.4.3-4.4.4":0.082240732394366},P:{"4":0.19348260465116,"5.0-5.4":0.021498067183463,"6.2-6.4":0.021498067183463,"7.2-7.4":0.064494201550388,"8.2":0.053745167958656,"9.2":0.25797680620155,"10.1":3.5256830180879},B:{"12":0.009096,"13":0.013644,"14":0.02274,"15":0.018192,"16":0.06822,"17":0.200112,"18":2.924364,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01439015625,"9":0.02398359375,"10":0.01439015625,"11":1.78917609375,_:"6 7 5.5"},N:{"10":0,"11":0.021808},J:{"7":0,"10":0},R:{_:"0"},M:{"0":0.35438},O:{"0":0.35438},Q:{"1.2":0.125396},S:{_:"2.5"},H:{"0":0.32001928522337},L:{"0":23.71526}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-sa.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-sa.js new file mode 100644 index 0000000..daf93d5 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-sa.js @@ -0,0 +1 @@ +module.exports={D:{"34":0.006406,"36":0.012812,"38":0.03203,"43":0.012812,"48":0.006406,"49":0.595758,"51":0.012812,"53":0.03203,"54":0.012812,"55":0.006406,"56":0.012812,"57":0.006406,"58":0.038436,"59":0.006406,"60":0.019218,"61":0.025624,"62":0.025624,"63":0.06406,"64":0.012812,"65":0.051248,"66":0.038436,"67":0.09609,"68":0.044842,"69":0.083278,"70":0.19218,"71":0.249834,"72":0.211398,"73":0.204992,"74":0.179368,"75":0.230616,"76":0.281864,"77":0.435608,"78":26.988478,"79":21.543378,"80":0.057654,"81":0.019218,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 42 44 45 46 47 50 52"},C:{"45":0.006406,"47":0.012812,"48":0.019218,"50":0.083278,"52":0.140932,"55":0.006406,"56":0.019218,"57":0.006406,"59":0.006406,"60":0.038436,"61":0.012812,"63":0.019218,"64":0.03203,"65":0.03203,"66":0.03203,"67":0.019218,"68":0.089684,"69":0.051248,"70":0.749502,"71":2.235694,"72":0.038436,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 51 53 54 58 62 73 3.5 3.6"},F:{"56":0.012812,"57":0.006406,"58":0.012812,"63":0.012812,"64":0.22421,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 60 62 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.03203,"9":0.006406,"10":0.012812,"11":0.038436,"12":0.12812,"13":1.34526,_:"0 5 6 7 3.1 3.2 6.1 7.1","5.1":1.2812,"9.1":0.012812,"10.1":0.076872,"11.1":0.166556,"12.1":0.38436},G:{"8":0.0003184602460246,"3.2":0.0012738409840984,"4.0-4.1":0.0006369204920492,"4.2-4.3":0,"5.0-5.1":0.0019107614761476,"6.0-6.1":0.0006369204920492,"7.0-7.1":0.0022292217221722,"8.1-8.4":0.0041399831983198,"9.0-9.2":0.0038215229522952,"9.3":0.040444451245125,"10.0-10.2":0.014012250825083,"10.3":0.045221354935494,"11.0-11.2":0.038215229522952,"11.3-11.4":0.068150492649265,"12.0-12.1":0.097448835283528,"12.2-12.4":0.68978489288929,"13.0-13.1":1.0015574737474,"13.2":0.45603507230723,"13.3":0.7184463150315},I:{"3":0.0002530985915493,"4":0.0010967605633803,_:"76","2.1":0,"2.2":0.0001687323943662,"2.3":0.0001687323943662,"4.1":0.0019404225352113,"4.2-4.3":0.042436197183099,"4.4":0,"4.4.3-4.4.4":0.025816056338028},P:{"4":0.23547499459459,"5.0-5.4":0.021498067183463,"6.2-6.4":0.020476086486486,"7.2-7.4":0.092142389189189,"8.2":0.020476086486486,"9.2":0.12285651891892,"10.1":1.4026119243243},B:{"14":0.012812,"15":0.012812,"16":0.019218,"17":0.089684,"18":0.781532,_:"12 13 76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.078968509090909,"9":0.013161418181818,"10":0.013161418181818,"11":0.61858665454545,_:"6 7 5.5"},N:{"10":0,"11":0.086256},J:{"7":0,"10":0.007188},R:{_:"0"},M:{"0":0.093444},O:{"0":0.093444},Q:{"1.2":0.007188},S:{_:"2.5"},H:{"0":0.20415402061856},L:{"0":30.915824}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-ww.js b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-ww.js new file mode 100644 index 0000000..5f08a32 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/data/regions/alt-ww.js @@ -0,0 +1 @@ +module.exports={D:{"13":0.004403,"24":0.008806,"26":0.004403,"30":0.004403,"31":0.013209,"33":0.013209,"34":0.008806,"35":0.008806,"36":0.008806,"38":0.022015,"40":0.013209,"41":0.008806,"42":0.004403,"43":0.017612,"45":0.004403,"46":0.004403,"47":0.008806,"48":0.035224,"49":0.515151,"50":0.008806,"51":0.013209,"52":0.004403,"53":0.022015,"54":0.026418,"55":0.04403,"56":0.035224,"57":0.066045,"58":0.030821,"59":0.017612,"60":0.030821,"61":0.035224,"62":0.030821,"63":0.277389,"64":0.017612,"65":0.052836,"66":0.035224,"67":0.066045,"68":0.061642,"69":0.184926,"70":0.149702,"71":0.198135,"72":0.206941,"73":0.184926,"74":0.224553,"75":0.268583,"76":0.281792,"77":0.409479,"78":13.997137,"79":11.500636,"80":0.039627,"81":0.017612,_:"4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 25 27 28 29 32 37 39 44"},C:{"21":0.008806,"25":0.004403,"30":0.004403,"35":0.022015,"38":0.008806,"43":0.008806,"44":0.008806,"45":0.013209,"47":0.022015,"48":0.030821,"49":0.004403,"50":0.013209,"51":0.008806,"52":0.145299,"53":0.008806,"54":0.013209,"55":0.008806,"56":0.026418,"57":0.013209,"58":0.008806,"59":0.008806,"60":0.039627,"61":0.013209,"62":0.008806,"63":0.017612,"64":0.026418,"65":0.052836,"66":0.04403,"67":0.026418,"68":0.13209,"69":0.074851,"70":0.761719,"71":2.426053,"72":0.057239,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 26 27 28 29 31 32 33 34 36 37 39 40 41 42 46 73 3.5 3.6"},F:{"31":0.008806,"36":0.013209,"56":0.008806,"57":0.008806,"58":0.013209,"60":0.004403,"62":0.004403,"63":0.013209,"64":0.070448,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.008806},E:{"4":0,"5":0.004403,"8":0.026418,"9":0.013209,"10":0.017612,"11":0.039627,"12":0.136493,"13":2.293963,_:"0 6 7 3.1 3.2 6.1 7.1","5.1":0.66045,"9.1":0.035224,"10.1":0.096866,"11.1":0.184926,"12.1":0.435897},G:{"8":0.0012807216721672,"3.2":0.0051228866886689,"4.0-4.1":0.0025614433443344,"4.2-4.3":0,"5.0-5.1":0.0076843300330033,"6.0-6.1":0.0025614433443344,"7.0-7.1":0.0089650517051705,"8.1-8.4":0.016649381738174,"9.0-9.2":0.015368660066007,"9.3":0.16265165236524,"10.0-10.2":0.056351753575358,"10.3":0.18186247744774,"11.0-11.2":0.15368660066007,"11.3-11.4":0.27407443784378,"12.0-12.1":0.39190083168317,"12.2-12.4":2.7740431419142,"13.0-13.1":4.0278696589659,"13.2":1.8339934345435,"13.3":2.8893080924092},I:{"3":0.00074889436619718,"4":0.0032452089201878,_:"76","2.1":0,"2.2":0.00049926291079812,"2.3":0.00049926291079812,"4.1":0.0057415234741784,"4.2-4.3":0.12556462206573,"4.4":0,"4.4.3-4.4.4":0.076387225352113},P:{"4":0.33210998857143,"5.0-5.4":0.031135311428571,"6.2-6.4":0.020756874285714,"7.2-7.4":0.11416280857143,"8.2":0.041513748571429,"9.2":0.32173155142857,"10.1":2.7295289685714},B:{"12":0.008806,"13":0.008806,"14":0.017612,"15":0.017612,"16":0.039627,"17":0.149702,"18":1.796424,_:"76"},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0092276957746479,"7":0.0092276957746479,"8":0.11073234929577,"9":0.041524630985915,"10":0.036910783098592,"11":1.4302928450704,_:"5.5"},N:{"10":0.0639792,"11":0.050373},J:{"7":0,"10":0.011194},R:{_:"0"},M:{"0":0.229477},O:{"0":2.882455},Q:{"1.2":0.201492},S:{"2.5":0.195895},H:{"0":1.165753161512},L:{"0":35.161927}}; diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/lib/statuses.js b/themes/piratecare/node_modules/caniuse-lite/dist/lib/statuses.js new file mode 100644 index 0000000..c346e2b --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/lib/statuses.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = { + 1: "ls", // WHATWG Living Standard + 2: "rec", // W3C Recommendation + 3: "pr", // W3C Proposed Recommendation + 4: "cr", // W3C Candidate Recommendation + 5: "wd", // W3C Working Draft + 6: "other", // Non-W3C, but reputable + 7: "unoff" // Unofficial, Editor's Draft or W3C "Note" +}; diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/lib/supported.js b/themes/piratecare/node_modules/caniuse-lite/dist/lib/supported.js new file mode 100644 index 0000000..3523a87 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/lib/supported.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = { + y: 1 << 0, + n: 1 << 1, + a: 1 << 2, + p: 1 << 3, + u: 1 << 4, + x: 1 << 5, + d: 1 << 6 +}; diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/agents.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/agents.js new file mode 100644 index 0000000..8dc5d49 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/agents.js @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.agents = undefined; + +var _browsers = require('./browsers'); + +var _browserVersions = require('./browserVersions'); + +var agentsData = require('../../data/agents'); + +function unpackBrowserVersions(versionsData) { + return Object.keys(versionsData).reduce(function (usage, version) { + usage[_browserVersions.browserVersions[version]] = versionsData[version]; + return usage; + }, {}); +} + +var agents = exports.agents = Object.keys(agentsData).reduce(function (map, key) { + var versionsData = agentsData[key]; + map[_browsers.browsers[key]] = Object.keys(versionsData).reduce(function (data, entry) { + if (entry === 'A') { + data.usage_global = unpackBrowserVersions(versionsData[entry]); + } else if (entry === 'C') { + data.versions = versionsData[entry].reduce(function (list, version) { + if (version === '') { + list.push(null); + } else { + list.push(_browserVersions.browserVersions[version]); + } + return list; + }, []); + } else if (entry === 'D') { + data.prefix_exceptions = unpackBrowserVersions(versionsData[entry]); + } else if (entry === 'E') { + data.browser = versionsData[entry]; + } else if (entry === 'F') { + data.release_date = Object.keys(versionsData[entry]).reduce(function (map, key) { + map[_browserVersions.browserVersions[key]] = versionsData[entry][key]; + return map; + }, {}); + } else { + // entry is B + data.prefix = versionsData[entry]; + } + return data; + }, {}); + return map; +}, {}); \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/browserVersions.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/browserVersions.js new file mode 100644 index 0000000..f63d752 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/browserVersions.js @@ -0,0 +1,6 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +var browserVersions = exports.browserVersions = require('../../data/browserVersions'); \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/browsers.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/browsers.js new file mode 100644 index 0000000..4ef0082 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/browsers.js @@ -0,0 +1,6 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +var browsers = exports.browsers = require('../../data/browsers'); \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/feature.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/feature.js new file mode 100644 index 0000000..d484a57 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/feature.js @@ -0,0 +1,58 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = unpackFeature; + +var _statuses = require('../lib/statuses'); + +var _statuses2 = _interopRequireDefault(_statuses); + +var _supported = require('../lib/supported'); + +var _supported2 = _interopRequireDefault(_supported); + +var _browsers = require('./browsers'); + +var _browserVersions = require('./browserVersions'); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +var MATH2LOG = Math.log(2); + +function unpackSupport(cipher) { + // bit flags + var stats = Object.keys(_supported2.default).reduce(function (list, support) { + if (cipher & _supported2.default[support]) list.push(support); + return list; + }, []); + + // notes + var notes = cipher >> 7; + var notesArray = []; + while (notes) { + var note = Math.floor(Math.log(notes) / MATH2LOG) + 1; + notesArray.unshift('#' + note); + notes -= Math.pow(2, note - 1); + } + + return stats.concat(notesArray).join(' '); +} + +function unpackFeature(packed) { + var unpacked = { status: _statuses2.default[packed.B], title: packed.C }; + unpacked.stats = Object.keys(packed.A).reduce(function (browserStats, key) { + var browser = packed.A[key]; + browserStats[_browsers.browsers[key]] = Object.keys(browser).reduce(function (stats, support) { + var packedVersions = browser[support].split(' '); + var unpacked = unpackSupport(support); + packedVersions.forEach(function (v) { + return stats[_browserVersions.browserVersions[v]] = unpacked; + }); + return stats; + }, {}); + return browserStats; + }, {}); + return unpacked; +} \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/features.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/features.js new file mode 100644 index 0000000..dec36e3 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/features.js @@ -0,0 +1,11 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +/* + * Load this dynamically so that it + * doesn't appear in the rollup bundle. + */ + +var features = exports.features = require('../../data/features'); \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/index.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/index.js new file mode 100644 index 0000000..2cc2f05 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/index.js @@ -0,0 +1,43 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _agents = require('./agents'); + +Object.defineProperty(exports, 'agents', { + enumerable: true, + get: function get() { + return _agents.agents; + } +}); + +var _feature = require('./feature'); + +Object.defineProperty(exports, 'feature', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_feature).default; + } +}); + +var _features = require('./features'); + +Object.defineProperty(exports, 'features', { + enumerable: true, + get: function get() { + return _features.features; + } +}); + +var _region = require('./region'); + +Object.defineProperty(exports, 'region', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_region).default; + } +}); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/region.js b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/region.js new file mode 100644 index 0000000..e09ae36 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/dist/unpacker/region.js @@ -0,0 +1,26 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = unpackRegion; + +var _browsers = require('./browsers'); + +function unpackRegion(packed) { + return Object.keys(packed).reduce(function (list, browser) { + var data = packed[browser]; + list[_browsers.browsers[browser]] = Object.keys(data).reduce(function (memo, key) { + var stats = data[key]; + if (key === '_') { + stats.split(' ').forEach(function (version) { + return memo[version] = null; + }); + } else { + memo[key] = stats; + } + return memo; + }, {}); + return list; + }, {}); +} \ No newline at end of file diff --git a/themes/piratecare/node_modules/caniuse-lite/package.json b/themes/piratecare/node_modules/caniuse-lite/package.json new file mode 100644 index 0000000..fa7f9e9 --- /dev/null +++ b/themes/piratecare/node_modules/caniuse-lite/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "caniuse-lite@1.0.30001023", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "caniuse-lite@1.0.30001023", + "_id": "caniuse-lite@1.0.30001023", + "_inBundle": false, + "_integrity": "sha512-C5TDMiYG11EOhVOA62W1p3UsJ2z4DsHtMBQtjzp3ZsUglcQn62WOUgW0y795c7A5uZ+GCEIvzkMatLIlAsbNTA==", + "_location": "/caniuse-lite", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "caniuse-lite@1.0.30001023", + "name": "caniuse-lite", + "escapedName": "caniuse-lite", + "rawSpec": "1.0.30001023", + "saveSpec": null, + "fetchSpec": "1.0.30001023" + }, + "_requiredBy": [ + "/autoprefixer", + "/browserslist" + ], + "_resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001023.tgz", + "_spec": "1.0.30001023", + "_where": "/tmp/tailwind-hugo", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "bugs": { + "url": "https://github.com/ben-eb/caniuse-lite/issues" + }, + "description": "A smaller version of caniuse-db, with only the essentials!", + "files": [ + "data", + "dist" + ], + "homepage": "https://github.com/ben-eb/caniuse-lite#readme", + "keywords": [ + "support", + "css", + "js", + "html5", + "svg" + ], + "license": "CC-BY-4.0", + "main": "dist/unpacker/index.js", + "name": "caniuse-lite", + "repository": { + "type": "git", + "url": "git+https://github.com/ben-eb/caniuse-lite.git" + }, + "scripts": { + "prepublish": "del-cli dist && babel src/unpacker -d dist/unpacker && mkdir dist/lib && babel src/lib/statuses.js -o dist/lib/statuses.js && babel src/lib/supported.js -o dist/lib/supported.js" + }, + "version": "1.0.30001023" +} diff --git a/themes/piratecare/node_modules/chalk/index.js b/themes/piratecare/node_modules/chalk/index.js new file mode 100644 index 0000000..1cc5fa8 --- /dev/null +++ b/themes/piratecare/node_modules/chalk/index.js @@ -0,0 +1,228 @@ +'use strict'; +const escapeStringRegexp = require('escape-string-regexp'); +const ansiStyles = require('ansi-styles'); +const stdoutColor = require('supports-color').stdout; + +const template = require('./templates.js'); + +const isSimpleWindowsTerm = process.platform === 'win32' && !(process.env.TERM || '').toLowerCase().startsWith('xterm'); + +// `supportsColor.level` → `ansiStyles.color[name]` mapping +const levelMapping = ['ansi', 'ansi', 'ansi256', 'ansi16m']; + +// `color-convert` models to exclude from the Chalk API due to conflicts and such +const skipModels = new Set(['gray']); + +const styles = Object.create(null); + +function applyOptions(obj, options) { + options = options || {}; + + // Detect level if not set manually + const scLevel = stdoutColor ? stdoutColor.level : 0; + obj.level = options.level === undefined ? scLevel : options.level; + obj.enabled = 'enabled' in options ? options.enabled : obj.level > 0; +} + +function Chalk(options) { + // We check for this.template here since calling `chalk.constructor()` + // by itself will have a `this` of a previously constructed chalk object + if (!this || !(this instanceof Chalk) || this.template) { + const chalk = {}; + applyOptions(chalk, options); + + chalk.template = function () { + const args = [].slice.call(arguments); + return chalkTag.apply(null, [chalk.template].concat(args)); + }; + + Object.setPrototypeOf(chalk, Chalk.prototype); + Object.setPrototypeOf(chalk.template, chalk); + + chalk.template.constructor = Chalk; + + return chalk.template; + } + + applyOptions(this, options); +} + +// Use bright blue on Windows as the normal blue color is illegible +if (isSimpleWindowsTerm) { + ansiStyles.blue.open = '\u001B[94m'; +} + +for (const key of Object.keys(ansiStyles)) { + ansiStyles[key].closeRe = new RegExp(escapeStringRegexp(ansiStyles[key].close), 'g'); + + styles[key] = { + get() { + const codes = ansiStyles[key]; + return build.call(this, this._styles ? this._styles.concat(codes) : [codes], this._empty, key); + } + }; +} + +styles.visible = { + get() { + return build.call(this, this._styles || [], true, 'visible'); + } +}; + +ansiStyles.color.closeRe = new RegExp(escapeStringRegexp(ansiStyles.color.close), 'g'); +for (const model of Object.keys(ansiStyles.color.ansi)) { + if (skipModels.has(model)) { + continue; + } + + styles[model] = { + get() { + const level = this.level; + return function () { + const open = ansiStyles.color[levelMapping[level]][model].apply(null, arguments); + const codes = { + open, + close: ansiStyles.color.close, + closeRe: ansiStyles.color.closeRe + }; + return build.call(this, this._styles ? this._styles.concat(codes) : [codes], this._empty, model); + }; + } + }; +} + +ansiStyles.bgColor.closeRe = new RegExp(escapeStringRegexp(ansiStyles.bgColor.close), 'g'); +for (const model of Object.keys(ansiStyles.bgColor.ansi)) { + if (skipModels.has(model)) { + continue; + } + + const bgModel = 'bg' + model[0].toUpperCase() + model.slice(1); + styles[bgModel] = { + get() { + const level = this.level; + return function () { + const open = ansiStyles.bgColor[levelMapping[level]][model].apply(null, arguments); + const codes = { + open, + close: ansiStyles.bgColor.close, + closeRe: ansiStyles.bgColor.closeRe + }; + return build.call(this, this._styles ? this._styles.concat(codes) : [codes], this._empty, model); + }; + } + }; +} + +const proto = Object.defineProperties(() => {}, styles); + +function build(_styles, _empty, key) { + const builder = function () { + return applyStyle.apply(builder, arguments); + }; + + builder._styles = _styles; + builder._empty = _empty; + + const self = this; + + Object.defineProperty(builder, 'level', { + enumerable: true, + get() { + return self.level; + }, + set(level) { + self.level = level; + } + }); + + Object.defineProperty(builder, 'enabled', { + enumerable: true, + get() { + return self.enabled; + }, + set(enabled) { + self.enabled = enabled; + } + }); + + // See below for fix regarding invisible grey/dim combination on Windows + builder.hasGrey = this.hasGrey || key === 'gray' || key === 'grey'; + + // `__proto__` is used because we must return a function, but there is + // no way to create a function with a different prototype + builder.__proto__ = proto; // eslint-disable-line no-proto + + return builder; +} + +function applyStyle() { + // Support varags, but simply cast to string in case there's only one arg + const args = arguments; + const argsLen = args.length; + let str = String(arguments[0]); + + if (argsLen === 0) { + return ''; + } + + if (argsLen > 1) { + // Don't slice `arguments`, it prevents V8 optimizations + for (let a = 1; a < argsLen; a++) { + str += ' ' + args[a]; + } + } + + if (!this.enabled || this.level <= 0 || !str) { + return this._empty ? '' : str; + } + + // Turns out that on Windows dimmed gray text becomes invisible in cmd.exe, + // see https://github.com/chalk/chalk/issues/58 + // If we're on Windows and we're dealing with a gray color, temporarily make 'dim' a noop. + const originalDim = ansiStyles.dim.open; + if (isSimpleWindowsTerm && this.hasGrey) { + ansiStyles.dim.open = ''; + } + + for (const code of this._styles.slice().reverse()) { + // Replace any instances already present with a re-opening code + // otherwise only the part of the string until said closing code + // will be colored, and the rest will simply be 'plain'. + str = code.open + str.replace(code.closeRe, code.open) + code.close; + + // Close the styling before a linebreak and reopen + // after next line to fix a bleed issue on macOS + // https://github.com/chalk/chalk/pull/92 + str = str.replace(/\r?\n/g, `${code.close}$&${code.open}`); + } + + // Reset the original `dim` if we changed it to work around the Windows dimmed gray issue + ansiStyles.dim.open = originalDim; + + return str; +} + +function chalkTag(chalk, strings) { + if (!Array.isArray(strings)) { + // If chalk() was called by itself or with a string, + // return the string itself as a string. + return [].slice.call(arguments, 1).join(' '); + } + + const args = [].slice.call(arguments, 2); + const parts = [strings.raw[0]]; + + for (let i = 1; i < strings.length; i++) { + parts.push(String(args[i - 1]).replace(/[{}\\]/g, '\\$&')); + parts.push(String(strings.raw[i])); + } + + return template(chalk, parts.join('')); +} + +Object.defineProperties(Chalk.prototype, styles); + +module.exports = Chalk(); // eslint-disable-line new-cap +module.exports.supportsColor = stdoutColor; +module.exports.default = module.exports; // For TypeScript diff --git a/themes/piratecare/node_modules/chalk/index.js.flow b/themes/piratecare/node_modules/chalk/index.js.flow new file mode 100644 index 0000000..622caaa --- /dev/null +++ b/themes/piratecare/node_modules/chalk/index.js.flow @@ -0,0 +1,93 @@ +// @flow strict + +type TemplateStringsArray = $ReadOnlyArray; + +export type Level = $Values<{ + None: 0, + Basic: 1, + Ansi256: 2, + TrueColor: 3 +}>; + +export type ChalkOptions = {| + enabled?: boolean, + level?: Level +|}; + +export type ColorSupport = {| + level: Level, + hasBasic: boolean, + has256: boolean, + has16m: boolean +|}; + +export interface Chalk { + (...text: string[]): string, + (text: TemplateStringsArray, ...placeholders: string[]): string, + constructor(options?: ChalkOptions): Chalk, + enabled: boolean, + level: Level, + rgb(r: number, g: number, b: number): Chalk, + hsl(h: number, s: number, l: number): Chalk, + hsv(h: number, s: number, v: number): Chalk, + hwb(h: number, w: number, b: number): Chalk, + bgHex(color: string): Chalk, + bgKeyword(color: string): Chalk, + bgRgb(r: number, g: number, b: number): Chalk, + bgHsl(h: number, s: number, l: number): Chalk, + bgHsv(h: number, s: number, v: number): Chalk, + bgHwb(h: number, w: number, b: number): Chalk, + hex(color: string): Chalk, + keyword(color: string): Chalk, + + +reset: Chalk, + +bold: Chalk, + +dim: Chalk, + +italic: Chalk, + +underline: Chalk, + +inverse: Chalk, + +hidden: Chalk, + +strikethrough: Chalk, + + +visible: Chalk, + + +black: Chalk, + +red: Chalk, + +green: Chalk, + +yellow: Chalk, + +blue: Chalk, + +magenta: Chalk, + +cyan: Chalk, + +white: Chalk, + +gray: Chalk, + +grey: Chalk, + +blackBright: Chalk, + +redBright: Chalk, + +greenBright: Chalk, + +yellowBright: Chalk, + +blueBright: Chalk, + +magentaBright: Chalk, + +cyanBright: Chalk, + +whiteBright: Chalk, + + +bgBlack: Chalk, + +bgRed: Chalk, + +bgGreen: Chalk, + +bgYellow: Chalk, + +bgBlue: Chalk, + +bgMagenta: Chalk, + +bgCyan: Chalk, + +bgWhite: Chalk, + +bgBlackBright: Chalk, + +bgRedBright: Chalk, + +bgGreenBright: Chalk, + +bgYellowBright: Chalk, + +bgBlueBright: Chalk, + +bgMagentaBright: Chalk, + +bgCyanBright: Chalk, + +bgWhiteBrigh: Chalk, + + supportsColor: ColorSupport +}; + +declare module.exports: Chalk; diff --git a/themes/piratecare/node_modules/chalk/license b/themes/piratecare/node_modules/chalk/license new file mode 100644 index 0000000..e7af2f7 --- /dev/null +++ b/themes/piratecare/node_modules/chalk/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. diff --git a/themes/piratecare/node_modules/chalk/package.json b/themes/piratecare/node_modules/chalk/package.json new file mode 100644 index 0000000..b53040b --- /dev/null +++ b/themes/piratecare/node_modules/chalk/package.json @@ -0,0 +1,111 @@ +{ + "_args": [ + [ + "chalk@2.4.2", + "/tmp/tailwind-hugo" + ] + ], + "_development": true, + "_from": "chalk@2.4.2", + "_id": "chalk@2.4.2", + "_inBundle": false, + "_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "_location": "/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@2.4.2", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "2.4.2", + "saveSpec": null, + "fetchSpec": "2.4.2" + }, + "_requiredBy": [ + "/autoprefixer", + "/log-symbols", + "/postcss", + "/postcss-functions/postcss", + "/postcss-reporter" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "_spec": "2.4.2", + "_where": "/tmp/tailwind-hugo", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "description": "Terminal string styling done right", + "devDependencies": { + "ava": "*", + "coveralls": "^3.0.0", + "execa": "^0.9.0", + "flow-bin": "^0.68.0", + "import-fresh": "^2.0.0", + "matcha": "^0.7.0", + "nyc": "^11.0.2", + "resolve-from": "^4.0.0", + "typescript": "^2.5.3", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js", + "templates.js", + "types/index.d.ts", + "index.js.flow" + ], + "homepage": "https://github.com/chalk/chalk#readme", + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" + }, + "scripts": { + "bench": "matcha benchmark.js", + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava" + }, + "types": "types/index.d.ts", + "version": "2.4.2", + "xo": { + "envs": [ + "node", + "mocha" + ], + "ignores": [ + "test/_flow.js" + ] + } +} diff --git a/themes/piratecare/node_modules/chalk/readme.md b/themes/piratecare/node_modules/chalk/readme.md new file mode 100644 index 0000000..d298e2c --- /dev/null +++ b/themes/piratecare/node_modules/chalk/readme.md @@ -0,0 +1,314 @@ +

+
+
+ Chalk +
+
+
+

+ +> Terminal string styling done right + +[![Build Status](https://travis-ci.org/chalk/chalk.svg?branch=master)](https://travis-ci.org/chalk/chalk) [![Coverage Status](https://coveralls.io/repos/github/chalk/chalk/badge.svg?branch=master)](https://coveralls.io/github/chalk/chalk?branch=master) [![](https://img.shields.io/badge/unicorn-approved-ff69b4.svg)](https://www.youtube.com/watch?v=9auOCbH5Ns4) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo) [![Mentioned in Awesome Node.js](https://awesome.re/mentioned-badge.svg)](https://github.com/sindresorhus/awesome-nodejs) + +### [See what's new in Chalk 2](https://github.com/chalk/chalk/releases/tag/v2.0.0) + + + + +## Highlights + +- Expressive API +- Highly performant +- Ability to nest styles +- [256/Truecolor color support](#256-and-truecolor-color-support) +- Auto-detects color support +- Doesn't extend `String.prototype` +- Clean and focused +- Actively maintained +- [Used by ~23,000 packages](https://www.npmjs.com/browse/depended/chalk) as of December 31, 2017 + + +## Install + +```console +$ npm install chalk +``` + + + + + + +## Usage + +```js +const chalk = require('chalk'); + +console.log(chalk.blue('Hello world!')); +``` + +Chalk comes with an easy to use composable API where you just chain and nest the styles you want. + +```js +const chalk = require('chalk'); +const log = console.log; + +// Combine styled and normal strings +log(chalk.blue('Hello') + ' World' + chalk.red('!')); + +// Compose multiple styles using the chainable API +log(chalk.blue.bgRed.bold('Hello world!')); + +// Pass in multiple arguments +log(chalk.blue('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz')); + +// Nest styles +log(chalk.red('Hello', chalk.underline.bgBlue('world') + '!')); + +// Nest styles of the same type even (color, underline, background) +log(chalk.green( + 'I am a green line ' + + chalk.blue.underline.bold('with a blue substring') + + ' that becomes green again!' +)); + +// ES2015 template literal +log(` +CPU: ${chalk.red('90%')} +RAM: ${chalk.green('40%')} +DISK: ${chalk.yellow('70%')} +`); + +// ES2015 tagged template literal +log(chalk` +CPU: {red ${cpu.totalPercent}%} +RAM: {green ${ram.used / ram.total * 100}%} +DISK: {rgb(255,131,0) ${disk.used / disk.total * 100}%} +`); + +// Use RGB colors in terminal emulators that support it. +log(chalk.keyword('orange')('Yay for orange colored text!')); +log(chalk.rgb(123, 45, 67).underline('Underlined reddish color')); +log(chalk.hex('#DEADED').bold('Bold gray!')); +``` + +Easily define your own themes: + +```js +const chalk = require('chalk'); + +const error = chalk.bold.red; +const warning = chalk.keyword('orange'); + +console.log(error('Error!')); +console.log(warning('Warning!')); +``` + +Take advantage of console.log [string substitution](https://nodejs.org/docs/latest/api/console.html#console_console_log_data_args): + +```js +const name = 'Sindre'; +console.log(chalk.green('Hello %s'), name); +//=> 'Hello Sindre' +``` + + +## API + +### chalk.`