minor cleanup
This commit is contained in:
parent
b7a46c2d40
commit
33315c6050
1
index.js
1
index.js
@ -1,4 +1,3 @@
|
||||
|
||||
var textbelt = require('./lib/text');
|
||||
|
||||
module.exports = textbelt;
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
module.exports = {
|
||||
|
||||
us: [
|
||||
|
@ -11,7 +11,7 @@ var debugEnabled = false;
|
||||
value.
|
||||
*/
|
||||
function output() {
|
||||
if (debugEnabled === true) {
|
||||
if (debugEnabled) {
|
||||
return console.log.apply(this, arguments);
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
# Starts development server
|
||||
|
||||
cd `dirname $0`
|
||||
supervisor ../server/app.js
|
||||
|
@ -196,10 +196,9 @@ function dateStr() {
|
||||
}
|
||||
|
||||
function stripPhone(phone) {
|
||||
return (phone+'').replace(/\D/g, '');
|
||||
return (phone + '').replace(/\D/g, '');
|
||||
}
|
||||
|
||||
|
||||
// Start server
|
||||
var port = process.env.PORT || 9090;
|
||||
app.listen(port, function() {
|
||||
|
Loading…
Reference in New Issue
Block a user