3.0 source code
This commit is contained in:
14
OfficeWeb/vendor/requirejs/tests/hasOwnProperty/hasOwnProperty-tests.js
vendored
Normal file
14
OfficeWeb/vendor/requirejs/tests/hasOwnProperty/hasOwnProperty-tests.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
require(["toString", "hasOwnProperty", "prototype"], function(toString, hop, p) {
|
||||
doh.register(
|
||||
"hasOwnPropertyTests",
|
||||
[
|
||||
function hasOwnPropertyTests(t){
|
||||
t.is("toString", toString.name);
|
||||
t.is("hasOwnProperty", hop.name);
|
||||
t.is("prototype", p.name);
|
||||
}
|
||||
]
|
||||
);
|
||||
doh.run();
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user