Skip to content

Commit 8f54ae9

Browse files
Merge pull request #71 from sandstreamdev/cover_date_module_with_tests_and_update_its_docs
Cover date module with tests and update its docs
2 parents 8650ccc + 260fbbe commit 8f54ae9

File tree

187 files changed

+2360
-1074
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+2360
-1074
lines changed

README.md

Lines changed: 506 additions & 115 deletions
Large diffs are not rendered by default.

array/length.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-env jest */
22
// @ts-ignore ambiguous import
3-
import length from "./length";
3+
import length from "./length.ts";
44

55
describe("length", () => {
66
it("returns the length of the given array", () => {

array/pop.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-env jest */
22
// @ts-ignore ambiguous import
3-
import pop from "./pop";
3+
import pop from "./pop.ts";
44

55
describe("pop", () => {
66
it("returns the given array without the last element", () => {

0 commit comments

Comments
 (0)