Files
lodash/internal/baseLodash.js
John-David Dalton f8e4370129 Bump to v3.3.0.
2015-12-16 17:46:57 -08:00

14 lines
213 B
JavaScript

define([], function() {
/**
* The function whose prototype all chaining wrappers inherit from.
*
* @private
*/
function baseLodash() {
// No operation performed.
}
return baseLodash;
});