From 9e1eec2c5b10c97d7bafd26b6326b3364d5cc3e8 Mon Sep 17 00:00:00 2001 From: Ty Hopp Date: Mon, 17 Jan 2022 12:39:34 +0800 Subject: [PATCH] Remove todo --- packages/create-gatsby/src/is-truthy.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/create-gatsby/src/is-truthy.ts b/packages/create-gatsby/src/is-truthy.ts index ee55e27826a5d..25b0c67e77c18 100644 --- a/packages/create-gatsby/src/is-truthy.ts +++ b/packages/create-gatsby/src/is-truthy.ts @@ -1,6 +1,5 @@ -// TODO - Check if we want to add core utils as a dependency or not, -// that's where this is taken from. - +// Copied from gatsby-core-utils to avoid depending on it, similar to get-config-store +// // Returns true for `true`, true, positive numbers // Returns false for `false`, false, 0, negative integers and anything else export function isTruthy(value: any): boolean {