mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-16 13:11:50 +08:00
13 lines
281 B
CoffeeScript
13 lines
281 B
CoffeeScript
{Utils} = require 'nylas-exports'
|
|
React = require 'react'
|
|
|
|
module.exports =
|
|
timestamp: (time) ->
|
|
Utils.shortTimeString(time)
|
|
|
|
subject: (subj) ->
|
|
if (subj ? "").trim().length is 0
|
|
return <span className="no-subject">(No Subject)</span>
|
|
else
|
|
return subj
|
|
|