add v3.4.0 to docs

This commit is contained in:
Thomas Park
2018-12-18 16:20:01 -05:00
parent 3033c55b73
commit c08e8188af
527 changed files with 54458 additions and 20948 deletions

View File

@@ -1,10 +1,14 @@
define(function() {
define( function() {
"use strict";
function addGetHookIf( conditionFn, hookFn ) {
// Define the hook, we'll check on the first run if it's really needed.
return {
get: function() {
if ( conditionFn() ) {
// Hook not needed (or it's not possible to use it due
// to missing dependency), remove it.
delete this.get;
@@ -12,11 +16,11 @@ function addGetHookIf( conditionFn, hookFn ) {
}
// Hook needed; redefine it so that the support test is not executed again.
return (this.get = hookFn).apply( this, arguments );
return ( this.get = hookFn ).apply( this, arguments );
}
};
}
return addGetHookIf;
});
} );