mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
13 lines
220 B
JavaScript
Vendored
13 lines
220 B
JavaScript
Vendored
'use strict';
|
|
|
|
/* globals lockdown */
|
|
|
|
// requiring ses exposes "lockdown" on the global
|
|
require('ses');
|
|
|
|
// lockdown freezes the primordials
|
|
lockdown({ errorTaming: 'unsafe' });
|
|
|
|
// initialize the module
|
|
require('./');
|