Skip to content

Instantly share code, notes, and snippets.

@martinsson
Created April 15, 2018 22:23
Show Gist options
  • Save martinsson/36cdfae7e3d9130770a0bb9eb5120ed7 to your computer and use it in GitHub Desktop.
Save martinsson/36cdfae7e3d9130770a0bb9eb5120ed7 to your computer and use it in GitHub Desktop.
Hidden testable code 2
function hardToTest() {
let data = callToDependency()
let result = easyToTestPureFunction(data)
let dataOther = callToDependency2(result)
}
function easyToTestPureFunction(data) {
//
// pure logic
// pure logic
// pure logic
//
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment