package-foundation
Version:
Skeleton for a simple NPM Package with ES2015 support and CI already configured.
18 lines (15 loc) • 323 B
JavaScript
/*!
* package-foundation v1.2.0
* (c) 2019 Matej Svajger <hello@matejsvajger.com>
* Released under the MIT License.
*/
;
/**
* Exported module - returns a
* function that resolves to true.
* @type {Function}
*/
function module$1 () {
return function () { return true; }
}
module.exports = module$1;