mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
16 lines
313 B
JavaScript
16 lines
313 B
JavaScript
'use strict';
|
|
|
|
// requiring ses exposes "lockdown" on the global
|
|
require('ses');
|
|
|
|
/*
|
|
* lockdown freezes the primordials
|
|
* disabling the error taming makes debugging much easier
|
|
* lockdown({ errorTaming: 'unsafe' });
|
|
*/
|
|
// eslint-disable-next-line no-undef
|
|
lockdown();
|
|
|
|
// initialize the module
|
|
require('..');
|