From 416df34b4f7e410ded8259fa47d89235758b49e1 Mon Sep 17 00:00:00 2001 From: Daniel Jonathan Date: Wed, 7 Aug 2024 22:26:06 -0400 Subject: [PATCH] added breakerjs --- LICENSE | 2 +- __tests__/sort/InsertionSort.spec.ts | 2 +- __tests__/sort/MergeSort.spec.ts | 2 +- __tests__/sort/SelectionSort.spec.ts | 2 +- __tests__/structures/Heap.spec.ts | 2 +- __tests__/structures/List.spec.ts | 2 +- __tests__/structures/Stack.spec.ts | 2 +- __tests__/structures/Tree.spec.ts | 2 +- src/index.ts | 2 +- src/search/BinarySearch.ts | 2 +- src/sort/InsertionSort.ts | 2 +- src/sort/MergeSort.ts | 2 +- src/sort/SelectionSort.ts | 2 +- src/sort/index.ts | 2 +- src/structures/Heap.ts | 2 +- src/structures/List.ts | 2 +- src/structures/Stack.ts | 2 +- src/structures/Tree.ts | 2 +- src/structures/index.ts | 2 +- src/utils/compare.ts | 2 +- src/utils/index.ts | 2 +- src/utils/sentinel.ts | 2 +- src/utils/sort.ts | 2 +- typings/env.d.ts | 2 +- vite.config.test.ts | 2 +- vite.config.ts | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/LICENSE b/LICENSE index d779790..59b41c2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2023, Daniel Jonathan +Copyright © 2024, Daniel Jonathan All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/__tests__/sort/InsertionSort.spec.ts b/__tests__/sort/InsertionSort.spec.ts index 8e317ee..a68e026 100644 --- a/__tests__/sort/InsertionSort.spec.ts +++ b/__tests__/sort/InsertionSort.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/__tests__/sort/MergeSort.spec.ts b/__tests__/sort/MergeSort.spec.ts index 2721967..347a367 100644 --- a/__tests__/sort/MergeSort.spec.ts +++ b/__tests__/sort/MergeSort.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/__tests__/sort/SelectionSort.spec.ts b/__tests__/sort/SelectionSort.spec.ts index 83abd12..59be38d 100644 --- a/__tests__/sort/SelectionSort.spec.ts +++ b/__tests__/sort/SelectionSort.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/__tests__/structures/Heap.spec.ts b/__tests__/structures/Heap.spec.ts index 3e36230..f2bec89 100644 --- a/__tests__/structures/Heap.spec.ts +++ b/__tests__/structures/Heap.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/__tests__/structures/List.spec.ts b/__tests__/structures/List.spec.ts index bdbc310..f21bc08 100644 --- a/__tests__/structures/List.spec.ts +++ b/__tests__/structures/List.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/__tests__/structures/Stack.spec.ts b/__tests__/structures/Stack.spec.ts index d5308da..ed1148f 100644 --- a/__tests__/structures/Stack.spec.ts +++ b/__tests__/structures/Stack.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/__tests__/structures/Tree.spec.ts b/__tests__/structures/Tree.spec.ts index b882096..999b723 100644 --- a/__tests__/structures/Tree.spec.ts +++ b/__tests__/structures/Tree.spec.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/index.ts b/src/index.ts index b1b5826..534ea49 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/search/BinarySearch.ts b/src/search/BinarySearch.ts index b1e3c36..5909fed 100644 --- a/src/search/BinarySearch.ts +++ b/src/search/BinarySearch.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sort/InsertionSort.ts b/src/sort/InsertionSort.ts index 94ce1e9..d8eaed6 100644 --- a/src/sort/InsertionSort.ts +++ b/src/sort/InsertionSort.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sort/MergeSort.ts b/src/sort/MergeSort.ts index de9471c..4694be0 100644 --- a/src/sort/MergeSort.ts +++ b/src/sort/MergeSort.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sort/SelectionSort.ts b/src/sort/SelectionSort.ts index 6164501..407af49 100644 --- a/src/sort/SelectionSort.ts +++ b/src/sort/SelectionSort.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sort/index.ts b/src/sort/index.ts index e2aec17..15ff6ca 100644 --- a/src/sort/index.ts +++ b/src/sort/index.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/structures/Heap.ts b/src/structures/Heap.ts index 6f3464f..f18aec8 100644 --- a/src/structures/Heap.ts +++ b/src/structures/Heap.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/structures/List.ts b/src/structures/List.ts index e785aa9..8dcdad8 100644 --- a/src/structures/List.ts +++ b/src/structures/List.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/structures/Stack.ts b/src/structures/Stack.ts index f2ff055..e4f7bf2 100644 --- a/src/structures/Stack.ts +++ b/src/structures/Stack.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/structures/Tree.ts b/src/structures/Tree.ts index 15b6328..f548c74 100644 --- a/src/structures/Tree.ts +++ b/src/structures/Tree.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/structures/index.ts b/src/structures/index.ts index 895b395..c5898b8 100644 --- a/src/structures/index.ts +++ b/src/structures/index.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/utils/compare.ts b/src/utils/compare.ts index ece4022..e44b1a6 100644 --- a/src/utils/compare.ts +++ b/src/utils/compare.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/utils/index.ts b/src/utils/index.ts index 5ad434d..c5fddbc 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/utils/sentinel.ts b/src/utils/sentinel.ts index 6a68ed5..bb049e1 100644 --- a/src/utils/sentinel.ts +++ b/src/utils/sentinel.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/utils/sort.ts b/src/utils/sort.ts index ef47d9b..7940d6f 100644 --- a/src/utils/sort.ts +++ b/src/utils/sort.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/typings/env.d.ts b/typings/env.d.ts index d0e80d2..f4d9c9c 100644 --- a/typings/env.d.ts +++ b/typings/env.d.ts @@ -1,4 +1,4 @@ -/* Copyright © 2023, CosmicMind, Inc. . All rights reserved. */ +/* Copyright © 2024, CosmicMind, Inc. . All rights reserved. */ /// diff --git a/vite.config.test.ts b/vite.config.test.ts index afe1e11..0a9fcdb 100644 --- a/vite.config.test.ts +++ b/vite.config.test.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/vite.config.ts b/vite.config.ts index 3ed673b..2f9ebb7 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,7 @@ /** * BSD 3-Clause License * - * Copyright © 2023, Daniel Jonathan + * Copyright © 2024, Daniel Jonathan * All rights reserved. * * Redistribution and use in source and binary forms, with or without