refactor(scanner): more basic work to get the scanner just running
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m33s
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m33s
This commit is contained in:
7
lstMobile/src/lib/devMode.ts
Normal file
7
lstMobile/src/lib/devMode.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { delay } from "./delay";
|
||||
|
||||
export const devDelay = async (ms: number) => {
|
||||
if (__DEV__) {
|
||||
await delay(ms);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user