@netdata/charts
Version:
Netdata frontend SDK and chart utilities
8 lines • 528 B
JavaScript
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
import linePlotter from "./linePlotter";
describe("linePlotter", function () {
it("returns a function", function () {
var plotter = linePlotter();
expect(_typeof(plotter)).toBe("function");
});
});