Welcome to mirror list, hosted at ThFree Co, Russian Federation.

identity.js « util « lib « remark-stringify « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45a34f7d8894aaefe3a493a7b965da36dc4021b5 (plain)
1
2
3
4
5
6
7
'use strict'

module.exports = identity

function identity(value) {
  return value
}