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 {