This commit is contained in:
Sergey Shandar 2018-10-02 13:38:39 -07:00 коммит произвёл GitHub
Родитель 4add21a51a
Коммит b12d59ed52
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 15 добавлений и 3 удалений

Просмотреть файл

@ -1,5 +1,9 @@
# Changelog
### 10/02/2018 0.7.2
- Fix URL encoding test.
### 10/02/2018 0.7.1
- Fix yasway.

Просмотреть файл

@ -638,7 +638,11 @@ export function getJsonContentType(
*/
export function isUrlEncoded(str: string): boolean {
str = str || ""
return str !== decodeURIComponent(str)
try {
return str !== decodeURIComponent(str)
} catch (e) {
return false
}
}
/**

Просмотреть файл

@ -81,6 +81,10 @@ async function validate<T>(
return await func(options)
} catch (err) {
log.error(err)
if (options.pretty) {
// tslint:disable-next-line:no-console
console.error(`internal error: ${err}`)
}
throw err
}
}

2
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "oav",
"version": "0.7.1",
"version": "0.7.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "oav",
"version": "0.7.1",
"version": "0.7.2",
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",