Skip to content

Commit c909893

Browse files
chore: move parseBoolean to parse-utils
1 parent 1b69694 commit c909893

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

packages/smithy-client/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export * from "./boolean";
21
export * from "./client";
32
export * from "./command";
43
export * from "./document-type";
@@ -7,6 +6,7 @@ export * from "./extended-encode-uri-component";
76
export * from "./get-array-if-single-item";
87
export * from "./get-value-from-text-node";
98
export * from "./lazy-json";
9+
export * from "./parse-utils";
1010
export * from "./date-utils";
1111
export * from "./split-every";
1212
export * from "./constants";

packages/smithy-client/src/boolean.spec.ts renamed to packages/smithy-client/src/parse-utils.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parseBoolean } from "./boolean";
1+
import { parseBoolean } from "./parse-utils";
22

33
describe("parseBoolean", () => {
44
it('Returns true for "true"', () => {

0 commit comments

Comments
 (0)