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