Skip to content

Commit

Permalink
liting
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienMattiussi committed Sep 12, 2023
1 parent 8727da5 commit cd46feb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/transformers/src/operations/VALUE.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const isUndefinedOrEmpty = (value) => typeof value === 'undefined' || value === '';
const isUndefinedOrEmpty = value =>
typeof value === 'undefined' || value === '';

const transformation = (_, args) => () =>
new Promise((resolve, reject) => {
Expand Down

0 comments on commit cd46feb

Please sign in to comment.