Files
game-server-watcher/node_modules/compressjs/lib/freeze.js
Smith a5f3794527 include prod deps in vcs with some exceptions
* cloudno.de has problems installing new dependencies lately..
2022-06-30 22:59:51 +02:00

15 lines
327 B
JavaScript

if (typeof define !== 'function') { var define = require('amdefine')(module); }
define([],function(){
'use strict';
// Object.freeze(), or a thunk if that method is not present in this
// JavaScript environment.
if (Object.freeze) {
return Object.freeze;
} else {
return function(o) { return o; };
}
});