12345678910111213141516171819202122232425262728293031323334353637 |
- function getOption(name) {
- let configData = Object.create(null);
-
- if (typeof document !== 'undefined' && document) {
- const el = document.getElementById('jupyter-config-data');
- if (el) {
- configData = JSON.parse(el.textContent || '{}');
- }
- }
- return configData[name] || '';
- }
- __webpack_public_path__ = getOption('fullStaticUrl') + '/';
|