You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Script to determine a compatible npm version range based on the current Node.js runtime.
*
* Older versions of Node (>=0.10.0 <= 0.12.x) require an updated npm client to handle scoped packages, but should not use npm versions `>=4.0.0`, as more recent npm versions drop explicit backward compatibility support.
*/
'use strict';
// VARIABLES //
varNODE_VERSION=process.versions.node;
// FUNCTIONS //
/**
* Returns a compatible npm version range based on the current Node.js runtime.