Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
merve
/
git-101
like
0
No application file
App
Files
Files
Community
main
git-101
/
src
/
js
/
util
/
mock.js
mervenoyan
initial commit
45a32e2
over 3 years ago
raw
Copy download link
history
blame
contribute
delete
176 Bytes
exports
.
mock
=
function
(
Constructor
) {
var
dummy = {};
var
stub =
function
(
) {};
for
(
var
key
in
Constructor
.
prototype
) {
dummy[key] = stub;
}
return
dummy;
};