Skip to content
c3r38r170 edited this page Jan 8, 2023 · 2 revisions

You have available every function and variable, plus the logical modules as objects, plus a wrapper called c3tools that's an object that includes all modules.

If you use the library as a module, you can import whatever you want.

import { c3tools, DOMQuerying, SqS } from 'https://unpkg.com/@c3r38r170/[email protected]/c3tools-min.m.js';

console.log( c3tools.DOMQuerying == DOMQuerying ); // true

console.log( DOMQuerying.SqS == SqS ); // true

If you use the library as an inline script, you'll have every variable, function, logical module and c3tools right in your window.

Clone this wiki locally