Skip to content

Commit

Permalink
Jeti _should_ skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Muncy committed May 13, 2023
1 parent 50bc29c commit f96f129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function createProcessor(
const strings2 = Array.from(strings);

const prom = values.map(async (value): Promise<string> => {
if (!value.jetiShouldSkip) {
if (value.jetiShouldSkip) {
return value.original;
}
const result = await customProcessor(value);
Expand Down

0 comments on commit f96f129

Please sign in to comment.