Is it possible to load a model from text

My server is saving STL files as plain text, and I need to load that data as a model, we’re using ascii files, but instead of saying

    loader.load('someWebsite', function (geometry) {

it should be along the lines of

    loader.load('solid exported
facet normal 1 0 0
	outer loop
		vertex 1.5333333760499954 0.024124900368848512 0.020642012175605517
		vertex 1.5333333760499954 -0.28181197910376155 -0.23704506655930752
		vertex 1.5333333760499954 0.28181197910376155 -0.28529486729700454
	endloop
endfacet
 endsolid exported
 ', function (geometry) {

but of couse a lot longer

Try result = loader.parse( '...' )