mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:09:29 +08:00
9 lines
340 B
Text
9 lines
340 B
Text
'use strict';
|
|
module.exports = new Map([
|
|
[['repeat', 'no-repeat'].toString(), 'repeat-x'],
|
|
[['no-repeat', 'repeat'].toString(), 'repeat-y'],
|
|
[['repeat', 'repeat'].toString(), 'repeat'],
|
|
[['space', 'space'].toString(), 'space'],
|
|
[['round', 'round'].toString(), 'round'],
|
|
[['no-repeat', 'no-repeat'].toString(), 'no-repeat'],
|
|
]);
|