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

@ -13,7 +13,7 @@ import { Author, Note, Revision, User } from './models'
import { NoteAuthorship } from './models/note'
import { PhotoProfile } from './utils/PhotoProfile'
import { EditorSocketIOServer } from './ot/editor-socketio-server'
import { mapToObject } from './utils'
import { mapToObject } from './utils/functions'
export type SocketWithNoteId = Socket & { noteId: string }