@expo/metro-config
Version:
A Metro config for running React Native projects with the Metro bundler
12 lines • 465 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.hashString = void 0;
const crypto_1 = __importDefault(require("crypto"));
function hashString(str) {
return crypto_1.default.createHash('md5').update(str).digest('hex');
}
exports.hashString = hashString;
//# sourceMappingURL=hash.js.map
;