Allows for transforming file contents pre-compilation in the Node API by means of passing an interator that gets called on the content (string) of every source file.
import sass from 'node-sass-extra';
...
sass('src/**/*.scss', {
data: contents => contents.replace(/^/, '/* added to file */\n\n')
});