UNPKG

playwright-performance-reporter

Version:

Measure and publish performance metrics from browser dev-tools when running playwright

10 lines (9 loc) 228 B
/** * Fixes `js/prototype-polluting-assignment` */ export function sanitizeStringInput(input) { if (input === '__proto__' || input === 'constructor' || input === 'prototype') { return ''; } return input; }