Enfore function name capitalisation

This commit is contained in:
Jorik Schellekens 2020-04-28 14:30:56 +01:00
parent 9ca843fdcb
commit fe326b9f08
5 changed files with 6 additions and 6 deletions

View file

@ -15,6 +15,6 @@ limitations under the License.
*/
// converts a pixel value to rem.
export default function(pixelVal) {
export function toRem(pixelVal) {
return pixelVal / 15 + "rem";
}