mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 13:19:29 +08:00
8 lines
155 B
Text
8 lines
155 B
Text
'use strict';
|
|
/**
|
|
* @param {import('postcss').Declaration} arg
|
|
* @return {string}
|
|
*/
|
|
module.exports = function getValue({ value }) {
|
|
return value;
|
|
};
|