qsu 1.13.2 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/array/arrMove.js +1 -1
- package/dist/array/arrRepeat.js +1 -1
- package/dist/array/arrShuffle.js +1 -1
- package/dist/array/arrTo1dArray.js +1 -1
- package/dist/array/arrUnique.js +1 -1
- package/dist/array/sortByObjectKey.js +1 -1
- package/dist/array/sortNumeric.js +1 -1
- package/dist/format/numberFormat.js +1 -1
- package/dist/format/safeParseInt.js +1 -1
- package/dist/math/numUnique.js +1 -1
- package/dist/misc/debounce.js +1 -1
- package/dist/misc/index.d.ts +0 -1
- package/dist/misc/index.js +1 -1
- package/dist/node/crypto/decrypt.js +1 -1
- package/dist/node/crypto/encrypt.d.ts +1 -0
- package/dist/node/crypto/encrypt.js +1 -1
- package/dist/node/index.d.ts +1 -0
- package/dist/node/index.js +1 -1
- package/dist/node/misc/index.d.ts +1 -0
- package/dist/node/misc/index.js +1 -0
- package/dist/node/net/fetchData.js +1 -1
- package/dist/object/objDeleteKeyByValue.js +1 -1
- package/dist/object/objMergeNewKey.js +1 -1
- package/dist/object/objTo1d.js +1 -1
- package/dist/object/objToArray.js +1 -1
- package/dist/object/objUpdate.js +1 -1
- package/dist/string/capitalizeEverySentence.js +1 -1
- package/dist/string/replaceBetween.js +1 -1
- package/dist/string/strBlindRandom.js +1 -1
- package/dist/string/strRandom.js +1 -1
- package/dist/string/trim.js +1 -1
- package/dist/verify/is2dArray.js +1 -1
- package/dist/verify/isEqual.js +1 -1
- package/dist/verify/isEqualStrict.js +1 -1
- package/dist/web/generateLicense.js +1 -1
- package/package.json +3 -3
- package/dist/verify/isUnique.d.ts +0 -1
- package/dist/verify/isUnique.js +0 -0
- /package/dist/{misc → node/misc}/logBox.d.ts +0 -0
- /package/dist/{misc → node/misc}/logBox.js +0 -0
package/dist/array/arrMove.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function arrMove(r,e,n){const o=r.length;if(o<=e||o<=n)throw new Error("Invalid move params");return
|
|
1
|
+
export function arrMove(r,e,n){const o=r.length;if(o<=e||o<=n)throw new Error("Invalid move params");const t=[...r];return t.splice(n,0,t.splice(e,1)[0]),t}
|
package/dist/array/arrRepeat.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isObject as
|
|
1
|
+
import{isObject as e}from"../verify/isObject.js";export function arrRepeat(t,r){if(!t||r<1||"object"!=typeof t)return[];const o=e(t),f=[];for(let e=0,i=r;e<i;e+=1)if(o)f.push(t);else for(let e=0;e<t.length;e+=1)f.push(t[e]);return f}
|
package/dist/array/arrShuffle.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function arrShuffle(t){
|
|
1
|
+
export function arrShuffle(t){const o=[...t];for(let t=o.length-1;t>0;t-=1){const r=Math.floor(Math.random()*(t+1));[o[t],o[r]]=[o[r],o[t]]}return o}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{is2dArray as r}from"../verify/is2dArray.js";export function arrTo1dArray(t){const
|
|
1
|
+
import{is2dArray as r}from"../verify/is2dArray.js";export function arrTo1dArray(t){const e=t=>{const o=[],n=t.length;for(let s=0;s<n;s+=1)if(Array.isArray(t[s])){const n=r(t[s])?e(t[s]):t[s];for(let r=0;r<n.length;r+=1)o.push(n[r])}else o.push(t[s]);return o};return e(t)}
|
package/dist/array/arrUnique.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{is2dArray as r}from"../verify/is2dArray.js";export function arrUnique(
|
|
1
|
+
import{is2dArray as r}from"../verify/is2dArray.js";export function arrUnique(t){if(r(t)){const r=new Set,e=[];for(let n=0;n<t.length;n+=1){const i=JSON.stringify(t[n]);void 0===i?e.push(t[n]):r.has(i)||(r.add(i),e.push(t[n]))}return e}return[...new Set(t)]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
const o=new Intl.Collator([],{numeric:!0});export function sortByObjectKey(r,t,e=!1,n=!1){return n?[...r].sort((r,n)=>e?o.compare(n[t],r[t]):o.compare(r[t],n[t])):[...r].sort((o,r)=>e?o[t]>r[t]?-1:o[t]<r[t]?1:0:o[t]<r[t]?-1:o[t]>r[t]?1:0)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
const r=new Intl.Collator([],{numeric:!0});export function sortNumeric(o,t=!1){return[...o].sort((o,e)=>t?r.compare(e,o):r.compare(o,e))}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function numberFormat(
|
|
1
|
+
const t=/^\d+$/,n=new Intl.NumberFormat("en-US",{roundingPriority:"morePrecision"});export function numberFormat(r){if(null==r)return"";const e="string"==typeof r?r:r.toString(),o=e.startsWith("-"),i=(o?e.slice(1):e).split("."),s=t.test(i[0])?function(t){let n="";for(let r=t.length;r>0;r-=3){const e=t.slice(Math.max(0,r-3),r);n=""===n?e:`${e},${n}`}return n}(i[0]):n.format(parseInt(i[0],10)),l=`${s}${i.length>1?`.${i[1]}`:""}`;return o?`-${l}`:l}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function safeParseInt(t,r=0,n=10){if(
|
|
1
|
+
export function safeParseInt(t,r=0,n=10){if(null==t)return r;try{const e=t.toString();if(e.length<1)return r;const s=parseInt(e.split(".")[0],n);return Number.isNaN(s)?r:s}catch{return r}}
|
package/dist/math/numUnique.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function numUnique(){const
|
|
1
|
+
let e=0;export function numUnique(){const n=1e3*(new Date).valueOf();return e=n>e?n:e+1,e}
|
package/dist/misc/debounce.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function debounce(e,t){let
|
|
1
|
+
export function debounce(e,t){let u;return(...n)=>{u&&clearTimeout(u),u=setTimeout(()=>{e(...n)},t),u?.unref?.()}}
|
package/dist/misc/index.d.ts
CHANGED
package/dist/misc/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{debounce}from"./debounce.js";export{funcTimes}from"./funcTimes.js";export{
|
|
1
|
+
export{debounce}from"./debounce.js";export{funcTimes}from"./funcTimes.js";export{sleep}from"./sleep.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{createDecipheriv as t}from"crypto";export function decrypt(
|
|
1
|
+
import{createDecipheriv as t}from"crypto";import{AEAD_ALGORITHM as r}from"./encrypt.js";export function decrypt(e,n,f="aes-256-cbc",o=!1){if(!e||e.length<1)return"";const i=o?"base64":"hex",u=e.split(":"),c=r.test(f);if(u.length<(c?3:2))throw new Error(c?"`str` must be in the `iv:authTag:encrypted` format returned by `encrypt`.":"`str` must be in the `iv:encrypted` format returned by `encrypt`.");const s=Buffer.from(u.shift(),i),p=c?Buffer.from(u.shift(),i):null,m=t(f,n,s);p&&m.setAuthTag(p);let a=m.update(Buffer.from(u.join(":"),i));return a=Buffer.concat([a,m.final()]),a.toString()}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{createCipheriv as t,randomBytes as n}from"crypto";export function encrypt(r,
|
|
1
|
+
import{createCipheriv as t,randomBytes as n}from"crypto";export const AEAD_ALGORITHM=/gcm|ccm|ocb|poly1305/i;export function encrypt(o,r,c="aes-256-cbc",e=16,i=!1){if(!o||o.length<1)return"";const g=n(e),f=t(c,r,g);let p=f.update(o);p=Buffer.concat([p,f.final()]);const s=i?"base64":"hex";if(AEAD_ALGORITHM.test(c)){const t=f.getAuthTag();return`${g.toString(s)}:${t.toString(s)}:${p.toString(s)}`}return`${g.toString(s)}:${p.toString(s)}`}
|
package/dist/node/index.d.ts
CHANGED
package/dist/node/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export*from"./crypto/index.js";export*from"./file/index.js";export*from"./net/index.js";export*from"./os/index.js";
|
|
1
|
+
export*from"./crypto/index.js";export*from"./file/index.js";export*from"./misc/index.js";export*from"./net/index.js";export*from"./os/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { logBox } from './logBox.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{logBox}from"./logBox.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{objToQueryString as t}from"../../object/objToQueryString.js";import{urlJoin as e}from"../../string/urlJoin.js";import{Readable as r}from"node:stream";function a(t){let e;if(t?.headers?.["Content-Type"])e=t?.headers?.["Content-Type"];else switch(t?.bodyType){case"form-data":e=
|
|
1
|
+
import{objToQueryString as t}from"../../object/objToQueryString.js";import{urlJoin as e}from"../../string/urlJoin.js";import{Readable as r}from"node:stream";function a(t){let e;if(t?.headers?.["Content-Type"])e=t?.headers?.["Content-Type"];else switch(t?.bodyType){case"form-data":default:e=null;break;case"x-www-form-urlencoded":e="application/x-www-form-urlencoded";break;case"json":e="application/json;charset=UTF-8";break;case"text":e="plain/text;charset=UTF-8"}const r={};return t?.auth?.bearer&&t?.auth?.bearer.length>0&&(r.Authorization=`Bearer ${t?.auth?.bearer}`),t?.auth?.apiKey&&t?.auth?.apiKey.length>0&&(r["x-API-key"]=t?.auth?.apiKey),{...r,...e?{"Content-Type":e}:{},"Accept-Encoding":"gzip, deflate, br",Charset:"utf-8",...t?.headers}}export async function fetchData(o,i){const n=i||{},s=n.queryParameters?`?${t(n.queryParameters)}`:null;let h,l,c=null;if(o.length<1)throw new Error("`url` is required");if(n.body)switch(n.bodyType){case"x-www-form-urlencoded":c=t(n.body);break;case"form-data":c=n.body;break;default:c=JSON.stringify(n.body)}if(n.method&&(n.get||n.post||n.put||n.delete||n.patch))throw new Error("`method` and `get|post|put|delete|patch` cannot be used together");if(h=n.get?"GET":n.post?"POST":n.put?"PUT":n.delete?"DELETE":n.patch?"PATCH":n.method||"GET",!n.host&&!o.startsWith("/"))throw new Error("`url` must begin with `/`.");if(n.host&&n.host.length>0){if(o.startsWith("http")||o.includes("://"))throw new Error("If `host` is specified, `url` must begin with `/`.");l=e(n.host,o)}else l=o;try{const t=await fetch(e(l,s),{...n.auth?{credentials:"include"}:{},...n.timeout?{signal:AbortSignal.timeout(n.timeout)}:{},method:h,body:c,headers:a(n)});if(!t.ok||!t.body)return null;const o=t.headers.get("content-type")||"",i=function(t,e){if(/attachment|filename=/i.test(e))return!0;const r=t.split(";")?.[0]?.trim()?.toLowerCase()||"";return!["text/html","text/css","text/javascript","application/json","application/ld+json","application/xml","text/xml","text/plain"].some(t=>r===t)&&!r.startsWith("text/")&&(r.startsWith("application/")||r.startsWith("image/")||r.startsWith("video/")||r.startsWith("audio/")||r.startsWith("font/"))}(o,t.headers.get("content-disposition")||"");return n.toStream?r.fromWeb(t.body):i?Buffer.from(await t.arrayBuffer()):o.length<1?await t.text():o.includes("application/json")?await t.json():await t.text()}catch(t){return n.onError&&n.onError(t),null}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isObject as e}from"../verify/isObject.js";export function objDeleteKeyByValue(t,o,l=!1){if(!t||"object"!=typeof t)return null;const n=Object.
|
|
1
|
+
import{isObject as e}from"../verify/isObject.js";export function objDeleteKeyByValue(t,o,l=!1){if(!t||"object"!=typeof t)return null;const r={...t},n=Object.keys(r);for(let t=n.length-1;t>=0;t-=1){const y=n[t];l&&r[y]&&e(r[y])?r[y]=objDeleteKeyByValue(r[y],o,l):r[y]===o&&delete r[y]}return r}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isObject as e}from"../verify/isObject.js";export function objMergeNewKey(r,t,o){if(!r||"object"!=typeof r||!t||"object"!=typeof t)return null;const n={...r};return Object.keys(t).forEach(r=>{const
|
|
1
|
+
import{isObject as e}from"../verify/isObject.js";export function objMergeNewKey(r,t,o){if(!r||"object"!=typeof r||!t||"object"!=typeof t)return null;const n={...r};return Object.keys(t).forEach(r=>{const c=t[r];if(Object.hasOwn(n,r))if(Array.isArray(n[r])&&Array.isArray(c)){if("append"===o?.arrayAction)n[r]=n[r].concat(c);else if("replace"===o?.arrayAction)n[r]=c;else if(n[r].length===c.length){const t=[...n[r]];for(let r=0;r<t.length;r+=1){const n=c[r];e(n)&&(t[r]=objMergeNewKey(t[r],n,o))}n[r]=t}}else e(n[r])&&e(c)?n[r]=objMergeNewKey(n[r],c,o):n[r]=c;else n[r]=c}),n}
|
package/dist/object/objTo1d.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isObject as
|
|
1
|
+
import{isObject as t}from"../verify/isObject.js";export function objTo1d(e,r="."){if(!r||r.length<1)throw new Error("`separator` must have value at least 1 character.");const o=(e,n="")=>{let s={};const a=Object.keys(e),c=n.length<1;for(let l=0,h=a.length;l<h;l+=1){const h=a[l],i=e[h],f=`${n}${c?"":r}${h}`;t(i)?(s=Object.assign(s,o(i,f)),delete s[h]):s[f]=i}return s};return o(e)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isObject as t}from"../verify/isObject.js";export function objToArray(
|
|
1
|
+
import{isObject as t}from"../verify/isObject.js";export function objToArray(r,o=!1){const e=r=>{const n=[],s=Object.keys(r);for(let c=0,u=s.length;c<u;c+=1){const u=s[c];o&&t(r[u])?n.push([u,e(r[u])]):n.push([u,r[u]])}return n};return e(r)}
|
package/dist/object/objUpdate.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isObject as t}from"../verify/isObject.js";export function objUpdate(e,n,o,
|
|
1
|
+
import{isObject as t}from"../verify/isObject.js";export function objUpdate(e,n,o,r=!1,c=!1){if(!e||"object"!=typeof e)return null;let s=!1;const f=e=>{const c={...e},j=Object.keys(c);for(let e=0,n=j.length;e<n;e+=1){const n=j[e];r&&c[n]&&t(c[n])&&(c[n]=f(c[n]))}return Object.hasOwn(c,n)&&(c[n]=o,s=!0),c},j=f(e);return!s&&c&&(j[n]=o),j}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function capitalizeEverySentence(
|
|
1
|
+
const e=/[a-zA-Z]/;export function capitalizeEverySentence(t,n){if(!t)return"";const r=n||".",o=t.split(r);let i,l="";for(let t=0,n=o.length;t<n;t+=1){i=[...o[t]];for(let t=0,n=i.length;t<n;t+=1)if(e.test(i[t])){i[t]=i[t].toUpperCase();break}l+=`${i.join("")}${t<n-1?r:""}`}return l}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function replaceBetween(e,t,
|
|
1
|
+
const e=/[.*+?^${}()|[\]\\]/g,n=n=>n.replace(e,"\\$&");export function replaceBetween(e,r,t,c=""){if(!e)return"";const p=n(r),o=n(t);return e.replace(new RegExp(`${p}.*?${o}`,"g"),c)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{numPick as t}from"../math/numPick.js";export function strBlindRandom(
|
|
1
|
+
import{numPick as t}from"../math/numPick.js";const n=/[a-zA-Z가-힣]/;export function strBlindRandom(r,s,i="*"){if(!r)return"";let o=r,u=0,e=0,m=0;const c=o.length;for(;u<s&&m<c;)e=t(0,c-1),n.test(o.substring(e,e+1))&&(o=`${o.substring(0,e)}${i}${o.substring(e+1)}`,u+=1),m+=1;return o}
|
package/dist/string/strRandom.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function strRandom(t,o){const r=`abcdefghijklmnopqrstuvwxyz0123456789${o}`,a=r.length;let n,e="";for(let o=0;o<t;o+=1)n=r.charAt(Math.floor(Math.random()*a)),n=Math.random()<.5?n.toUpperCase():n,e+=n;return e}
|
|
1
|
+
export function strRandom(t,o){const r=`abcdefghijklmnopqrstuvwxyz0123456789${o??""}`,a=r.length;let n,e="";for(let o=0;o<t;o+=1)n=r.charAt(Math.floor(Math.random()*a)),n=Math.random()<.5?n.toUpperCase():n,e+=n;return e}
|
package/dist/string/trim.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function trim(r){return"string"
|
|
1
|
+
export function trim(r){return"string"!=typeof r?null:r.trim().replace(/\s{2,}/g," ")}
|
package/dist/verify/is2dArray.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function is2dArray(r){return r.
|
|
1
|
+
export function is2dArray(r){return r.some(Array.isArray)}
|
package/dist/verify/isEqual.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function isEqual(t
|
|
1
|
+
export function isEqual(r,...t){const n=t.length>0&&Array.isArray(t[0])?t[0]:t,e=n.length;for(let t=0;t<e;t+=1)if(n[t]!=r)return!1;return!0}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function isEqualStrict(t
|
|
1
|
+
export function isEqualStrict(r,...t){const n=t.length>0&&Array.isArray(t[0])?t[0]:t,e=n.length;for(let t=0;t<e;t+=1)if(n[t]!==r)return!1;return!0}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function generateLicense(e){const i=e.htmlBr?"<br/>":"\n",t=`${e.yearStart}${e.yearEnd?`-${e.yearEnd}`:""}`,o=`${e.author}${e.email?` <${e.email}>`:""}`;switch(e.type.replace(
|
|
1
|
+
export function generateLicense(e){const i=e.htmlBr?"<br/>":"\n",t=`${e.yearStart}${e.yearEnd?`-${e.yearEnd}`:""}`,o=`${e.author}${e.email?` <${e.email}>`:""}`;switch(e.type.replace(/[.\-_,\s]/g,"").toLowerCase()){case"apache20":return`Copyright ${t} ${o}${i}${i}Licensed under the Apache License, Version 2.0 (the "License");${i}you may not use this file except in compliance with the License.${i}You may obtain a copy of the License at${i}${i} http://www.apache.org/licenses/LICENSE-2.0${i}${i}Unless required by applicable law or agreed to in writing, software${i}distributed under the License is distributed on an "AS IS" BASIS,${i}WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.${i}See the License for the specific language governing permissions and${i}limitations under the License.`;case"bsd3":return`Copyright ${t} ${o}${i}${i}Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:${i}${i}1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.${i}${i}2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.${i}${i}3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.${i}${i}THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.`;default:return`Copyright (c) ${t} ${o}${i}${i}Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:${i}${i}The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.${i}${i}THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qsu",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "qsu is a utility library that contains useful and frequently used functions. Start with your preferred language and the modern development environment.",
|
|
5
5
|
"author": "CDGet <jooy2.contact@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
],
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@eslint/js": "^9.39.2",
|
|
76
|
-
"@types/node": "^26.1.
|
|
76
|
+
"@types/node": "^26.1.2",
|
|
77
77
|
"@typescript-eslint/parser": "^8.65.0",
|
|
78
78
|
"dayjs": "^1.11.21",
|
|
79
79
|
"eslint": "^9.39.2",
|
|
80
80
|
"eslint-config-prettier": "^10.1.8",
|
|
81
81
|
"eslint-plugin-n": "^18.2.2",
|
|
82
|
-
"globals": "^17.
|
|
82
|
+
"globals": "^17.8.0",
|
|
83
83
|
"jiti": "^2.7.0",
|
|
84
84
|
"prettier": "^3.9.6",
|
|
85
85
|
"terser-glob": "^1.2.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/verify/isUnique.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|