mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
// amd.js
|
|
//
|
|
// Define Less as an AMD module.
|
|
if (typeof define === "function" && define.amd) {
|
|
define(function () { return less; } );
|
|
}
|