Skip to content

Commit b637b00

Browse files
committed
Update dist
1 parent 5092e19 commit b637b00

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

__tests__/utils.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test('parse child property using separator', () => {
1919
test('parse child property with null value', () => {
2020
const flatten = flattenObject({foo: {bar: null}}, {}, '', '___')
2121
expect(flatten.foo___bar).toBe(null)
22-
});
22+
})
2323

2424
test('get yaml data', () => {
2525
const yaml = `
@@ -46,7 +46,7 @@ foo:
4646
bar:
4747
`
4848
const yamlData = getYamlData(yaml, 'foo')
49-
expect(yamlData.bar).toBe(null);
49+
expect(yamlData.bar).toBe(null)
5050
})
5151

5252
test('supports empty map fields', () => {
@@ -58,5 +58,5 @@ foo:
5858

5959
const result = flattenObject(yamlData, {}, '', '__')
6060

61-
expect(result.foo__bar).toBeUndefined();
61+
expect(result.foo__bar).toBeUndefined()
6262
})

badges/coverage.svg

Lines changed: 1 addition & 1 deletion
Loading

dist/index.js

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)