@ray-js/env 1.4.3 → 1.4.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/env",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "Ray runtime environment",
5
5
  "keywords": [
6
6
  "ray"
@@ -1,7 +0,0 @@
1
- export declare const isWeb = false;
2
- export declare const isWechat = false;
3
- export declare const isTuya = false;
4
- export declare const isMiniProgram = false;
5
- export declare const isNative = true;
6
- export declare const isIOS: boolean;
7
- export declare const isAndroid: boolean;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- // @ts-nocheck
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.isAndroid = exports.isIOS = exports.isNative = exports.isMiniProgram = exports.isTuya = exports.isWechat = exports.isWeb = void 0;
5
- var react_native_1 = require("react-native");
6
- exports.isWeb = false;
7
- exports.isWechat = false;
8
- exports.isTuya = false;
9
- exports.isMiniProgram = false;
10
- exports.isNative = true;
11
- exports.isIOS = react_native_1.Platform.OS === 'ios';
12
- exports.isAndroid = react_native_1.Platform.OS === 'android';
@@ -1,7 +0,0 @@
1
- export declare const isWeb = false;
2
- export declare const isWechat = false;
3
- export declare const isTuya = false;
4
- export declare const isMiniProgram = false;
5
- export declare const isNative = true;
6
- export declare const isIOS: boolean;
7
- export declare const isAndroid: boolean;
@@ -1,9 +0,0 @@
1
- // @ts-nocheck
2
- import { Platform } from 'react-native';
3
- export const isWeb = false;
4
- export const isWechat = false;
5
- export const isTuya = false;
6
- export const isMiniProgram = false;
7
- export const isNative = true;
8
- export const isIOS = Platform.OS === 'ios';
9
- export const isAndroid = Platform.OS === 'android';