UNPKG

@tamara-solution/checkout

Version:

Script will be embedded in merchant's site to checkout. The merchant's don't need to redirect to tamara's site.

15 lines (11 loc) 300 B
import isBrowser from '@/helpers/is-browser' import { FrameError } from '@/helpers/frame-error' function isValidPlatform() { if (!isBrowser()) { throw new FrameError( 'Do not support none browser yet!!! Please contact tamara team.' ) } return true } export { isValidPlatform }