I am trying to modify the popular Energy-skate-park simulation so that it launches with the grids visible. While looking at the code I came across declarations like the following:
var energyEnergyString = require( 'string!ENERGY_SKATE_PARK_BASICS/energy.energy' );
var energyKineticString = require(
'string!ENERGY_SKATE_PARK_BASICS/energy.kinetic' );
I have no idea what this "string!" followed by some file path means. Is it angular? Is it vanilla JS feature?
Can anyone please guide me to the right direction/documentation to understand these declarations better?