I'm looking at the source code of a Ruby on Rails app. Several of the JavaScript (*.js and *.es6) files in the source have one or more lines at the top of the file like:
//= require path/to/some_other_js_file
What are these lines called, and what are they doing?
(Potentially helpful SEO for folks who may be searching for a question like this, as I myself did prior to asking: slash slash equals require
; double slash equals require
)