implement eventTrack

This commit is contained in:
Kyle Spearrin 2018-10-03 10:48:28 -04:00
parent fed24f3d28
commit dbca2a64e0
1 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,10 @@ export class NodePlatformUtilsService implements PlatformUtilsService {
throw new Error('Not implemented.');
}
eventTrack(action: string, label?: string, options?: any) {
throw new Error('Not implemented.');
}
isDev(): boolean {
return process.env.BWCLI_ENV === 'development';
}