build: bump new versions
Publish to NPM / Check version changes and publish (push) Failing after 10m34s

This commit is contained in:
2026-06-18 02:57:03 +07:00
parent e73e8d2cdd
commit ab6d8f6ce0
198 changed files with 226 additions and 223 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@robonen/platform",
"version": "0.0.4",
"version": "0.0.5",
"license": "Apache-2.0",
"description": "Platform dependent utilities for javascript development",
"keywords": [
+2 -2
View File
@@ -5,7 +5,7 @@
* @category Multi
* @description Global object that works in any environment
*
* @since 0.0.1
* @since 0.0.2
*/
export const _global
= typeof globalThis !== 'undefined'
@@ -23,6 +23,6 @@ export const _global
* @category Multi
* @description Check if the current environment is the client
*
* @since 0.0.1
* @since 0.0.2
*/
export const isClient = typeof window !== 'undefined' && typeof document !== 'undefined';