• File: index.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/latest-version/index.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 334 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';
const packageJson = require('package-json');

const lastestVersion = async (packageName, options) => {
	const {version} = await packageJson(packageName.toLowerCase(), options);
	return version;
};

module.exports = lastestVersion;
// TODO: Remove this for the next major release
module.exports.default = lastestVersion;