mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 15:12:51 +08:00
11 lines
176 B
JavaScript
11 lines
176 B
JavaScript
|
/**
|
||
|
* The function whose prototype all chaining wrappers inherit from.
|
||
|
*
|
||
|
* @private
|
||
|
*/
|
||
|
function baseLodash() {
|
||
|
// No operation performed.
|
||
|
}
|
||
|
|
||
|
module.exports = baseLodash;
|