This commit is contained in:
Joseph 2018-10-24 18:54:34 +03:00 committed by Ryan Dahl
parent 5fbe6a242c
commit d2df67e822
9 changed files with 13 additions and 13 deletions

View file

@ -20,9 +20,9 @@ export class DenoBlob implements domTypes.Blob {
}
options = options || {};
// Set ending property's default value to "tranparent".
// Set ending property's default value to "transparent".
if (!options.hasOwnProperty("ending")) {
options.ending = "tranparent";
options.ending = "transparent";
}
if (options.type && !containsOnlyASCII(options.type)) {