mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
'use strict';
|
|
|
|
const configUtils = require('@serverless/utils/config');
|
|
|
|
module.exports = Boolean(
|
|
process.env.SLS_TELEMETRY_DISABLED ||
|
|
process.env.SLS_TRACKING_DISABLED ||
|
|
configUtils.get('trackingDisabled')
|
|
);
|