wildhart:env-var-set

v0.0.1Published 5 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Adds a set() method to Meteor.environmentVariable();

Example:

1cont myVar = new Meteor.EnvironmentVariable();
2
3console.log(myVar.get()); // undefined
4myVar.set('hello!');
5console.log(myVar.get()); // 'hello!'