Function: js--make-nsilocalfile
js--make-nsilocalfile is a byte-compiled function defined in js.el.gz.
Signature
(js--make-nsilocalfile PATH)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js--make-nsilocalfile (path)
(with-js
(let ((file (js-create-instance "@mozilla.org/file/local;1"
"nsILocalFile")))
(js! (file "initWithPath") path)
file)))