mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-25 00:31:36 +08:00
11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
'use strict';
|
|
// This file is ES6 because it needs to be executed as is.
|
|
|
|
try {
|
|
const analytics = require('../../models/analytics');
|
|
|
|
if (analytics.getGlobalAnalytics() === undefined) {
|
|
analytics.promptGlobalAnalytics(true);
|
|
}
|
|
} catch (_) {}
|