(value)
| 12 | } |
| 13 | |
| 14 | function slugify(value) { |
| 15 | return String(value || 'item') |
| 16 | .toLowerCase() |
| 17 | .replace(/[^a-z0-9]+/g, '-') |
| 18 | .replace(/^-|-$/g, '') |
| 19 | .slice(0, 80) || 'item'; |
| 20 | } |
| 21 | |
| 22 | function nowIso(options = {}) { |
| 23 | return options.now || new Date().toISOString(); |
no outgoing calls
no test coverage detected