From 77bc5eeec288eb305a08269ef9b0f6a68f42e3b8 Mon Sep 17 00:00:00 2001 From: Mert Can Altin Date: Tue, 8 Oct 2024 15:50:14 +0300 Subject: [PATCH] update text-decoder to use windows-1252 encoding --- benchmark/util/text-decoder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/util/text-decoder.js b/benchmark/util/text-decoder.js index dd4f02016df077..1aa60f2dd0bcd6 100644 --- a/benchmark/util/text-decoder.js +++ b/benchmark/util/text-decoder.js @@ -3,7 +3,7 @@ const common = require('../common.js'); const bench = common.createBenchmark(main, { - encoding: ['utf-8', 'latin1', 'iso-8859-3'], + encoding: ['utf-8', 'windows-1252', 'iso-8859-3'], ignoreBOM: [0, 1], fatal: [0, 1], len: [256, 1024 * 16, 1024 * 128],