source:
node_modules/property-information/lib/util/case-sensitive-transform.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 183 bytes |
Line | |
---|---|
1 | 'use strict' |
2 | |
3 | module.exports = caseSensitiveTransform |
4 | |
5 | function caseSensitiveTransform(attributes, attribute) { |
6 | return attribute in attributes ? attributes[attribute] : attribute |
7 | } |
Note:
See TracBrowser
for help on using the repository browser.