UNPKG

377 BJavaScriptView Raw
1if (Number(process.versions.node.split('.')[0]) < 8) {
2 console.warn('DEPRECATION NOTICE - Node 6 has been scheduled for removal from the Cloudinary SDK');
3 // required polyfills for native ES6/7 functions (such as String.prototype.padStart)
4 require('core-js');
5 module.exports = require('./lib-es5/cloudinary');
6} else {
7 module.exports = require('./lib/cloudinary');
8}