const evaluatePrimitive = Match.type<JsonPrimitiveType>().pipe(
Match.when(String.isString, Function.identity),
Match.orElse(() => true)
);
const evaluatePrimitive = Match.type<JsonPrimitiveType>().pipe(
Match.when(String.isString, Function.identity),
Match.orElse(() => true)
);