mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 19:43:10 +02:00
12 lines
334 B
JavaScript
12 lines
334 B
JavaScript
|
|
'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;
|