Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HarshvardhanCn01
/
Voice-Assistant
like
0
Running
App
Files
Files
Community
main
Voice-Assistant
/
node_modules
/
axios
/
lib
/
helpers
/
bind.js
HarshvardhanCn01
Upload 1878 files
295e44e
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
134 Bytes
'use strict'
;
export
default
function
bind
(
fn, thisArg
) {
return
function
wrap
(
) {
return
fn.
apply
(thisArg,
arguments
);
};
}