mirror of
https://github.com/Lissy93/md-cv-maker.git
synced 2021-05-12 19:52:19 +03:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
// Check for jQuery.
|
|
if (typeof(jQuery) === 'undefined') {
|
|
var jQuery;
|
|
// Check if require is a defined function.
|
|
if (typeof(require) === 'function') {
|
|
jQuery = $ = require('jquery');
|
|
// Else use the dollar sign alias.
|
|
} else {
|
|
jQuery = $;
|
|
}
|
|
}
|