UNPKG

@strapi/utils

Version:

Shared utilities for the Strapi packages

11 lines (8 loc) 331 B
'use strict'; let cached; /** Loads preferred-pm v5 via dynamic import (CJS-safe) and caches the named export. */ async function getPreferredPM() { cached ?? (cached = import('preferred-pm').then((m)=>m.preferredPM)); return cached; } exports.getPreferredPM = getPreferredPM; //# sourceMappingURL=get-preferred-pm.js.map