From a399978f6a8962fa24f2a3fa2cfebdb084d16956 Mon Sep 17 00:00:00 2001 From: vitaliytv Date: Fri, 29 Sep 2023 09:27:54 +0300 Subject: [PATCH] abinbevefes/smart#1824 --- npm/package.json | 7 ++----- npm/src/index.mjs | 6 +++--- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/npm/package.json b/npm/package.json index f7509d9..e316ea8 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,20 +1,17 @@ { "name": "@nitra/parse-phone", - "version": "1.1.0", + "version": "1.1.1", "description": "make world phone number (Ru, Ukr)", "type": "module", "exports": { "import": "./src/index.mjs" }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, "repository": { "type": "git", "url": "git+https://github.com/nitra/parse-phone.git" }, "engines": { - "node": ">=10.0.0" + "node": ">=18.0.0" }, "files": [ "src" diff --git a/npm/src/index.mjs b/npm/src/index.mjs index 44b2d66..77c2992 100644 --- a/npm/src/index.mjs +++ b/npm/src/index.mjs @@ -2,11 +2,11 @@ * Перетворення номера на міжнародний формат * * @param {String} phone - * @return {String} Телефон у міжнародному форматі або null якщо не розпізнано + * @return {String|null} Телефон у міжнародному форматі або null якщо не розпізнано */ export const parsePhone = phone => { if (!phone) { - return '' + return null } /** @type {String} */ @@ -49,5 +49,5 @@ export const parsePhone = phone => { } // Не вдалось розпізнати номер - return '' + return null }