I'm coding a web app and I need to reuse a function which is included as a dependency of one of my dependencies. I know how to import the main dependency:
import {DataTable} from "simple-datatables";
But how can I import one of its dependencies? I already tried this one but didn't work:
import {DataTable} from "simple-datatables/helpers";
Thanks in advance!