In node-sass, you can create a sass value without the use of new. For example:
let sass = require("node-sass");
let assert = require("assert");
let sassString = sass.types.String("my-string");
assert(sassString instanceof sass.types.String); // passes
This is true for all the Sass types Null, Boolean, Color, String, Number, List, and Map.