# drop-babel-typeof **Repository Path**: mirrors_WebReflection/drop-babel-typeof ## Basic Information - **Project Name**: drop-babel-typeof - **Description**: Remove the annoying _typeof(...) pollution when no symbol is used. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # drop-babel-typeof If included as dev dependency, it can replace in place the annoying `_typeof(...)` indirection babel places to allow the usage of `Symbol` in the wild, even if symbols are not used. `drop-babel-typeof /some/file/path.js` Alternatively, if you are using `@babel/preset-env`, you can configure it like this so that it doesn't transform `typeof`: ```js ["@babel/preset-env", { "exclude": "transform-typeof-symbol" }] ```