mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-24 21:50:00 +08:00
Add node modules and new code for release (#168)
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ca8d2604ac
commit
a0f00e5017
+16
@@ -0,0 +1,16 @@
|
||||
var _tagTester = require('./_tagTester.js');
|
||||
var isFunction = require('./isFunction.js');
|
||||
var isArrayBuffer = require('./isArrayBuffer.js');
|
||||
var _stringTagBug = require('./_stringTagBug.js');
|
||||
|
||||
var isDataView = _tagTester('DataView');
|
||||
|
||||
// In IE 10 - Edge 13, we need a different heuristic
|
||||
// to determine whether an object is a `DataView`.
|
||||
function ie10IsDataView(obj) {
|
||||
return obj != null && isFunction(obj.getInt8) && isArrayBuffer(obj.buffer);
|
||||
}
|
||||
|
||||
var isDataView$1 = (_stringTagBug.hasStringTagBug ? ie10IsDataView : isDataView);
|
||||
|
||||
module.exports = isDataView$1;
|
||||
Reference in New Issue
Block a user