isTransparent.js 112 Bytes
'use strict';

function isTransparent(str) {
  return str === 'transparent';
}

module.exports = isTransparent;