Icard/angular-clarity-master(work.../node_modules/highcharts/indicators/ema.src.js

41 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2024-07-16 14:55:36 +00:00
(function (factory) {
if (typeof module === 'object' && module.exports) {
factory['default'] = factory;
module.exports = factory;
} else if (typeof define === 'function' && define.amd) {
define(['highcharts'], function (Highcharts) {
factory(Highcharts);
factory.Highcharts = Highcharts;
return factory;
});
} else {
factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
}
}(function (Highcharts) {
'use strict';
var _modules = Highcharts ? Highcharts._modules : {};
function _registerModule(obj, path, args, fn) {
if (!obj.hasOwnProperty(path)) {
obj[path] = fn.apply(null, args);
if (typeof CustomEvent === 'function') {
window.dispatchEvent(new CustomEvent(
'HighchartsModuleLoaded',
{ detail: { path: path, module: obj[path] } }
));
}
}
}
_registerModule(_modules, 'masters/indicators/ema.src.js', [_modules['Core/Globals.js']], function (Highcharts) {
/**
* @requires highcharts
*/
/*
* Since v9.3.0, EMA technical indicator is part of indicators.js.
* It's no longer necessary to load this file.
*/
return Highcharts;
});
}));