From 28a32ce79594c16eae45bf5ae1477b8dfdc61a17 Mon Sep 17 00:00:00 2001 From: Alexander Kurganov Date: Sun, 10 Dec 2023 06:15:38 +0400 Subject: [PATCH] chore: fix typo --- .github/FUNDING.yml | 12 ++++++++++++ __tests__/detect.test.ts | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..cf012d7 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +#github: [Akurganow] +#patreon: akurganow +# pen_collective: # Replace with a single Open Collective username +# ko_fi: # Replace with a single Ko-fi username +# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +# liberapay: # Replace with a single Liberapay username +# issuehunt: # Replace with a single IssueHunt username +# otechie: # Replace with a single Otechie username +# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/__tests__/detect.test.ts b/__tests__/detect.test.ts index 6525ec0..9860881 100644 --- a/__tests__/detect.test.ts +++ b/__tests__/detect.test.ts @@ -4,7 +4,7 @@ describe('detect', () => { describe('string',() => tests('string')) describe('number',() => tests('number')) describe('function',() => tests('function')) - describe('generatorFunction',() => tests('generatorfunction')) + describe('generatorFunction',() => tests('generatorFunction')) describe('asyncFunction',() => tests('asyncFunction')) describe('object',() => tests('object')) describe('boolean',() => tests('boolean'))