Skip to content

Instantly share code, notes, and snippets.

@schipiga
Created January 15, 2020 20:39
Show Gist options
  • Save schipiga/481a9504df9e457679c099e0bee4d969 to your computer and use it in GitHub Desktop.
Save schipiga/481a9504df9e457679c099e0bee4d969 to your computer and use it in GitHub Desktop.
"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