package-foundation
Version:
Skeleton for a simple NPM Package with ES2015 support and CI already configured.
24 lines (20 loc) • 611 B
JavaScript
/*!
* package-foundation v1.2.0
* (c) 2019 Matej Svajger <hello@matejsvajger.com>
* Released under the MIT License.
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.PackageFoundation = factory());
}(this, function () { 'use strict';
/**
* Exported module - returns a
* function that resolves to true.
* @type {Function}
*/
function module () {
return function () { return true; }
}
return module;
}));