mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
fix: atob should throw dom exception (#5730)
This commit is contained in:
parent
526c9196e2
commit
4fa69e890e
1 changed files with 5 additions and 2 deletions
|
@ -23,6 +23,7 @@
|
|||
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
import { DOMExceptionImpl as DOMException } from "./dom_exception.ts";
|
||||
import * as base64 from "./base64.ts";
|
||||
import { decodeUtf8 } from "./decode_utf8.ts";
|
||||
import { core } from "../core.ts";
|
||||
|
@ -101,8 +102,10 @@ export function atob(s: string): string {
|
|||
|
||||
const rem = s.length % 4;
|
||||
if (rem === 1 || /[^+/0-9A-Za-z]/.test(s)) {
|
||||
// TODO: throw `DOMException`
|
||||
throw new TypeError("The string to be decoded is not correctly encoded");
|
||||
throw new DOMException(
|
||||
"The string to be decoded is not correctly encoded",
|
||||
"DataDecodeError"
|
||||
);
|
||||
}
|
||||
|
||||
// base64-js requires length exactly times of 4
|
||||
|
|
Loading…
Add table
Reference in a new issue