mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
a3894ac9b4
Upgrade Ace to v1.4.4 GitOrigin-RevId: 26681bcf255537f8eb09fa0ac1c98009cf964496
15 lines
No EOL
479 B
JavaScript
15 lines
No EOL
479 B
JavaScript
ace.define("ace/snippets/ocaml",[], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
exports.snippetText =undefined;
|
|
exports.scope = "ocaml";
|
|
|
|
});
|
|
(function() {
|
|
ace.require(["ace/snippets/ocaml"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|