minify
This commit is contained in:
parent
82bcca376f
commit
8a6884abef
494 changed files with 256 additions and 120180 deletions
|
@ -1,20 +1 @@
|
|||
define([], function () {
|
||||
'use strict';
|
||||
|
||||
function ResourceLockInstance() {
|
||||
}
|
||||
|
||||
ResourceLockInstance.prototype.acquire = function () {
|
||||
this._isHeld = true;
|
||||
};
|
||||
|
||||
ResourceLockInstance.prototype.isHeld = function () {
|
||||
return this._isHeld === true;
|
||||
};
|
||||
|
||||
ResourceLockInstance.prototype.release = function () {
|
||||
this._isHeld = false;
|
||||
};
|
||||
|
||||
return ResourceLockInstance;
|
||||
});
|
||||
define([],function(){"use strict";function ResourceLockInstance(){}return ResourceLockInstance.prototype.acquire=function(){this._isHeld=!0},ResourceLockInstance.prototype.isHeld=function(){return this._isHeld===!0},ResourceLockInstance.prototype.release=function(){this._isHeld=!1},ResourceLockInstance});
|
Loading…
Add table
Add a link
Reference in a new issue