Move src/lib/utils.ts to src/lib/utils/functions.ts

We probably don't want a utils directory and a utils file.

Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
David Mehren 2020-06-12 22:15:04 +02:00
parent 20fbb39b3e
commit e05191eeed
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB
6 changed files with 9 additions and 9 deletions

View file

@ -4,7 +4,7 @@ import Sequelize from 'sequelize'
import { BelongsTo, Column, DataType, Default, ForeignKey, Model, PrimaryKey, Table } from 'sequelize-typescript'
// core
import { logger } from '../logger'
import { processData, stripNullByte } from '../utils'
import { processData, stripNullByte } from '../utils/functions'
import { Note } from './note'
import async = require('async')
import childProcess = require('child_process')