Created
January 15, 2020 20:39
-
-
Save schipiga/481a9504df9e457679c099e0bee4d969 to your computer and use it in GitHub Desktop.
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 characters
"use strict"; | |
const fs = require("fs"); | |
const _summarize = (a, b) => a + b; | |
exports.summarize = (a, b) => _summarize(a, b); | |
exports.isPathExists = _path => fs.existsSync(_path); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment