vote up 0 vote down star

I was looking through Mozilla's JS in JS code and came across the snarf function. It's not defined in the javascript, it seems, just in the C version here. It isn't very well-commented, though. I Google searched this to no avail.

Is this a standard part of JavaScript? (My guess is no.) Is it some kind of extension? What is it supposed to do?

flag

66% accept rate

4 Answers

vote up 3 vote down check

No, it is not standard. It is the part of Mozilla's Narcissus (JS in JS interpreter implemented on top of SpiderMonkey). snarf(filename) grabs the content of the file and returns it as a string for further processing (e.g., evaluation).

link|flag
vote up 1 vote down

It loads a file and returns the contents of the file in a string.

link|flag
vote up -1 vote down

i was just reading the code for narcissus and saw snarf, and googled it, and came here! weird!

link|flag
This is probably more a comment than an answer... – harto Jul 28 at 5:55
vote up 1 vote down

Snarf is defined here:

http://mxr.mozilla.org/mozilla/source/js/src/js.c#3712

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.