Find all require calls within a glslify file
npm install glslify-detective
Find all require calls within a glslify
file – much like detective does for
browserify.

Given a GLSL string source, return an array of the dependencies required
within the file. For example, the following source:
`` glsl`
#pragma glslify: fog = require(glsl-fog/exp2)
#pragma glslify: smin = require(glsl-smooth-min)
Would yield the following array:
` javascript``
['glsl-fog/exp2', 'glsl-smooth-min']
See stackgl/contributing for details.
MIT. See LICENSE.md for details.