Last active
November 16, 2016 15:34
-
-
Save zspecza/ef6410f6f51a2ebf84c06de83b3570f5 to your computer and use it in GitHub Desktop.
Revisions
-
declandewet revised this gist
Nov 16, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ const getValidatedTransformation = sequentialCallback( findSomething, transformSomething, validateTransformed ) -
declandewet revised this gist
Nov 16, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ const findValidatedTransformation = sequentialCallback( getSomething, transformSomething, validateTransformed -
declandewet revised this gist
Nov 16, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const getValidatedTransformation = sequentialCallback( validateTransformed ) getValidatedTransformation((error, validated) => { if (error) { console.error(new Error(error)) } else { -
declandewet created this gist
Nov 16, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ const getValidatedTransformation = sequentialCallback( getSomething, transformSomething, validateTransformed ) getValidatedTransformation((error, validated) { if (error) { console.error(new Error(error)) } else { console.log('data is valid:', validated) } })