GitHub
github.com › es-shims › String.prototype.replaceAll
GitHub - es-shims/String.prototype.replaceAll: Spec-compliant polyfill for String.prototype.replaceAll ESnext proposal. · GitHub
Spec-compliant polyfill for String.prototype.replaceAll ESnext proposal. - es-shims/String.prototype.replaceAll
Author: es-shims
String.prototype.replaceAll polyfill is not included
We use '@vitejs/plugin-legacy' to create legacy build and also include polyfills for our modern browsers. We use String.prototype.replaceAll method in our application, but we still miss its polyfill for the modern browsers, though our browserlist query includes modern browsers which do not ... More on github.com
String.prototype.replaceAll Polyfill not working
on running the built code, i get items.replaceAll is not a function. Shouldn't this have been properly polyfilled? More on github.com
Missing of `.replaceAll()` polyfill
Link to the code that reproduces this issue https://github.com/An-Cu/replace-all-next-polyfill To Reproduce Use one of browser which is not supporting .replaceAll(), but it's mentioned as suppo... More on github.com
Polyfilling String.prototype.replaceAll
We'd have to ship replaceAll to all browsers instead of just legacy ones given that edge does not support it. Beta Was this translation helpful? Give feedback. ... There was an error while loading. Please reload this page. Something went wrong. There was an error while loading. Please reload this page. ... Thanks for the answers! Where may I find a list of which functionality is polyfilled... More on github.com
GitHub
github.com › vercel › next.js › discussions › 49474
Node.js 14 deprecation, `replaceAll` polyfill and other polyfills · vercel/next.js · Discussion #49474
This weekend I started updating my open source repos to get rid of the Node.js 14 support which one of the new benefits of using Node.js >= 16 was to finally start to use replaceAll. During my naive changes, I thought that this would be no problem for my Next.js app since this would get automatically polyfilled but apparently replaceAll is one of the many polyfills not covered by Next.js.
Author: vercel
Author: swc-project
Author: vercel
Char0n
char0n.github.io › ramda-adjunct › 2.25.0 › replaceAll.js.html
replaceAll.js - Documentation
import { curryN, invoker } from ... = curryN(3, polyfill); export const replaceAllInvoker = invoker(2, 'replaceAll'); /** * Replaces all substring matches in a string with a replacement....
npm
npmjs.com › package › string-replace-all-ponyfill
string-replace-all-ponyfill - npm
December 17, 2020 - polyfill-library · es-shims · core-js · For automated tests, run npm run test:automated (append :watch for watcher support). MIT © Ivan Nikolić · string · replaceall · prototype · string.prototype.replaceall · ponyfill · npm i string-replace-all-ponyfill · github.com/niksy/string-replace-all-ponyfill ·
» npm install string-replace-all-ponyfill
Published: Dec 17, 2020
Version: 1.0.1
GitHub
github.com › zloirock › core-js › issues › 900
String.prototype.replaceAll · Issue #900 · zloirock/core-js
December 27, 2020 - I'm using core-js@3.8.1 and I've noticed that String.prototype.replaceAll polyfill has a bug. It should support an algorithm defined by special replacements patterns. 'foo.bar'.replaceAll('.', '$$$$$'); This call actually returns foo$$$$$bar but it should return foo$$$bar instead.
Author: zloirock
npm
npmjs.com › package › string.prototype.replaceall
string.prototype.replaceall - npm
September 12, 2025 - npm i string.prototype.replaceall · github.com/es-shims/String.prototype.replaceAll · github.com/es-shims/String.prototype.replaceAll#readme · Fund this package · 102,412 · 1.0.11 · MIT · a year ago · ljharb · Analyze security with SocketCheck bundle sizeView package healthExplore dependencies ·
» npm install string.prototype.replaceall
Published: Sep 12, 2025
Version: 1.0.11
Stack Exchange
meta.stackexchange.com › questions › 372933 › script-error-missing-polyfill-for-replaceall
Script error: Missing polyfill for replaceAll - Meta Stack Exchange
December 14, 2021 - [email protected] needs to be updated. See String.prototype.replaceAll not polyfilled #13701: https://github.com/babel/babel/issues/13701#issuecomment-925119447 · bug · status-completed · javascript · Share · Improve this question · Follow · edited Dec 14, 2021 at 22:00 ·
Gitbook
olexsyn.gitbook.io › enote › progr › javascript › string › replaceall-polyfill
replaceAll() polyfill - ENote - GitBook
March 13, 2023 - /** * String.prototype.replaceAll() polyfill * https://gomakethings.com/how-to-replace-a-section-of-a-string-with-another-one-with-vanilla-js/ * @author Chris Ferdinandi * @license MIT */ if (!String.prototype.replaceAll) { String.prototype.replaceAll = function(str, newStr){ // If a regex pattern if (Object.prototype.toString.call(str).toLowerCase() === '[object regexp]') { return this.replace(str, newStr); } // If a string return this.replace(new RegExp(str, 'g'), newStr); }; }